1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00
Stefan Metzmacher e18547d489 r18445: splitout the dlfcn related tests
metze
(This used to be commit 8662e1481504c50a45416ae09ec19b834164e77c)
2007-10-10 14:18:31 -05:00

19 lines
364 B
Plaintext

dnl dummies provided by dlfcn.c if not available
save_LIBS="$LIBS"
LIBS=""
AC_SEARCH_LIBS(dlopen, dl)
AC_CHECK_HEADERS(dlfcn.h)
libreplace_dlfcn=no
AC_CHECK_FUNCS([dlopen dlsym dlerror dlclose],[],[libreplace_dlfcn=yes])
if test x"${libreplace_dlfcn}" = x"yes";then
LIBREPLACEOBJ="${LIBREPLACEOBJ} dlfcn.o"
fi
LIBDL="$LIBS"
AC_SUBST(LIBDL)
LIBS="$save_LIBS"