summaryrefslogtreecommitdiff
path: root/source4/lib/replace/dlfcn.m4
blob: d42409ac6301ccdc89eb72e9ee6ff7ff807ff79e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dnl dummies provided by dlfcn.c if not available
save_LIBS="$LIBS"
LIBS=""

libreplace_cv_dlfcn=no
AC_SEARCH_LIBS(dlopen, dl)

if test x"${ac_cv_search_dlopen}" = x"no"; then
	libreplace_cv_dlfcn=yes
else
	AC_CHECK_HEADERS(dlfcn.h)
	AC_CHECK_FUNCS([dlopen dlsym dlerror dlclose],[],[libreplace_cv_dlfcn=yes])
fi

if test x"${libreplace_cv_dlfcn}" = x"yes";then
	LIBREPLACEOBJ="${LIBREPLACEOBJ} dlfcn.o"
fi

LIBDL="$LIBS"
AC_SUBST(LIBDL)
LIBS="$save_LIBS"