|
|
- --- a/configure.in
- +++ b/configure.in
- @@ -24,11 +24,6 @@ if test -n "$x_libraries" && test "x$x_l
- LDFLAGS="$LDFLAGS -L$x_libraries"
- fi
-
- -# May be equired for BSD
- -LDFLAGS="$LDFLAGS -L/usr/local/lib"
- -
- -CPPFLAGS="$CPPFLAGS -I/usr/local/include"
- -
- #Check for Darwin sw directory
- AC_CHECK_FILE(/sw/lib, LDFLAGS="$LDFLAGS -L/sw/lib")
- AC_CHECK_FILE(/sw/include, CPPFLAGS="$CPPFLAGS -I/sw/include")
- @@ -55,8 +50,7 @@ AC_CHECK_LIB(pcap, pcap_open_live, ,
- [AC_CHECK_LIB(wpcap, pcap_open_live, ,[AC_MSG_ERROR([Bandwidthd requires but cannot find libpcap])])])
-
- # Optional Library
- -AC_CHECK_FILE(/usr/lib, LDFLAGS="$LDFLAGS -L/usr/lib")
- -AC_CHECK_FILE(/usr/include/pgsql, CPPFLAGS="$CPPFLAGS -I/usr/include/pgsql")
- +AC_CHECK_FILE(/usr/local/pgsql/include, CPPFLAGS="$CPPFLAGS -I/usr/local/pgsql/include")
- AC_CHECK_LIB(pq, PQconnectdb,
- [AC_CHECK_LIB(pq,PQexecParams, ,AC_MSG_WARN([libpq exists but is too old... bandwidthd requires support for PQexecParams]))])
- AC_CHECK_LIB(sqlite3, sqlite3_open, ,AC_MSG_WARN([sqlite3 is recommended for storage of data but cannot be found]))
|