[Libreoffice-commits] .: configure.in
Petr Mladek
pmladek at kemper.freedesktop.org
Fri Feb 10 06:31:36 PST 2012
configure.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 739100d0abcf6025835028b9d503bf3e11cd77db
Author: Petr Mladek <pmladek at suse.cz>
Date: Fri Feb 10 15:26:57 2012 +0100
use system stdlibs by default (fdo#45074, fdo#45696)
this is second part of the fix for the two bugs
diff --git a/configure.in b/configure.in
index edc3e99..a744fa8 100644
--- a/configure.in
+++ b/configure.in
@@ -1026,8 +1026,8 @@ AC_ARG_WITH(system-jars,
[with_system_jars="$with_system_libs"])
AC_ARG_WITH(system-stdlibs,
- AS_HELP_STRING([--with-system-stdlibs],
- [Use libstdc++/libgcc_s already on system.]),,
+ AS_HELP_STRING([--without-system-stdlibs],
+ [Bundle the used libstdc++/libgcc_s into the installation set.]),,
[with_system_stdlibs="$with_system_libs"])
AC_ARG_WITH(system-cairo,
@@ -5555,7 +5555,7 @@ dnl ===================================================================
dnl Check for system stdlibs
dnl ===================================================================
AC_MSG_CHECKING([whether to provide libstdc++/libgcc_s in the installset])
-if test "$with_system_stdlibs" = "yes"; then
+if test "$with_system_stdlibs" != "no"; then
AC_MSG_RESULT([no])
SYSTEM_STDLIBS=YES
else
More information about the Libreoffice-commits
mailing list