Kaydet (Commit) 061652ff authored tarafından Tomas Chvatal's avatar Tomas Chvatal

Update desc of mergelib configure option

Also do not be fatal on clash with binfilter and just warn the user that
mergelib was disabled in favor of binfilter if he has both enabled.

Change-Id: I3b683a948e00b1134c10881c5ec442e6380f2822
üst e3e68199
......@@ -660,8 +660,8 @@ dnl ---------- *** ----------
AC_ARG_ENABLE(mergelibs,
AS_HELP_STRING([--enable-mergelibs],
[Enables linking of big, merged, library.
Still somehow experimental. Tested only for Linux and Android.])
[Enables linking of big, merged, library. Experimental feature tested
only on Linux and Android.])
)
AC_ARG_ENABLE(graphite,
......@@ -12075,13 +12075,15 @@ AC_MSG_CHECKING([whether to create huge library])
MERGELIBS=
if test $enable_mergelibs = yes; then
if test $WITH_BINFILTER = YES; then
AC_MSG_ERROR([--enable-mergelibs conflicts with --enable-binfilter. It would need fixing.])
fi
if test $_os != Linux -a $_os != Android; then
add_warning "--enable-mergelibs is not tested for this platform"
add_warining "--enable-mergelibs conflicts with --enable-binfilter. Disabling mergelibs."
AC_MSG_RESULT([no])
else
if test $_os != Linux -a $_os != Android; then
add_warning "--enable-mergelibs is not tested for this platform"
fi
MERGELIBS="TRUE"
AC_MSG_RESULT([yes])
fi
MERGELIBS="TRUE"
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
......
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