mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
e1797cf6be
(This used to be ctdb commit 0bf6e6cb371bb946ea8cc1d8c7a23a41ea715832)
21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
dnl dummies provided by dlfcn.c if not available
|
|
save_LIBS="$LIBS"
|
|
LIBS=""
|
|
|
|
AC_SEARCH_LIBS(dlopen, dl)
|
|
|
|
if test "$ac_cv_search_dlopen" != no; then
|
|
AC_CHECK_HEADERS(dlfcn.h)
|
|
|
|
libreplace_cv_dlfcn=no
|
|
AC_CHECK_FUNCS([dlopen dlsym dlerror dlclose],[],[libreplace_cv_dlfcn=yes])
|
|
|
|
if test x"${libreplace_cv_dlfcn}" = x"yes";then
|
|
LIBREPLACEOBJ="${LIBREPLACEOBJ} dlfcn.o"
|
|
fi
|
|
fi
|
|
|
|
LIBDL="$LIBS"
|
|
AC_SUBST(LIBDL)
|
|
LIBS="$save_LIBS"
|