summaryrefslogtreecommitdiff
path: root/source4/lib/replace/dlfcn.m4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-13 08:14:10 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:31 -0500
commite18547d489075d46d865ac50d0b5acd760d74709 (patch)
tree5c1adddc2074b34fe0dadf0f66bdef6167188ced /source4/lib/replace/dlfcn.m4
parentcac47350c23793842cc2a5f5a0f17da739044729 (diff)
downloadsamba-e18547d489075d46d865ac50d0b5acd760d74709.tar.gz
samba-e18547d489075d46d865ac50d0b5acd760d74709.tar.bz2
samba-e18547d489075d46d865ac50d0b5acd760d74709.zip
r18445: splitout the dlfcn related tests
metze (This used to be commit 8662e1481504c50a45416ae09ec19b834164e77c)
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"