From 2e694978f5a21cfd8ce21f5a34ab5bd4ad817dda Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 6 Jul 2008 23:37:06 +0200 Subject: build: slightly change and extend the logic of SMB_LIBRARY(). Only call the install/uninstall targets (from make (un)install) for libraries configured with SMB_LIBRARY(), when the user did not set --with-libname=no. Make sure to always (at least) build the static version of the library. Michael (This used to be commit f440538c9480134ff05cf9c9f78a565808161101) --- source3/m4/aclocal.m4 | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) (limited to 'source3/m4') diff --git a/source3/m4/aclocal.m4 b/source3/m4/aclocal.m4 index 69bf95ef310..25f9912befe 100644 --- a/source3/m4/aclocal.m4 +++ b/source3/m4/aclocal.m4 @@ -69,12 +69,16 @@ LIBUC[_STATIC_TARGET]=bin/LIBNAME.a LIBUC[_SHARED]= LIBUC[_STATIC]= LIBUC[_LIBS]= +[INSTALL_]LIBUC= +[UNINSTALL_]LIBUC= AC_SUBST(LIBUC[_SHARED_TARGET]) AC_SUBST(LIBUC[_STATIC_TARGET]) AC_SUBST(LIBUC[_SHARED]) AC_SUBST(LIBUC[_STATIC]) AC_SUBST(LIBUC[_LIBS]) +AC_SUBST([INSTALL_]LIBUC) +AC_SUBST([UNINSTALL_]LIBUC) AC_MSG_CHECKING([whether to build the LIBNAME shared library]) AC_ARG_WITH(LIBNAME, @@ -82,11 +86,11 @@ AS_HELP_STRING([--with-]LIBNAME, [Build the LIBNAME shared library (default=yes if shared libs supported)]), [ case "$withval" in - *) + no) AC_MSG_RESULT(no) build_lib=no ;; - yes) + *) build_lib=yes ;; esac @@ -97,17 +101,25 @@ build_lib=yes ] ) -if eval test x"$build_lib" = "xyes" -a $BLDSHARED = true; then - LIBUC[_SHARED]=$LIBUC[_SHARED_TARGET] - AC_MSG_RESULT(yes) - if test x"$USESHARED" != x"true" -o x"$[LINK_]LIBUC" = "xSTATIC" ; then - LIBUC[_STATIC]=$LIBUC[_STATIC_TARGET] +if eval test x"$build_lib" = "xyes" ; then + # only set the install targets if the user chose the library + [INSTALL_]LIBUC=[install]LIBNAME + [UNINSTALL_]LIBUC=[uninstall]LIBNAME + if eval $BLDSHARED = true; then + LIBUC[_SHARED]=$LIBUC[_SHARED_TARGET] + AC_MSG_RESULT(yes) + if test x"$USESHARED" != x"true" -o x"$[LINK_]LIBUC" = "xSTATIC" ; then + LIBUC[_STATIC]=$LIBUC[_STATIC_TARGET] + else + LIBUC[_LIBS]=LIBLIBS + fi else - LIBUC[_LIBS]=LIBLIBS + enable_static=yes + AC_MSG_RESULT(no shared library support -- will supply static library) fi else enable_static=yes - AC_MSG_RESULT(no shared library support -- will supply static library) + AC_MSG_RESULT(shared library not selected, but will supply static library) fi if test $enable_static = yes; then LIBUC[_STATIC]=$LIBUC[_STATIC_TARGET] -- cgit