summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-02-13 15:10:53 +0100
committerMichael Adam <obnox@samba.org>2008-02-13 15:11:23 +0100
commit8a8c71e08e1cabb796150c4b25bce22264a6cdb1 (patch)
treea845395d762f2d8044829f5187c532fdd71a0599 /source3
parent574dce7c0e7f0c869ec3404a2c2a898f57b436be (diff)
downloadsamba-8a8c71e08e1cabb796150c4b25bce22264a6cdb1.tar.gz
samba-8a8c71e08e1cabb796150c4b25bce22264a6cdb1.tar.bz2
samba-8a8c71e08e1cabb796150c4b25bce22264a6cdb1.zip
Use --with-static-libs=libtalloc instead of --with-static-libs=talloc
for consistency (and similar for all other examples). Michael (This used to be commit 198768a83242cca3f03d839598200d794bb11606)
Diffstat (limited to 'source3')
-rw-r--r--source3/configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 34b6465d45..a22979e104 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -5146,7 +5146,7 @@ fi
# appears in the --with-static-libs configure option.
#
# Example:
-# --with-static-libs=talloc makes use of libtalloc.a instead
+# --with-static-libs=libtalloc makes use of libtalloc.a instead
# of linking the dynamic variant with -ltalloc.
#
# NOTE: This option only affects libraries that we do not only build
@@ -5161,7 +5161,7 @@ AC_ARG_WITH([static-libs],
[AS_IF([test $withval],
[for lib in `echo $withval | sed -e 's/,/ /g'` ; do
[lib=`echo $lib | tr '[a-z]' '[A-Z]'`]
- eval LIB_$lib=STATIC
+ eval LINK_$lib=STATIC
done], [])],
[])
@@ -5196,7 +5196,7 @@ samba_cv_with_libtalloc=yes
if test x"$samba_cv_with_libtalloc" = "xyes" -a $BLDSHARED = true; then
LIBTALLOC_SHARED=$LIBTALLOC_SHARED_TARGET
AC_MSG_RESULT(yes)
- if test x"$LIB_TALLOC" = "xSTATIC" ; then
+ if test x"$LINK_LIBTALLOC" = "xSTATIC" ; then
LIBTALLOC_STATIC=$LIBTALLOC_STATIC_TARGET
else
LIBTALLOC_LIBS=-ltalloc
@@ -5240,7 +5240,7 @@ samba_cv_with_libnetapi=yes
if test x"$samba_cv_with_libnetapi" = x"yes" -a $BLDSHARED = true; then
LIBNETAPI_SHARED=$LIBNETAPI_SHARED_TARGET
AC_MSG_RESULT(yes)
- if test x"$LIB_NETAPI" = x"STATIC" ; then
+ if test x"$LINK_LIBNETAPI" = x"STATIC" ; then
LIBNETAPI_STATIC=$LIBNETAPI_STATIC_TARGET
else
LIBNETAPI_LIBS=-lnetapi