mirror of
https://github.com/openwrt/packages.git
synced 2025-07-15 20:34:47 +00:00
- Update package URLs - Use local tarball for sources - Switch to CMake - Drop obsolete patches including 'minimize' (ipk size +3KB only) - Add 3 new patches to fix musl, openssl and cmake issues Signed-off-by: krant <aleksey.vasilenko@gmail.com>
15 lines
232 B
Diff
15 lines
232 B
Diff
--- a/main.c
|
|
+++ b/main.c
|
|
@@ -33,6 +33,11 @@
|
|
#include <ncurses.h>
|
|
#endif
|
|
|
|
+// musl has no this constant
|
|
+#ifndef TCPI_OPT_SYN_DATA
|
|
+#define TCPI_OPT_SYN_DATA 32
|
|
+#endif
|
|
+
|
|
#include "gen.h"
|
|
#include "help.h"
|
|
#include "colors.h"
|