diff options
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index c2d57f566b..9c55e86a26 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -228,7 +228,8 @@ AC_CHECK_TYPE(wchar_t, unsigned short) AC_CHECK_LIB(cups,httpConnect) # we need libdl for PAM and the new VFS code -AC_CHECK_LIB(dl,main, [LDFLAGS="$LDFLAGS -rdynamic"; LIBS="$LIBS -ldl"]) +AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"; + AC_DEFINE(HAVE_LIBDL)]) AC_CACHE_CHECK([for sig_atomic_t type],samba_cv_sig_atomic_t, [ AC_TRY_COMPILE([ |