From: Timur I. Bakeyev Date: Sun, 7 Jun 2009 14:16:51 +0000 (+0000) Subject: Small fix to SMB_LIBRARY macro X-Git-Tag: tdb-1.1.5~190 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7cd66728b4b35dbb7686108bcf8e100d663aad7;p=thirdparty%2Fsamba.git 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 --- diff --git a/source3/m4/aclocal.m4 b/source3/m4/aclocal.m4 index dedf6fbf50b..3b120e25643 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 ] )