Changeset 1815
- Timestamp:
- 04/16/07 23:12:22 (21 months ago)
- Files:
-
- 1 modified
-
trunk/configure.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.in
r1814 r1815 317 317 LNETINCDIR="${testdir}/include" 318 318 if test $dynamic_link = yes; then 319 if test -f "${testdir}/lib /libnet.a" ; then320 LNETLIB="-L${testdir}/lib -lnet"321 elif test -f "${testdir}/lib 64/libnet.a" ; then322 LNETLIB="-L${testdir}/lib 64-lnet"319 if test -f "${testdir}/lib64/libnet.a" ; then 320 LNETLIB="-L${testdir}/lib64 -lnet" 321 elif test -f "${testdir}/lib/libnet.a" ; then 322 LNETLIB="-L${testdir}/lib -lnet" 323 323 else 324 324 AC_ERROR([Unable to find libnet in ${testdir}]) … … 442 442 LPCAPINCDIR="${testdir}/include" 443 443 if test $dynamic_link = yes; then 444 if test -f "${testdir}/lib /libpcap.a" ; then445 LPCAPLIB="-L${testdir}/lib -lpcap"446 elif test -f "${testdir}/lib 64/libpcap.a" ; then447 LPCAPLIB="-L${testdir}/lib 64-lpcap"444 if test -f "${testdir}/lib64/libpcap.a" ; then 445 LPCAPLIB="-L${testdir}/lib64 -lpcap" 446 elif test -f "${testdir}/lib/libpcap.a" ; then 447 LPCAPLIB="-L${testdir}/lib -lpcap" 448 448 else 449 449 AC_ERROR([Unable to find libpcap in ${testdir}])
