From 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Thu, 9 Dec 2004 09:47:41 +0000 Subject: Merge oe-devel@oe-devel.bkbits.net:openembedded into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA --- libnids/libnids-1.18/configure.patch | 60 ------------------------------------ libnids/libnids_1.18.bb | 0 2 files changed, 60 deletions(-) delete mode 100644 libnids/libnids-1.18/configure.patch delete mode 100644 libnids/libnids_1.18.bb (limited to 'libnids') diff --git a/libnids/libnids-1.18/configure.patch b/libnids/libnids-1.18/configure.patch deleted file mode 100644 index 332675b057..0000000000 --- a/libnids/libnids-1.18/configure.patch +++ /dev/null @@ -1,60 +0,0 @@ ---- tmp/base/libnids-1.18-r0/libnids-1.18/configure.in Tue Oct 14 18:40:00 2003 -+++ libnids-1.18/configure.in Wed Nov 5 16:01:27 2003 -@@ -65,12 +65,15 @@ - ;; - *) - AC_MSG_RESULT($withval) -- 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" -- PCAPLIB="-L$withval -lpcap" -- else -+ for i in $withval $withval/include $withval/lib $withval/include/pcap; do -+ if test -f $i/pcap.h; then -+ PCAP_CFLAGS="-I$i -I$i/bpf" -+ fi -+ if test -f $i/libpcap.a; then -+ PCAPLIB="-L$i -lpcap" -+ fi -+ done -+ if test -z "$PCAP_CFLAGS" -o -z "$PCAPLIB"; then - AC_ERROR(pcap.h or libpcap.a not found in $withval) - fi - ;; -@@ -127,20 +130,22 @@ - ;; - *) - AC_MSG_RESULT($withval) -- if test -f $withval/include/libnet.h -a -f $withval/lib/libnet.a -a -f $withval/libnet-config ; then -- owd=`pwd` -- if cd $withval; then withval=`pwd`; cd $owd; fi -- LNET_CFLAGS="-I$withval/include `$withval/libnet-config --defines`" -- LNETLIB="-L$withval/lib -lnet" -- elif test -f $withval/include/libnet.h -a -f $withval/src/libnet.a; then -- owd=`pwd` -- if cd $withval; then withval=`pwd`; cd $owd; fi -- LNET_CFLAGS="-I$withval/include" -- LNETLIB="-L$withval/src -lnet" -- else -- echo "A working combination of libnet.h, libnet.a and libnet-config not found in $withval; get libnet from www.packetfactory.net/projects/libnet and reinstall" -- AC_ERROR(libnet) -+ LNETC="`which libnet-config 2>/dev/null`" -+ for i in $withval $withval/include $withval/lib $withval/bin; do -+ if test -f $i/libnet-config; then -+ LNETC"=$i/libnet-config" -+ fi -+ if test -f $i/libnet.h; then -+ LNET_CFLAGS="-I$i" -+ fi -+ if test -f $i/libnet.a; then -+ LNETLIB="-L$i -lnet" -+ fi -+ done -+ if test -z "$LNET_CFLAGS" -o -z "$LNETLIB" -o -z "$LNETC"; then -+ AC_ERROR([libnet not found in $withval]) - fi -+ LNET_CFLAGS="$LNET_CFLAGS `$LNETC --defines`" - ;; - esac ], - [ if test "x"$LIBNET_VER = "x"-1 ; then diff --git a/libnids/libnids_1.18.bb b/libnids/libnids_1.18.bb deleted file mode 100644 index e69de29bb2..0000000000 -- cgit v1.2.3