summaryrefslogtreecommitdiff
path: root/source3/lib/replace/dlfcn.m4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-27 14:47:36 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:14:51 -0500
commit3ae0baefa18dac1d94c7fb0a92816e195c07f2b0 (patch)
tree9ffa0901b86cf0f28ac2b66604291d4cebe4c866 /source3/lib/replace/dlfcn.m4
parent94c9d528721a25c4faad08a188d86e05d939e559 (diff)
downloadsamba-3ae0baefa18dac1d94c7fb0a92816e195c07f2b0.tar.gz
samba-3ae0baefa18dac1d94c7fb0a92816e195c07f2b0.tar.bz2
samba-3ae0baefa18dac1d94c7fb0a92816e195c07f2b0.zip
r18961: merge from samba4:
fix caching of some configure tests AC_CACHE_CHECK() *needs* '_cv_' in the shell var to do caching... metze (This used to be commit c460f28b68b75342bfabe3b396dd06e07a668ec4)
Diffstat (limited to 'source3/lib/replace/dlfcn.m4')
-rw-r--r--source3/lib/replace/dlfcn.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/replace/dlfcn.m4 b/source3/lib/replace/dlfcn.m4
index 0f099f4bac..c9d31592e0 100644
--- a/source3/lib/replace/dlfcn.m4
+++ b/source3/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