summaryrefslogtreecommitdiff
path: root/source4/lib/replace/dlfcn.m4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-27 14:47:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:20:24 -0500
commit3f96df61dadb107867c174880029838c5c850cd3 (patch)
tree6500e8a5cf208423a5242ef595f123b28d8bb2b2 /source4/lib/replace/dlfcn.m4
parentc0c135c774fccc9a1ac6b6a40817ff4207df9478 (diff)
downloadsamba-3f96df61dadb107867c174880029838c5c850cd3.tar.gz
samba-3f96df61dadb107867c174880029838c5c850cd3.tar.bz2
samba-3f96df61dadb107867c174880029838c5c850cd3.zip
r18960: fix caching of some configure tests AC_CACHE_CHECK()
*needs* '_cv_' in the shell var to do caching... metze (This used to be commit cb334632fae28bff107200a7b5643289f383eaad)
Diffstat (limited to 'source4/lib/replace/dlfcn.m4')
-rw-r--r--source4/lib/replace/dlfcn.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/replace/dlfcn.m4 b/source4/lib/replace/dlfcn.m4
index 0f099f4bac..c9d31592e0 100644
--- a/source4/lib/replace/dlfcn.m4
+++ b/source4/lib/replace/dlfcn.m4
@@ -6,10 +6,10 @@ AC_SEARCH_LIBS(dlopen, dl)
AC_CHECK_HEADERS(dlfcn.h)
-libreplace_dlfcn=no
-AC_CHECK_FUNCS([dlopen dlsym dlerror dlclose],[],[libreplace_dlfcn=yes])
+libreplace_cv_dlfcn=no
+AC_CHECK_FUNCS([dlopen dlsym dlerror dlclose],[],[libreplace_cv_dlfcn=yes])
-if test x"${libreplace_dlfcn}" = x"yes";then
+if test x"${libreplace_cv_dlfcn}" = x"yes";then
LIBREPLACEOBJ="${LIBREPLACEOBJ} dlfcn.o"
fi