diff options
author | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2019-03-06 22:06:35 -0500 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2019-03-07 11:43:25 +0100 |
commit | 0d8c670797f6becc584cf2eca4f414df7a3d0d85 (patch) | |
tree | a197ba053e698bc398b16509b2bddc726770c276 /sd | |
parent | cac705fe8ef6deaf808f04e6112dd21666e501a7 (diff) |
build: support disabling poppler
This adds --enable-poppler configure option.
Poppler can be enabled/disabled by setting this
parameter to yes or no.
Change-Id: I42ba2d27de7b5014d28523394310616d20073b71
Reviewed-on: https://gerrit.libreoffice.org/68602
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/68842
Tested-by: Jenkins
Diffstat (limited to 'sd')
-rw-r--r-- | sd/CppunitTest_sd_activex_controls_tests.mk | 2 | ||||
-rw-r--r-- | sd/CppunitTest_sd_import_tests.mk | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/CppunitTest_sd_activex_controls_tests.mk b/sd/CppunitTest_sd_activex_controls_tests.mk index 0f8faf14c0c7..3a50ba709049 100644 --- a/sd/CppunitTest_sd_activex_controls_tests.mk +++ b/sd/CppunitTest_sd_activex_controls_tests.mk @@ -89,7 +89,7 @@ $(eval $(call gb_CppunitTest_use_components,sd_activex_controls_tests,\ sd/util/sd \ sd/util/sdfilt \ sd/util/sdd \ - $(if $(ENABLE_PDFIMPORT),sdext/source/pdfimport/pdfimport) \ + $(if $(ENABLE_POPPLER),sdext/source/pdfimport/pdfimport) \ sfx2/util/sfx \ sot/util/sot \ svl/source/fsstor/fsstorage \ diff --git a/sd/CppunitTest_sd_import_tests.mk b/sd/CppunitTest_sd_import_tests.mk index ca5fa508bf06..20828e3bf380 100644 --- a/sd/CppunitTest_sd_import_tests.mk +++ b/sd/CppunitTest_sd_import_tests.mk @@ -93,7 +93,7 @@ $(eval $(call gb_CppunitTest_use_components,sd_import_tests,\ sd/util/sd \ sd/util/sdfilt \ sd/util/sdd \ - $(if $(ENABLE_PDFIMPORT),sdext/source/pdfimport/pdfimport) \ + $(if $(ENABLE_POPPLER),sdext/source/pdfimport/pdfimport) \ sfx2/util/sfx \ sot/util/sot \ svl/source/fsstor/fsstorage \ @@ -122,7 +122,7 @@ $(eval $(call gb_CppunitTest_use_packages,sd_import_tests,\ oox_customshapes \ )) -ifneq ($(ENABLE_PDFIMPORT),) +ifneq ($(ENABLE_POPPLER),) $(eval $(call gb_CppunitTest_use_executable,sd_import_tests,xpdfimport)) endif |