From: Ivo Timmermans Date: Thu, 4 May 2000 00:01:05 +0000 (+0000) Subject: Check for the existance of libdl. X-Git-Tag: release-1.0pre1~5 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=d4ef7ea0e79ee0d2b7063893f7af5ece886d838b;ds=sidebyside Check for the existance of libdl. --- diff --git a/configure.in b/configure.in index 3f872180..ea2c0370 100644 --- a/configure.in +++ b/configure.in @@ -61,5 +61,9 @@ else LIBS="$LIBS -l$libgmp" fi +AC_CHECK_LIB(dl, dlopen, [ + LIBS="$LIBS -ldl" +]) + AC_OUTPUT([Makefile src/Makefile cipher/Makefile cipher/blowfish/Makefile doc/Makefile lib/Makefile m4/Makefile redhat/Makefile debian/Makefile])