| author | Matúš Kukan <matus.kukan@gmail.com> | 2012-08-25 19:32:13 (GMT) |
|---|---|---|
| committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-08-25 19:33:25 (GMT) |
| commit | 43b6f77506bdb5ef767ac2211f930bfc911f2046 (patch) (side-by-side diff) | |
| tree | 2ad861c5cd76e706433471197afb51c81516ed18 | |
| parent | 5bf93a18e645f5e7146402d5dfa6958ddee44de7 (diff) | |
| download | core-43b6f77506bdb5ef767ac2211f930bfc911f2046.zip core-43b6f77506bdb5ef767ac2211f930bfc911f2046.tar.gz | |
--enable-mergelibs: does not work with binfilter; warning for other platforms
Change-Id: I2992c89f70aebfcae5795c9f21d3cca48cbea4ae
| -rw-r--r-- | configure.in | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/configure.in b/configure.in index fa24279..86a1cee 100644 --- a/configure.in +++ b/configure.in @@ -660,7 +660,8 @@ dnl ---------- *** ---------- AC_ARG_ENABLE(mergelibs, AS_HELP_STRING([--enable-mergelibs], - [Enables linking of big merged library used for better performance.]) + [Enables linking of big, merged, library. + Still somehow experimental. Tested only for Linux and Android.]) ) AC_ARG_ENABLE(graphite, @@ -12070,9 +12071,15 @@ fi # =================================================================== # Creating bigger shared library to link against # =================================================================== -AC_MSG_CHECKING([whether to create a big library for better performance]) +AC_MSG_CHECKING([whether to create huge library]) MERGELIBS= -if test "$enable_mergelibs" = "yes"; then +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" + fi MERGELIBS="TRUE" AC_MSG_RESULT([yes]) else |
