summaryrefslogtreecommitdiff
path: root/source3/m4/aclocal.m4
diff options
context:
space:
mode:
authorTimur I. Bakeyev <timur@com.bat.ru>2009-06-07 14:16:51 +0000
committerStefan Metzmacher <metze@samba.org>2009-06-08 13:20:53 +0200
commita7cd66728b4b35dbb7686108bcf8e100d663aad7 (patch)
tree2d98977b8068f7b8b73d7621d1bc17400e3e36d2 /source3/m4/aclocal.m4
parent96eaa412e63847c1cb942ed220607350c6b20a95 (diff)
downloadsamba-a7cd66728b4b35dbb7686108bcf8e100d663aad7.tar.gz
samba-a7cd66728b4b35dbb7686108bcf8e100d663aad7.tar.bz2
samba-a7cd66728b4b35dbb7686108bcf8e100d663aad7.zip
Small fix to SMB_LIBRARY macro
It seems, that SMB_LIBRARY macro has small bug in the logic, when showing if shall the SHARED version of the library be build. If the default value is given as a parameter, it reports "yes" when library is going to be build(?). This small patch makes report consistent. With regards, Timur Bakeyev. Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/m4/aclocal.m4')
-rw-r--r--source3/m4/aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/m4/aclocal.m4 b/source3/m4/aclocal.m4
index dedf6fbf50..3b120e2564 100644
--- a/source3/m4/aclocal.m4
+++ b/source3/m4/aclocal.m4
@@ -99,14 +99,14 @@ case "$withval" in
build_lib=yes
;;
*)
- AC_MSG_RESULT(yes)
+ AC_MSG_RESULT(no)
build_lib=no
;;
esac
],
[
# if unspecified, default is not to build
-AC_MSG_RESULT(yes)
+AC_MSG_RESULT(no)
build_lib=no
]
)