Kaydet (Commit) 739100d0 authored tarafından Petr Mladek's avatar Petr Mladek

use system stdlibs by default (fdo#45074, fdo#45696)

this is second part of the fix for the two bugs
üst fcb72a15
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment