summaryrefslogtreecommitdiffstats
path: root/source/aclocal.m4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-03-24 23:03:46 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-03-24 23:03:46 +0000
commit3defbd5e0633acfa4631531b49601c7706072d86 (patch)
tree0dda65bae1d674eee7538cb9fb179090236e1c24 /source/aclocal.m4
parent898a246c1650326cbd9b8ca49fb93963e589ea1f (diff)
downloadsamba-3defbd5e0633acfa4631531b49601c7706072d86.tar.gz
samba-3defbd5e0633acfa4631531b49601c7706072d86.tar.xz
samba-3defbd5e0633acfa4631531b49601c7706072d86.zip
- Add support to auth/ for the new modules system
- Quite some small fixes (also fixes the build)
Diffstat (limited to 'source/aclocal.m4')
-rw-r--r--source/aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/source/aclocal.m4 b/source/aclocal.m4
index 79fbc8628ed..5d9070fcd99 100644
--- a/source/aclocal.m4
+++ b/source/aclocal.m4
@@ -51,11 +51,11 @@ AC_DEFUN(SMB_MODULE,
if test x"$DEST" = xSHARED; then
AC_DEFINE([$1][_init], [init_module], [Whether to build $1 as shared module])
- $5_MODULES="$$4_MODULES $3"
+ $4_MODULES="$$4_MODULES $3"
AC_MSG_RESULT([shared])
elif test x"$DEST" = xSTATIC; then
[init_static_modules_]translit([$4], [A-Z], [a-z])="$[init_static_modules_]translit([$4], [A-Z], [a-z]) $1_init();"
- $5_STATIC="$$4_STATIC $2"
+ $4_STATIC="$$4_STATIC $2"
AC_SUBST($4_STATIC)
AC_MSG_RESULT([static])
else