f159ae4c02
Signed-off-by: Peter Wagner <tripolar@gmx.at> git-svn-id: svn://svn.openwrt.org/openwrt/packages@38708 3c298f89-4303-0410-b956-a3cf2f4a3e73
62 lines
2.1 KiB
Diff
62 lines
2.1 KiB
Diff
--- a/configure
|
|
+++ b/configure
|
|
@@ -3640,7 +3640,7 @@ presetting ac_cv_c_bigendian=no (or yes)
|
|
esac
|
|
|
|
|
|
-CFLAGS="$CFLAGS -D_BSD_SOURCE"
|
|
+CFLAGS="$CFLAGS"
|
|
|
|
for ac_func in gettimeofday
|
|
do
|
|
@@ -3917,17 +3917,21 @@ if test "${with_libpcap+set}" = set; the
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
- echo "$as_me:$LINENO: result: $withval" >&5
|
|
-echo "${ECHO_T}$withval" >&6
|
|
+ echo "$ac_t""$withval" 1>&6
|
|
if test -f $withval/pcap.h -a -f $withval/libpcap.a; then
|
|
owd=`pwd`
|
|
if cd $withval; then withval=`pwd`; cd $owd; fi
|
|
- PCAP_CFLAGS="-I$withval -I$withval/bpf"
|
|
+ PCAPINC="-I$withval -I$withval/bpf"
|
|
PCAPLIB="-L$withval -lpcap"
|
|
+ elif test -f $withval/include/pcap.h -a \
|
|
+ -f $withval/include/pcap-bpf.h -a \
|
|
+ -f $withval/lib/libpcap.a; then
|
|
+ owd=`pwd`
|
|
+ if cd $withval; then withval=`pwd`; cd $owd; fi
|
|
+ PCAPINC="-I$withval/include"
|
|
+ PCAPLIB="-L$withval/lib -lpcap"
|
|
else
|
|
- { { echo "$as_me:$LINENO: error: pcap.h or libpcap.a not found in $withval" >&5
|
|
-echo "$as_me: error: pcap.h or libpcap.a not found in $withval" >&2;}
|
|
- { (exit 1); exit 1; }; }
|
|
+ { echo "configure: error: pcap.h" 1>&2; exit 1; }
|
|
fi
|
|
;;
|
|
esac
|
|
@@ -4399,10 +4403,10 @@ echo "${ECHO_T}no" >&6
|
|
*)
|
|
echo "$as_me:$LINENO: result: $withval" >&5
|
|
echo "${ECHO_T}$withval" >&6
|
|
- if test -f $withval/include/libnet.h -a -f $withval/lib/libnet.a -a -f $withval/libnet-config ; then
|
|
+ if test -f $withval/include/libnet.h -a -f $withval/lib/libnet.a -a -f $withval/bin/libnet-config ; then
|
|
owd=`pwd`
|
|
if cd $withval; then withval=`pwd`; cd $owd; fi
|
|
- LNET_CFLAGS="-I$withval/include `$withval/libnet-config --defines`"
|
|
+ LNET_CFLAGS="-I$withval/include `$withval/bin/libnet-config --defines`"
|
|
LNETLIB="-L$withval/lib -lnet"
|
|
elif test -f $withval/include/libnet.h -a -f $withval/src/libnet.a; then
|
|
owd=`pwd`
|
|
@@ -4684,7 +4688,7 @@ else
|
|
echo "$as_me: failed program was:" >&5
|
|
sed 's/^/| /' conftest.$ac_ext >&5
|
|
|
|
-HAVE_BSD_UDPHDR=0
|
|
+HAVE_BSD_UDPHDR=1
|
|
fi
|
|
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
|