diff --git a/configure.ac b/configure.ac index 59f976f..3fc3a3a 100644 --- a/configure.ac +++ b/configure.ac @@ -387,6 +387,15 @@ if test "x$LIBTOXCORE_FOUND" = "xno"; then AC_SUBST(LIBTOXCORE_LDFLAGS) fi +AC_CHECK_HEADER([resolv.h], [], + [ + AC_MSG_ERROR([resolv.h header was not found on your system]) + ]) + +AC_CHECK_LIB(resolv, __res_init, [], + [ + AC_MSG_ERROR([libresolv library was not found on your system]) + ]) #### #### A/V Stuff @@ -490,7 +499,7 @@ if test "x$NCURSES_WIDECHAR_SUPPORT" = "xyes"; then AC_DEFINE([_XOPEN_SOURCE_EXTENDED], [1], [enable X/Open Portability Guide functionality]) fi - + AC_CONFIG_FILES([Makefile misc/Makefile build/Makefile])