summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.cz>2012-02-10 15:26:57 +0100
committerPetr Mladek <pmladek@suse.cz>2012-02-10 15:31:19 +0100
commit739100d0abcf6025835028b9d503bf3e11cd77db (patch)
tree6069de961787ea8d606ca9ee17b065ff207f6b5a /configure.in
parentfcb72a159ba9a24b6536492f84bc7dcdea8e4f1b (diff)
use system stdlibs by default (fdo#45074, fdo#45696)
this is second part of the fix for the two bugs
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index edc3e992825a..a744fa8c46d1 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