This commit is contained in:
whottgen
2004-09-29 09:43:22 +00:00
parent c5b1209186
commit ef0b5d52f9
4 changed files with 224 additions and 2 deletions

View File

@ -73,6 +73,17 @@ AC_CHECK_LIB(pthread, pthread_create,
)
)
AC_CHECK_LIB([db], [__db_ndbm_open],
[ LIBS="$LIBS -ldb" ],
AC_CHECK_LIB([db41], [__db_ndbm_open],
[ LIBS="$LIBS -ldb41" ],
AC_CHECK_LIB([db42], [__db_ndbm_open],
[ LIBS="$LIBS -ldb42" ],
[ AC_MSG_ERROR([*** Berkeley DB not found]) ]
)
)
)
AC_CHECK_LIB([resolv], [inet_aton])
AC_CHECK_LIB([socket], [connect])