summaryrefslogtreecommitdiff
path: root/RepositoryExternal.mk
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-08-17 12:59:51 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2022-08-17 16:59:14 +0200
commit938c899831bd5b165b2b7db3945867a1ce155483 (patch)
treee14b2786b1cd4336b1e3a71d7f1d6b23beab5f77 /RepositoryExternal.mk
parent4d78ed5c00b9c3c59ed28d24c28fd00e0f3a7657 (diff)
tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool"
This commit reverts 3749d9af3745c0eaff7239e379578e4e2af89e9d which removes the dependency on the external library cuckoo Without using cuckoo the same file in tdf#130795 takes real 0m4,892s user 0m5,298s sys 0m0,449s With it, it takes real 0m4,914s user 0m5,276s sys 0m0,444s pretty much the same time Change-Id: I4cc9000ac5bf26de22bb9835283ae8d5b3230196 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138435 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'RepositoryExternal.mk')
-rw-r--r--RepositoryExternal.mk32
1 files changed, 0 insertions, 32 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 938fc6bf761f..30463ee56beb 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -4279,36 +4279,4 @@ endif # ENABLE_ZXING
endif # SYSTEM_ZXING
-
-
-ifneq ($(SYSTEM_CUCKOO),)
-
-gb_ExternalProject__use_cuckoo_headers :=
-
-define gb_LinkTarget__use_cuckoo_headers
-$(call gb_LinkTarget_set_include,$(1),\
- $$(INCLUDE) \
-)
-
-endef
-
-else # !SYSTEM_CUCKOO
-
-define gb_ExternalProject__use_cuckoo_headers
-$(call gb_ExternalProject_use_unpacked,$(1),cuckoo)
-
-endef
-
-define gb_LinkTarget__use_cuckoo_headers
-$(call gb_LinkTarget_use_unpacked,$(1),cuckoo)
-$(call gb_LinkTarget_set_include,$(1),\
- -I$(call gb_UnpackedTarball_get_dir,cuckoo) \
- $$(INCLUDE) \
-)
-
-endef
-
-endif # SYSTEM_CUCKOO
-
-
# vim: set noet sw=4 ts=4: