summaryrefslogtreecommitdiff
path: root/source3/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
commit6d6f1c0522201792412b4618098536bcc45f4919 (patch)
tree9a35a31e8c33dcd93d1fc5531a50c1dc7eab35cb /source3/aclocal.m4
parentcdfe4b9b85441678067c37e438ed1c29ee5fa1cf (diff)
downloadsamba-6d6f1c0522201792412b4618098536bcc45f4919.tar.gz
samba-6d6f1c0522201792412b4618098536bcc45f4919.tar.bz2
samba-6d6f1c0522201792412b4618098536bcc45f4919.zip
- Add support to auth/ for the new modules system
- Quite some small fixes (also fixes the build) (This used to be commit 3defbd5e0633acfa4631531b49601c7706072d86)
Diffstat (limited to 'source3/aclocal.m4')
-rw-r--r--source3/aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/aclocal.m4 b/source3/aclocal.m4
index 79fbc8628e..5d9070fcd9 100644
--- a/source3/aclocal.m4
+++ b/source3/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