--- tcpdump-3.8.1/configure.in.orig 2003-11-16 11:51:05 +0300 +++ tcpdump-3.8.1/configure.in 2004-01-09 20:41:31 +0300 @@ -236,7 +236,7 @@ fi if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then - if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then + if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.so; then LIBS="-L$ipv6libdir -l$ipv6lib $LIBS" echo "You have $ipv6lib library, using it" else @@ -244,7 +244,7 @@ echo "You do not have $ipv6lib library, using libc" else echo 'Fatal: no $ipv6lib library found. cannot continue.' - echo "You need to fetch lib$ipv6lib.a from appropriate" + echo "You need to fetch lib$ipv6lib.so from appropriate" echo 'ipv6 kit and compile beforehand.' exit 1 fi @@ -698,10 +698,10 @@ # # Or should we just look for "libcrypto.*"? # - if test -d $dir/lib -a \( -f $dir/lib/libcrypto.a -o \ - -f $dir/lib/libcrypto.so -o \ + if test -d $dir/lib -a \( -f $dir/lib/libcrypto.so -o \ -f $dir/lib/libcrypto.sl -o \ - -f $dir/lib/libcrypto.dylib \); then + -f $dir/lib/libcrypto.dylib -o \ + -f $dir/lib/libcrypto.a \); then ac_cv_ssleay_path=$dir fi if test -d $dir/include/openssl -a -f $dir/include/openssl/des.h; then @@ -718,10 +718,10 @@ if test "$ac_cv_ssleay_path" != no; then V_INCLS="$V_INCLS $incdir" LDFLAGS="-L$dir/lib $LDFLAGS" - if test -f $ac_cv_ssleay_path/lib/libRSAglue.a; then + if test -f $ac_cv_ssleay_path/lib/libRSAglue.so; then LIBS="$LIBS -lRSAglue" fi - if test -f $ac_cv_ssleay_path/lib/librsaref.a; then + if test -f $ac_cv_ssleay_path/lib/librsaref.so; then LIBS="$LIBS -lrsaref" fi AC_CHECK_LIB(crypto, des_cbc_encrypt)