summaryrefslogtreecommitdiff
path: root/source4/aclocal.m4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-02-09 21:56:03 +0000
committerStefan Metzmacher <metze@samba.org>2004-02-09 21:56:03 +0000
commite2327d727d7d313dfa1ae2d0381c1c61e4ab612e (patch)
tree7378dd6e70ff32149c0aba5c3258b8f6b520782b /source4/aclocal.m4
parente7d68c3f7a10e9f66112a93d3f22b9c6cdf657fa (diff)
downloadsamba-e2327d727d7d313dfa1ae2d0381c1c61e4ab612e.tar.gz
samba-e2327d727d7d313dfa1ae2d0381c1c61e4ab612e.tar.bz2
samba-e2327d727d7d313dfa1ae2d0381c1c61e4ab612e.zip
- remove unused 'evel ...' calls, we don't need them inside of
AC_XXX() macros - handle --with-shared-modules=process_model --with-static-modules=process_model_single right. ( build 'single' static and the rest of the process_model modules shared, if they're not declared as NOT. metze (This used to be commit a57734877dd58ab3159435a145b307bd546a9e99)
Diffstat (limited to 'source4/aclocal.m4')
-rw-r--r--source4/aclocal.m416
1 files changed, 8 insertions, 8 deletions
diff --git a/source4/aclocal.m4 b/source4/aclocal.m4
index b3f49dc8de..de23fd1979 100644
--- a/source4/aclocal.m4
+++ b/source4/aclocal.m4
@@ -41,10 +41,10 @@ dnl SMB_MODULE_DEFAULT(1:name,2:default_build)
AC_DEFUN(SMB_MODULE_DEFAULT,
[
dnl Fall back to static if dlopen() is not available
- eval MODULE_DEFAULT_$1=$2
+ [MODULE_DEFAULT_][$1]=$2
- if test x"MODULE_DEFAULT_$1" = xSHARED -a x"$ac_cv_func_dlopen" != xyes; then
- eval MODULE_DEFAULT_$1=STATIC
+ if test x"$[MODULE_DEFAULT_][$1]" = xSHARED -a x"$ac_cv_func_dlopen" != xyes; then
+ [MODULE_DEFAULT_][$1]=STATIC
fi
])
@@ -54,21 +54,21 @@ AC_DEFUN(SMB_MODULE,
[
AC_MSG_CHECKING([how to build $1])
if test -z "$[MODULE_DEFAULT_][$1]"; then
- eval MODULE_DEFAULT_$1=$3
+ [MODULE_DEFAULT_][$1]=$3
- if test x"MODULE_DEFAULT_$1" = xSHARED -a x"$ac_cv_func_dlopen" != xyes; then
- eval MODULE_DEFAULT_$1=STATIC
+ if test x"$[MODULE_DEFAULT_][$1]" = xSHARED -a x"$ac_cv_func_dlopen" != xyes; then
+ [MODULE_DEFAULT_][$1]=STATIC
fi
fi
if test "$[MODULE_][$1]"; then
DEST=$[MODULE_][$1]
- elif test "$[MODULE_]translit([$2], [A-Z], [a-z])" -a "$[MODULE_DEFAULT_][$1]"; then
+ elif test "$[MODULE_]translit([$2], [A-Z], [a-z])" -a x"$[MODULE_DEFAULT_][$1]" != xNOT; then
DEST=$[MODULE_]translit([$2], [A-Z], [a-z])
else
DEST=$[MODULE_DEFAULT_][$1]
fi
-
+
if test x"$DEST" = xSHARED; then
AC_DEFINE([$1][_init], [init_module], [Whether to build $1 as shared module])
$2_MODULES="$$2_MODULES bin/$1.$SHLIBEXT"