Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv2686/scripts
Modified Files:
Tag: rel-1-0-patches
iptables
Log Message:
- disabled stack smashing protector for iptables
- updated thttpd to v2.24
Index: iptables
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/iptables,v
retrieving revision 1.17
retrieving revision 1.17.2.1
diff -u -d -r1.17 -r1.17.2.1
--- iptables 2 Oct 2003 12:28:41 -0000 1.17
+++ iptables 31 Oct 2003 15:30:04 -0000 1.17.2.1
@@ -16,9 +16,13 @@
case $1 in
build )
+ FLAGS="-O2"
+ if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then
+ FLAGS="-O2 -fno-stack-protector"
+ fi
replace_str Makefile "/usr/local" "/usr"
# parallel build failes, do not use $PMAKE
- make all KERNEL_DIR=$KERNELDIR || exit 1
+ make all COPT_FLAGS="$FLAGS" KERNEL_DIR=$KERNELDIR || exit 1
strip_debug
# install it, so other programs can use it
make install || exit 1
|