diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-02-11 19:21:36 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-12 09:53:11 +0100 |
commit | 9fc9e9cfec84de414fd59239203745fd458ac753 (patch) | |
tree | 46ae50303c6869e5aa621a8531ec27a942fd36de /configure.ac | |
parent | 187194b8aea14350e38bf181dc97c2f1019222f0 (diff) |
normalize values of SYSTEM_HUNSPELL, SYSTEM_HYPH
Change-Id: Ib11dcf94263aefc68ae2e831baeeb957231793ae
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index f090ddb7f593..be850d602ef0 100644 --- a/configure.ac +++ b/configure.ac @@ -9483,7 +9483,7 @@ dnl =================================================================== AC_MSG_CHECKING([which libhunspell to use]) if test "$with_system_hunspell" = "yes"; then AC_MSG_RESULT([external]) - SYSTEM_HUNSPELL=YES + SYSTEM_HUNSPELL=TRUE AC_LANG_PUSH([C++]) PKG_CHECK_MODULES(HUNSPELL, hunspell, HUNSPELL_PC="TRUE", HUNSPELL_PC="" ) if test "$HUNSPELL_PC" != "TRUE"; then @@ -9501,7 +9501,7 @@ if test "$with_system_hunspell" = "yes"; then HUNSPELL_CFLAGS=$(printf '%s' "$HUNSPELL_CFLAGS" | sed -e "s/-I/${ISYSTEM?}/g") else AC_MSG_RESULT([internal]) - SYSTEM_HUNSPELL=NO + SYSTEM_HUNSPELL= HUNSPELL_CFLAGS="-I${WORKDIR}/UnpackedTarball/hunspell/src/hunspell" if test "$COM" = "MSC"; then HUNSPELL_LIBS="${WORKDIR}/LinkTarget/StaticLibrary/hunspell.lib" @@ -9520,7 +9520,7 @@ dnl =================================================================== AC_MSG_CHECKING([which altlinuxhyph to use]) if test "$with_system_altlinuxhyph" = "yes"; then AC_MSG_RESULT([external]) - SYSTEM_HYPH=YES + SYSTEM_HYPH=TRUE AC_CHECK_HEADER(hyphen.h, [], [ AC_MSG_ERROR(altlinuxhyph headers not found.)], []) AC_CHECK_MEMBER(struct _HyphenDict.cset, [], @@ -9539,7 +9539,7 @@ if test "$with_system_altlinuxhyph" = "yes"; then libo_MINGW_CHECK_DLL([libhyphen]) else AC_MSG_RESULT([internal]) - SYSTEM_HYPH=NO + SYSTEM_HYPH= BUILD_TYPE="$BUILD_TYPE HYPHEN" if test "$COM" = "MSC"; then HYPHEN_LIB="${WORKDIR}/LinkTarget/StaticLibrary/hyphen.lib" |