aboutsummaryrefslogtreecommitdiff
path: root/net/httping/patches/001-fix-musl.patch
diff options
context:
space:
mode:
authorkrant <aleksey.vasilenko@gmail.com>2024-02-25 11:09:05 +0200
committerRosen Penev <rosenp@gmail.com>2024-02-26 14:07:53 -0800
commit06fa612c851abb1e532cca810a51a9a58e7c8eaf (patch)
tree8003c9d3b9616a100da6e3853aef6da923a23cf7 /net/httping/patches/001-fix-musl.patch
parent0a7794c57ecba1632ccbbbca1710774bee69f445 (diff)
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>
Diffstat (limited to 'net/httping/patches/001-fix-musl.patch')
-rw-r--r--net/httping/patches/001-fix-musl.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/net/httping/patches/001-fix-musl.patch b/net/httping/patches/001-fix-musl.patch
new file mode 100644
index 000000000..1f45578bf
--- /dev/null
+++ b/net/httping/patches/001-fix-musl.patch
@@ -0,0 +1,14 @@
+--- 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"