summaryrefslogtreecommitdiff
path: root/source4/lib/replace/dlfcn.m4
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/replace/dlfcn.m4')
-rw-r--r--source4/lib/replace/dlfcn.m418
1 files changed, 18 insertions, 0 deletions
diff --git a/source4/lib/replace/dlfcn.m4 b/source4/lib/replace/dlfcn.m4
new file mode 100644
index 0000000000..0f099f4bac
--- /dev/null
+++ b/source4/lib/replace/dlfcn.m4
@@ -0,0 +1,18 @@
+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"