diff options
-rw-r--r-- | RepositoryExternal.mk | 4 | ||||
-rw-r--r-- | configure.ac | 12 | ||||
-rw-r--r-- | external/poppler/Module_poppler.mk | 2 | ||||
-rw-r--r-- | scp2/InstallModule_ooo.mk | 4 |
4 files changed, 11 insertions, 11 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index 9a38e31ad2ae..2960d840ed8a 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -2136,7 +2136,7 @@ endef endif # ENABLE_VALGRIND -ifeq ($(SYSTEM_POPPLER),YES) +ifneq ($(SYSTEM_POPPLER),) define gb_LinkTarget__use_poppler $(call gb_LinkTarget_set_include,$(1),\ @@ -3031,7 +3031,7 @@ endef endif # SYSTEM_APACHE_COMMONS -ifeq ($(SYSTEM_JFREEREPORT),YES) +ifneq ($(SYSTEM_JFREEREPORT),) define gb_Jar__use_flow-engine $(call gb_Jar_use_system_jar,$(1),$(JFREEREPORT_JAR)) diff --git a/configure.ac b/configure.ac index e16508a13c8f..ce2caf2a518a 100644 --- a/configure.ac +++ b/configure.ac @@ -10521,7 +10521,7 @@ if test $_os != Android -a $_os != iOS -a \( -z "$enable_pdfimport" -o "$enable_ AC_MSG_CHECKING([which PDF import backend to use]) if test "$with_system_poppler" = "yes"; then AC_MSG_RESULT([external]) - SYSTEM_POPPLER=YES + SYSTEM_POPPLER=TRUE PKG_CHECK_MODULES( POPPLER, poppler >= 0.8.0 ) AC_LANG_PUSH([C++]) save_CXXFLAGS=$CXXFLAGS @@ -10537,7 +10537,7 @@ if test $_os != Android -a $_os != iOS -a \( -z "$enable_pdfimport" -o "$enable_ POPPLER_CFLAGS=$(printf '%s' "$POPPLER_CFLAGS" | sed -e "s/-I/${ISYSTEM?}/g") else AC_MSG_RESULT([internal]) - SYSTEM_POPPLER=NO + SYSTEM_POPPLER= BUILD_TYPE="$BUILD_TYPE POPPLER" fi else @@ -10569,7 +10569,7 @@ if test "$enable_report_builder" != "no" -a "$with_java" != "no"; then ENABLE_REPORTBUILDER=TRUE AC_MSG_CHECKING([which jfreereport libs to use]) if test "$with_system_jfreereport" = "yes"; then - SYSTEM_JFREEREPORT=YES + SYSTEM_JFREEREPORT=TRUE AC_MSG_RESULT([external]) if test -z $SAC_JAR; then SAC_JAR=/usr/share/java/sac.jar @@ -10729,13 +10729,13 @@ if test "$enable_report_builder" != "no" -a "$with_java" != "no"; then else AC_MSG_RESULT([internal]) - SYSTEM_JFREEREPORT=NO + SYSTEM_JFREEREPORT= BUILD_TYPE="$BUILD_TYPE JFREEREPORT" fi else AC_MSG_RESULT([no]) ENABLE_REPORTBUILDER= - SYSTEM_JFREEREPORT=NO + SYSTEM_JFREEREPORT= fi AC_SUBST(ENABLE_REPORTBUILDER) AC_SUBST(SYSTEM_JFREEREPORT) @@ -12670,7 +12670,7 @@ if test "$enable_mpl_subset" = "yes"; then AC_MSG_ERROR([need to --disable-ext-mariadb-connector - mariadb/mysql support.]) fi if test -n "$ENABLE_PDFIMPORT"; then - if test "x$SYSTEM_POPPLER" != "xNO"; then + if test "x$SYSTEM_POPPLER" != "x"; then AC_MSG_ERROR([need to disable PDF import via poppler or use system library]) fi fi diff --git a/external/poppler/Module_poppler.mk b/external/poppler/Module_poppler.mk index 910145a138f0..357bc6dd365e 100644 --- a/external/poppler/Module_poppler.mk +++ b/external/poppler/Module_poppler.mk @@ -9,7 +9,7 @@ $(eval $(call gb_Module_Module,poppler)) -ifeq ($(SYSTEM_POPPLER),NO) +ifeq ($(SYSTEM_POPPLER),) $(eval $(call gb_Module_add_targets,poppler,\ ExternalProject_poppler \ diff --git a/scp2/InstallModule_ooo.mk b/scp2/InstallModule_ooo.mk index 9299aedf268e..af0a262ea912 100644 --- a/scp2/InstallModule_ooo.mk +++ b/scp2/InstallModule_ooo.mk @@ -8,7 +8,7 @@ # ifeq ($(ENABLE_REPORTBUILDER),TRUE) -ifneq ($(SYSTEM_JFREEREPORT),YES) +ifeq ($(SYSTEM_JFREEREPORT),) include $(SRCDIR)/external/jfreereport/version.mk endif endif @@ -134,7 +134,7 @@ $(eval $(call gb_InstallModule_add_defs,scp2/ooo,\ )) endif -ifneq ($(SYSTEM_JFREEREPORT),YES) +ifeq ($(SYSTEM_JFREEREPORT),) $(eval $(call gb_InstallModule_add_defs,scp2/ooo,\ -DFLUTE_VERSION=$(FLUTE_VERSION) \ |