openbsd-ports/security/dsniff/patches/patch-configure_in
mjc 5e5f75b247 cope with new libnet port
ok pvalchev@ msf@
2005-05-24 00:13:31 +00:00

73 lines
2.8 KiB
Plaintext

$OpenBSD: patch-configure_in,v 1.3 2005/05/24 00:15:06 mjc Exp $
--- configure.in.orig Sat Dec 2 21:16:50 2000
+++ configure.in Sun May 22 12:31:54 2005
@@ -109,13 +109,13 @@ AC_ARG_WITH(db,
AC_DEFINE(HAVE_DB_185_H)
DBINC="-I$withval/dist"
DBLIB="-L$withval/dist -ldb"
- elif test -f $withval/include/db_185.h -a \
- -f $withval/lib/libdb.a; then
+ elif test -f $withval/include/db/db_185.h -a \
+ -f $withval/lib/db/libdb.a; then
owd=`pwd`
if cd $withval; then withval=`pwd`; cd $owd; fi
AC_DEFINE(HAVE_DB_185_H)
- DBINC="-I$withval/include"
- DBLIB="-L$withval/lib -ldb"
+ DBINC="-I$withval/include/db"
+ DBLIB="-L$withval/lib/db -ldb"
else
AC_ERROR(db_185.h or libdb.a not found in $withval or not configured with --enable-compat185)
fi
@@ -212,8 +212,8 @@ AC_ARG_WITH(libnet,
if test -f $withval/include/libnet.h -a -f $withval/lib/libnet.a; then
owd=`pwd`
if cd $withval; then withval=`pwd`; cd $owd; fi
- if test -f $withval/bin/libnet-config; then
- CFLAGS="$CFLAGS `$withval/bin/libnet-config --defines`"
+ if test -f $withval/bin/libnet-config-1.0; then
+ CFLAGS="$CFLAGS `$withval/bin/libnet-config-1.0 --defines`"
elif test -f $withval/libnet-config; then
CFLAGS="$CFLAGS `$withval/libnet-config --defines`"
else
@@ -226,10 +226,10 @@ AC_ARG_WITH(libnet,
fi
;;
esac ],
-[ if test -f ${prefix}/include/libnet.h; then
- CFLAGS="$CFLAGS `${prefix}/bin/libnet-config --defines`"
- LNETINC="-I${prefix}/include"
- LNETLIB="-L${prefix}/lib -lnet"
+[ if test -f ${prefix}/include/libnet-1.0/libnet.h; then
+ CFLAGS="$CFLAGS `${prefix}/bin/libnet-config-1.0 --defines`"
+ LNETINC="-I${prefix}/include/libnet-1.0"
+ LNETLIB="-L${prefix}/lib/libnet-1.0 -lnet"
elif test -f /usr/include/libnet.h; then
CFLAGS="$CFLAGS `libnet-config --defines`"
LNETLIB="-lnet"
@@ -307,7 +307,7 @@ AC_ARG_WITH(openssl,
owd=`pwd`
if cd $withval; then withval=`pwd`; cd $owd; fi
SSLINC="-I$withval/include"
- SSLLIB="-L$withval/lib -lssl -lcrypto"
+ SSLLIB="-L$withval/lib -lssl -lcrypto -ldes"
else
AC_ERROR(ssl.h or libssl.a not found in $withval)
fi
@@ -316,12 +316,12 @@ AC_ARG_WITH(openssl,
esac ],
[ if test -f ${prefix}/include/openssl/ssl.h; then
SSLINC="-I${prefix}/include"
- SSLLIB="-L${prefix}/lib -lssl -lcrypto"
+ SSLLIB="-L${prefix}/lib -lssl -lcrypto -ldes"
elif test -f ${prefix}/ssl/include/openssl/ssl.h; then
SSLINC="-I${prefix}/ssl/include"
- SSLLIB="-L${prefix}/ssl/lib -lssl -lcrypto"
+ SSLLIB="-L${prefix}/ssl/lib -lssl -lcrypto -ldes"
elif test -f /usr/include/openssl/ssl.h; then
- SSLLIB="-lssl -lcrypto"
+ SSLLIB="-lssl -lcrypto -ldes"
else
AC_MSG_RESULT(no)
AC_ERROR(OpenSSL not found)