summaryrefslogtreecommitdiff
path: root/net-mgmt/tcpreplay/files/patch-configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/tcpreplay/files/patch-configure.in')
-rw-r--r--net-mgmt/tcpreplay/files/patch-configure.in40
1 files changed, 0 insertions, 40 deletions
diff --git a/net-mgmt/tcpreplay/files/patch-configure.in b/net-mgmt/tcpreplay/files/patch-configure.in
deleted file mode 100644
index 3dd69d2f721c..000000000000
--- a/net-mgmt/tcpreplay/files/patch-configure.in
+++ /dev/null
@@ -1,40 +0,0 @@
---- configure.in.orig Wed Oct 9 17:55:34 2002
-+++ configure.in Wed Oct 9 18:27:27 2002
-@@ -91,6 +91,37 @@
- fi
- AC_SUBST(EXTRAS)
-
-+dnl Checks for libredblack
-+AC_ARG_WITH(libredblack,
-+[ --with-libredblack=DIR use libredblack from DIR/lib],
-+[ case "$withval" in
-+ yes|no)
-+ AC_MSG_ERROR(no)
-+ ;;
-+ *)
-+ AC_MSG_CHECKING(for libredblack)
-+ AC_MSG_RESULT($withval)
-+ if test -f $withval/lib/libredblack.a -a -f $withval/include/redblack.h; then
-+ owd=`pwd`
-+ if cd $withval; then withval=`pwd`; cd $owd; fi
-+ REDBLACKINC="-I$withval/include"
-+ REDBLACKLIB="-lredblack"
-+ LDFLAGS="$LDFLAGS -L$withval/lib"
-+ AC_SUBST(REDBLACKINC)
-+ AC_SUBST(REDBLACKLIB)
-+ else
-+ AC_ERROR(unable to find $withval/lib/libredback or $withval/include/redblack.h
-+Please download: http://libredblack.sourceforge.net/
-+)
-+ fi
-+ ;;
-+ esac ],
-+AC_CHECK_LIB(redblack, rbwalk, , AC_MSG_ERROR(redblack >= 1.1.0 not found.
-+
-+Please download: http://libredblack.sourceforge.net/
-+))
-+)
-+
- dnl Checks for libnet (shamelessly horked from dsniff)
- AC_MSG_CHECKING(for libnet)
- AC_ARG_WITH(libnet,