diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-02-11 16:21:04 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-12 09:53:08 +0100 |
commit | 04ff535f72c1fbc5f7dbc8cc54ed9b23f7e130f9 (patch) | |
tree | 52cb40ab9b0e01c26e6b94f1039bc5d36a578f59 /configure.ac | |
parent | 23647595d77b85b5dac0d5762987a3ba2533ffd9 (diff) |
normalize values of SYSTEM_ZLIB, SYSTEM_DICTS, SYSTEM_FONTCONFIG
Change-Id: I7530cb9d0797df5fc86695b0379cc44c159d2ab5
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index c936927ac3dc..2f3c87dd96c3 100644 --- a/configure.ac +++ b/configure.ac @@ -4720,7 +4720,7 @@ AC_SUBST(ENABLE_CUPS) # fontconfig checks if test "$test_fontconfig" = "yes"; then PKG_CHECK_MODULES([FONTCONFIG], [fontconfig >= 2.4.1]) - SYSTEM_FONTCONFIG=YES + SYSTEM_FONTCONFIG=TRUE fi AC_SUBST(FONTCONFIG_CFLAGS) AC_SUBST(FONTCONFIG_LIBS) @@ -4794,7 +4794,7 @@ fi AC_MSG_CHECKING([whether to use dicts from external paths]) if test -z "$with_system_dicts" -o "$with_system_dicts" != "no"; then AC_MSG_RESULT([yes]) - SYSTEM_DICTS=YES + SYSTEM_DICTS=TRUE AC_MSG_CHECKING([for spelling dictionary directory]) if test -n "$with_external_dict_dir"; then DICT_SYSTEM_DIR=file://$with_external_dict_dir @@ -4821,7 +4821,7 @@ if test -z "$with_system_dicts" -o "$with_system_dicts" != "no"; then AC_MSG_RESULT([$THES_SYSTEM_DIR]) else AC_MSG_RESULT([no]) - SYSTEM_DICTS=NO + SYSTEM_DICTS= fi AC_SUBST(SYSTEM_DICTS) AC_SUBST(DICT_SYSTEM_DIR) @@ -7667,14 +7667,14 @@ dnl libo_CHECK_SYSTEM_MODULE([zlib],[ZLIB],[zlib]) AC_MSG_CHECKING([which zlib to use]) if test "$with_system_zlib" = "yes"; then AC_MSG_RESULT([external]) - SYSTEM_ZLIB=YES + SYSTEM_ZLIB=TRUE AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR(zlib.h not found. install zlib)], []) AC_CHECK_LIB(z, deflate, [ ZLIB=-lz ], [AC_MSG_ERROR(zlib not found or functional)], []) else AC_MSG_RESULT([internal]) - SYSTEM_ZLIB=NO + SYSTEM_ZLIB= BUILD_TYPE="$BUILD_TYPE ZLIB" ZLIB_CFLAGS="-I${WORKDIR}/UnpackedTarball/zlib" ZLIB_LIBS="-lzlib" |