From a7cd66728b4b35dbb7686108bcf8e100d663aad7 Mon Sep 17 00:00:00 2001 From: "Timur I. Bakeyev" Date: Sun, 7 Jun 2009 14:16:51 +0000 Subject: 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 --- source3/m4/aclocal.m4 | 4 ++-- 1 file 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 ] ) -- cgit