diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-08-21 18:49:01 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-08-21 18:49:01 +0000 |
commit | eb052f397b039b16222efaa6ef58d95acf3412b8 (patch) | |
tree | c942f64150d5ba01a16a9a004c6cdacfed53c1de | |
parent | 98b749a7d3ab3669a2568810aa6f861c18b6e025 (diff) | |
download | samba-eb052f397b039b16222efaa6ef58d95acf3412b8.tar.gz samba-eb052f397b039b16222efaa6ef58d95acf3412b8.tar.bz2 samba-eb052f397b039b16222efaa6ef58d95acf3412b8.zip |
Keep list of ignored and shared modules
(This used to be commit d0f394dac344edbb732eecdba5fbab1523acf2b3)
-rw-r--r-- | source3/aclocal.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/aclocal.m4 b/source3/aclocal.m4 index a6aa1bb1de..52396e56d6 100644 --- a/source3/aclocal.m4 +++ b/source3/aclocal.m4 @@ -54,6 +54,7 @@ AC_DEFUN(SMB_MODULE, $4_MODULES="$$4_MODULES $3" AC_MSG_RESULT([shared]) [$6] + string_shared_modules="$string_shared_modules $1" 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();" string_static_modules="$string_static_modules $1" @@ -62,6 +63,7 @@ AC_DEFUN(SMB_MODULE, [$5] AC_MSG_RESULT([static]) else + string_ignored_modules="$string_ignored_modules $1" AC_MSG_RESULT([not]) fi ]) |