Update information on building httpd and wget helpers
authorDenys Vlasenko <vda.linux@googlemail.com>
Thu, 22 Dec 2016 14:13:37 +0000 (15:13 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Thu, 22 Dec 2016 14:13:37 +0000 (15:13 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/httpd_helpers.sh [new file with mode: 0755]
networking/ssl_helper-wolfssl/README
networking/ssl_helper-wolfssl/ssl_helper.sh

diff --git a/networking/httpd_helpers.sh b/networking/httpd_helpers.sh
new file mode 100755 (executable)
index 0000000..8eaa2d4
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+PREFIX="i486-linux-uclibc-"
+OPTS="-static -static-libgcc \
+-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \
+-Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Werror \
+-Wold-style-definition -Wdeclaration-after-statement -Wno-pointer-sign \
+-Wmissing-prototypes -Wmissing-declarations \
+-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer \
+-ffunction-sections -fdata-sections -fno-guess-branch-probability \
+-funsigned-char \
+-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 \
+-march=i386 -mpreferred-stack-boundary=2 \
+-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections"
+
+${PREFIX}gcc \
+${OPTS} \
+-Wl,-Map -Wl,index.cgi.map \
+httpd_indexcgi.c -o index.cgi && strip index.cgi
+
+${PREFIX}gcc \
+${OPTS} \
+-Wl,-Map -Wl,httpd_ssi.map \
+httpd_ssi.c -o httpd_ssi && strip httpd_ssi
index ff46f4bdfec940ff90e318a56554fabe6ae90cf1..34d676da0599f90d047576a2a1dd731815ce5898 100644 (file)
@@ -5,18 +5,15 @@ http://busybox.net/downloads/binaries/
 
 Build instructions:
 
-* Unpack wolfssl-3.6.8.zip
-* Build it:
-  ./configure --enable-static --disable-shared && make
-* Drop this directory into wolfssl-3.6.8/ssl_helper
-* Run ssl_helper.sh to compile and link the helper
-
 * Unpack wolfssl-3.9.8.tar.gz from https://github.com/wolfSSL/wolfssl/releases
+  to a wolfssl-3.9.8 subdirectory here.
 * Create configure:
-  ./autogen.sh
-* Build it: see 00cfg-wolfssl-3.9.8 shell script
-* Drop this directory into wolfssl-x.y.z/ssl_helper
-* Run ssl_helper.sh to compile and link the helper
+       (cd wolfssl-* && ./autogen.sh)
+* Build it: see
+       (cd wolfssl-* && ../00cfg-wolfssl-3.9.8)
+* Run
+       ./ssl_helper.sh
+  to compile and link the helper
 
 Usage: "ssl_helper -d FILE_DESCRIPTOR" where FILE_DESCRIPTOR is open to the peer.
 
index c6cbf353f13bcb0727d12286c402bb26ba0ffdb1..8f20963c55a46d2bfaf1a9b10bf1f4adddbdc934 100755 (executable)
@@ -7,6 +7,6 @@ STATIC="-static"
 #PREFIX=""
 #STATIC=""
 
-${PREFIX}gcc -Os -Wall -I.. -c ssl_helper.c -o ssl_helper.o
-${PREFIX}gcc $STATIC --start-group ssl_helper.o -lm ../src/.libs/libwolfssl.a --end-group -o ssl_helper
+${PREFIX}gcc -Os -Wall -I wolfssl-* -c ssl_helper.c -o ssl_helper.o
+${PREFIX}gcc $STATIC --start-group ssl_helper.o -lm wolfssl-*/src/.libs/libwolfssl.a --end-group -o ssl_helper
 ${PREFIX}strip ssl_helper