0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-15 20:34:47 +00:00
Files
packages/net/httping/patches/001-fix-musl.patch
krant 06fa612c85 httping: update to 3.5
- 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>
2024-02-26 14:07:53 -08:00

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"