mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
e18547d489
metze (This used to be commit 8662e1481504c50a45416ae09ec19b834164e77c)
19 lines
364 B
Plaintext
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"
|