tdf#74664 : Compute the phase correctly using atan2
[LibreOffice.git] / RepositoryExternal.mk
blob3c9be8755848cc39c935b27446f18cfd850fdc48
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 # This file incorporates work covered by the following license notice:
11 # Licensed to the Apache Software Foundation (ASF) under one or more
12 # contributor license agreements. See the NOTICE file distributed
13 # with this work for additional information regarding copyright
14 # ownership. The ASF licenses this file to you under the Apache
15 # License, Version 2.0 (the "License"); you may not use this file
16 # except in compliance with the License. You may obtain a copy of
17 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 # this file describes all the external libraries
21 # depending on the configure options these may be taken from the system,
22 # or the internal/bundled copy may be built.
24 # for every external, a function gb_LinkTarget__use_FOO is defined,
25 # once for the system case, once for the internal case.
27 # in the system case, no libraries should be registered, but the target-local
28 # variable LIBS should be set to FOO_LIBS, and INCLUDES to FOO_CFLAGS.
31 ifeq ($(CPUNAME),X86_64)
32 wnt_arch_subdir_optional=x64/
33 wnt_arch_subdir_mandatory=x64
34 else ifeq ($(CPUNAME),INTEL)
35 wnt_arch_subdir_mandatory=Win32
36 endif
38 # External headers
40 ifneq ($(SYSTEM_ODBC_HEADERS),)
42 define gb_LinkTarget__use_odbc_headers
43 $(call gb_LinkTarget_add_defs,$(1),\
44 -DSYSTEM_ODBC_HEADERS \
47 endef
49 else # !SYSTEM_ODBC_HEADERS
51 define gb_LinkTarget__use_odbc_headers
52 $(call gb_LinkTarget_set_include,$(1),\
53 -I$(SRCDIR)/external/unixODBC/inc \
54 $$(INCLUDE) \
57 endef
59 endif # SYSTEM_ODBC_HEADERS
61 ifneq ($(SYSTEM_MDDS),)
63 gb_ExternalProject__use_mdds_headers :=
65 define gb_LinkTarget__use_mdds_headers
66 $(call gb_LinkTarget_set_include,$(1),\
67 $(MDDS_CFLAGS) \
68 $$(INCLUDE) \
71 endef
73 else # !SYSTEM_MDDS
75 define gb_ExternalProject__use_mdds_headers
76 $(call gb_ExternalProject_use_unpacked,$(1),mdds)
78 endef
80 define gb_LinkTarget__use_mdds_headers
81 $(call gb_LinkTarget_use_unpacked,$(1),mdds)
82 $(call gb_LinkTarget_set_include,$(1),\
83 $(MDDS_CFLAGS) \
84 $$(INCLUDE) \
87 endef
89 endif # SYSTEM_MDDS
91 ifneq ($(SYSTEM_GLM),)
93 gb_LinkTarget__use_glm_headers :=
94 gb_ExternalProject__use_glm_headers :=
96 else
98 define gb_LinkTarget__use_glm_headers
99 $(call gb_LinkTarget_use_unpacked,$(1),glm)
100 $(call gb_LinkTarget_set_include,$(1),\
101 $(GLM_CFLAGS) \
102 $$(INCLUDE) \
105 endef
107 define gb_ExternalProject__use_glm_headers
108 $(call gb_ExternalProject_use_unpacked,$(1),glm)
110 endef
112 endif
114 ifeq (SANE,$(filter SANE,$(BUILD_TYPE)))
116 define gb_LinkTarget__use_sane_headers
117 $(call gb_LinkTarget_set_include,$(1),\
118 $(if $(filter WNT,$(OS)), \
119 -I$(call gb_UnpackedTarball_get_dir,twain_dsm/pub/include), \
120 -I$(SRCDIR)/external/sane/inc) \
121 $$(INCLUDE) \
124 ifeq ($(OS),WNT)
125 $(call gb_LinkTarget_use_unpacked,$(1),twain_dsm)
126 endif
128 endef
130 else
132 gb_LinkTarget__use_sane_headers :=
134 endif
136 ifneq ($(SYSTEM_BLUEZ),)
138 gb_LinkTarget__use_bluez_bluetooth_headers :=
140 else # !SYSTEM_BLUEZ
142 define gb_LinkTarget__use_bluez_bluetooth_headers
143 $(call gb_LinkTarget_set_include,$(1),\
144 -I$(SRCDIR)/external/bluez_bluetooth/inc \
145 $$(INCLUDE) \
148 endef
150 endif # SYSTEM_BLUEZ
152 # External libraries
154 ifneq ($(SYSTEM_CPPUNIT),)
156 define gb_LinkTarget__use_cppunit
157 $(call gb_LinkTarget_set_include,$(1),\
158 $$(INCLUDE) \
159 $(CPPUNIT_CFLAGS) \
162 $(call gb_LinkTarget_add_libs,$(1),\
163 $(CPPUNIT_LIBS) \
166 endef
168 else # !SYSTEM_CPPUNIT
170 define gb_LinkTarget__use_cppunit
171 $(call gb_LinkTarget_use_external_project,$(1),cppunit, full)
173 $(call gb_LinkTarget_set_include,$(1),\
174 -I$(call gb_UnpackedTarball_get_dir,cppunit/include)\
175 $$(INCLUDE) \
178 ifeq ($(COM),MSC)
179 $(call gb_LinkTarget_add_libs,$(1),\
180 $(call gb_UnpackedTarball_get_dir,cppunit)/src/cppunit/$(if $(MSVC_USE_DEBUG_RUNTIME),DebugDll/cppunitd_dll.lib,ReleaseDll/cppunit_dll.lib) \
182 else
183 $(call gb_LinkTarget_add_libs,$(1),\
184 -L$(call gb_UnpackedTarball_get_dir,cppunit)/src/cppunit/.libs -lcppunit \
186 endif
188 endef
190 endif # SYSTEM_CPPUNIT
192 ifneq ($(SYSTEM_EPOXY),)
194 define gb_LinkTarget__use_epoxy
195 $(call gb_LinkTarget_set_include,$(1),\
196 $$(INCLUDE) \
197 $(EPOXY_CFLAGS) \
199 $(call gb_LinkTarget_add_libs,$(1),$(EPOXY_LIBS))
201 endef
203 gb_ExternalProject__use_epoxy :=
205 else # !SYSTEM_EPOXY
207 define gb_LinkTarget__use_epoxy
208 $(call gb_LinkTarget_set_include,$(1),\
209 -I$(call gb_UnpackedTarball_get_dir,epoxy/include) \
210 $$(INCLUDE) \
213 $(call gb_LinkTarget_use_libraries,$(1),\
214 epoxy \
217 endef
219 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
220 epoxy \
223 define gb_ExternalProject__use_epoxy
224 $(call gb_ExternalProject_use_external_project,$(1),epoxy)
226 endef
228 endif # SYSTEM_EPOXY
230 define gb_LinkTarget__use_iconv
231 ifeq ($(COM),MSC)
232 $(call gb_LinkTarget_add_libs,$(1),libiconv.lib)
233 else
234 $(call gb_LinkTarget_add_libs,$(1),-liconv)
235 endif
236 endef
238 ifneq ($(SYSTEM_MARIADB_CONNECTOR_C),)
240 define gb_LinkTarget__use_mariadb-connector-c
241 $(call gb_LinkTarget_set_include,$(1),\
242 $$(INCLUDE) \
243 $(MARIADB_CFLAGS) \
245 $(call gb_LinkTarget_add_libs,$(1),$(MARIADB_LIBS))
247 endef
248 gb_ExternalProject__use_mariadb-connector-c :=
250 else # !SYSTEM_MARIADB_CONNECTOR_C
252 define gb_LinkTarget__use_mariadb-connector-c
253 $(call gb_LinkTarget_set_include,$(1),\
254 $$(INCLUDE) \
255 $(MARIADB_CFLAGS) \
257 $(call gb_LinkTarget_use_static_libraries,$(1),\
258 mariadb-connector-c \
260 ifeq ($(OS),MACOSX)
261 $(call gb_LinkTarget_add_libs,$(1),\
262 -liconv \
264 endif
266 endef
267 define gb_ExternalProject__use_mariadb-connector-c
268 $(call gb_ExternalProject_use_static_libraries,$(1),mariadb-connector-c)
270 endef
272 endif # SYSTEM_MARIADB_CONNECTOR_C
275 ifneq ($(SYSTEM_MARIADB_CONNECTOR_C),)
277 define gb_LinkTarget__use_mysql
279 $(call gb_LinkTarget_add_defs,$(1),\
280 -DSYSTEM_MARIADB \
283 $(call gb_LinkTarget_add_libs,$(1),\
284 $(MARIADB_LIBS) \
287 $(call gb_LinkTarget_set_include,$(1),\
288 $(MARIADB_CFLAGS) \
289 $$(INCLUDE) \
291 endef
293 else
295 define gb_LinkTarget__use_mysql
297 $(call gb_LinkTarget_set_include,$(1),\
298 $$(INCLUDE) \
301 endef
303 endif
305 ifneq ($(SYSTEM_ZLIB),)
307 define gb_LinkTarget__use_zlib
308 $(call gb_LinkTarget_add_defs,$(1),\
309 -DSYSTEM_ZLIB \
311 $(call gb_LinkTarget_add_libs,$(1),-lz)
313 endef
315 # nothing on system
316 define gb_LinkTarget__use_zlib_x64
318 endef
320 gb_ExternalProject__use_zlib :=
322 else # !SYSTEM_ZLIB
324 define gb_LinkTarget__use_zlib_multiarch
325 $(if $(2),,$(call gb_Output_error,gb_LinkTarget__use_zlib_multiarch needs two arguments))
327 $(call gb_LinkTarget_set_include,$(1),\
328 $(ZLIB_CFLAGS) \
329 $$(INCLUDE) \
332 $(call gb_LinkTarget_use_static_libraries,$(1),\
333 $(2) \
336 endef
338 define gb_LinkTarget__use_zlib
339 $(call gb_LinkTarget__use_zlib_multiarch,$(1),zlib)
341 endef
343 define gb_LinkTarget__use_zlib_x64
344 $(call gb_LinkTarget__use_zlib_multiarch,$(1),zlib_x64)
346 endef
348 define gb_ExternalProject__use_zlib
349 $(call gb_ExternalProject_use_static_libraries,$(1),zlib)
351 endef
353 endif # SYSTEM_ZLIB
356 ifneq ($(SYSTEM_LIBJPEG),)
358 define gb_LinkTarget__use_libjpeg
359 $(call gb_LinkTarget_add_libs,$(1),$(LIBJPEG_LIBS))
360 $(call gb_LinkTarget_set_ldflags,$(1),\
361 $$(filter-out -L/usr/lib/jvm%,$$(T_LDFLAGS)) \
364 endef
366 gb_ExternalProject__use_libjpeg :=
368 else
370 define gb_LinkTarget__use_libjpeg
371 $(call gb_LinkTarget_set_include,$(1),\
372 $(LIBJPEG_CFLAGS) \
373 $$(INCLUDE) \
375 $(call gb_LinkTarget_add_libs,$(1),$(LIBJPEG_LIBS))
376 $(call gb_LinkTarget_use_external_project,$(1),libjpeg-turbo,full)
378 endef
380 define gb_ExternalProject__use_libjpeg
381 $(call gb_ExternalProject_use_external_project,$(1),libjpeg-turbo)
383 endef
385 endif # SYSTEM_LIBJPEG
387 ifneq ($(SYSTEM_MYTHES),)
389 define gb_LinkTarget__use_mythes
390 $(call gb_LinkTarget_set_include,$(1),\
391 $$(INCLUDE) \
392 $(MYTHES_CFLAGS) \
394 $(call gb_LinkTarget_add_libs,$(1),$(MYTHES_LIBS))
396 endef
398 else # !SYSTEM_MYTHES
400 define gb_LinkTarget__use_mythes
401 $(call gb_LinkTarget_set_include,$(1),\
402 -I$(call gb_UnpackedTarball_get_dir,mythes) \
403 $$(INCLUDE) \
406 ifeq ($(COM),MSC)
407 $(call gb_LinkTarget_use_static_libraries,$(1),\
408 mythes \
410 else
411 $(call gb_LinkTarget_add_libs,$(1),$(MYTHES_LIBS))
412 $(call gb_LinkTarget_use_external_project,$(1),mythes)
413 endif
415 endef
417 endif # SYSTEM_MYTHES
420 ifneq ($(SYSTEM_EXPAT),)
422 define gb_LinkTarget__use_expat_impl
423 $(if $(2),,$(error gb_LinkTarget__use_expat_impl needs additional parameter))
425 $(call gb_LinkTarget_add_defs,$(1),\
426 -DSYSTEM_EXPAT \
429 $(call gb_LinkTarget_add_libs,$(1),-lexpat)
431 endef
433 gb_ExternalProject__use_expat :=
435 else # !SYSTEM_EXPAT
437 define gb_LinkTarget__use_expat_impl
438 $(if $(2),,$(error gb_LinkTarget__use_expat_impl needs additional parameter))
440 $(call gb_LinkTarget_set_include,$(1),\
441 -I$(call gb_UnpackedTarball_get_dir,expat)/lib \
442 $$(INCLUDE) \
445 $(call gb_LinkTarget_use_static_libraries,$(1),\
446 $(2) \
449 endef
451 define gb_ExternalProject__use_expat
452 $(call gb_ExternalProject_use_static_libraries,$(1),expat)
454 endef
456 endif # SYSTEM_EXPAT
458 define gb_LinkTarget__use_expat
459 $(call gb_LinkTarget__use_expat_impl,$(1),expat)
461 endef
463 define gb_LinkTarget__use_expat_x64
464 $(call gb_LinkTarget__use_expat_impl,$(1),expat_x64)
466 endef
468 ifneq ($(SYSTEM_HYPH),)
470 define gb_LinkTarget__use_hyphen
471 $(call gb_LinkTarget_add_libs,$(1),$(HYPHEN_LIB))
473 endef
475 else # !SYSTEM_HYPH
477 define gb_LinkTarget__use_hyphen
478 $(call gb_LinkTarget_use_unpacked,$(1),hyphen)
479 $(call gb_LinkTarget_set_include,$(1),\
480 -I$(call gb_UnpackedTarball_get_dir,hyphen)\
481 $$(INCLUDE) \
484 ifeq ($(COM),MSC)
485 $(call gb_LinkTarget_use_static_libraries,$(1),\
486 hyphen \
488 else
489 $(call gb_LinkTarget_add_libs,$(1),$(HYPHEN_LIB))
490 $(call gb_LinkTarget_use_external_project,$(1),hyphen)
491 endif
493 endef
495 endif # SYSTEM_HYPH
497 ifneq ($(SYSTEM_HUNSPELL),)
499 define gb_LinkTarget__use_hunspell
500 $(call gb_LinkTarget_set_include,$(1),\
501 $$(INCLUDE) \
502 $(HUNSPELL_CFLAGS) \
504 $(call gb_LinkTarget_add_libs,$(1),$(HUNSPELL_LIBS))
506 endef
508 gb_ExternalProject__use_hunspell :=
510 else # !SYSTEM_HUNSPELL
512 define gb_LinkTarget__use_hunspell
513 $(call gb_LinkTarget_add_defs,$(1),\
514 -DHUNSPELL_STATIC \
516 $(call gb_LinkTarget_use_unpacked,$(1),hunspell)
517 $(call gb_LinkTarget_set_include,$(1),\
518 -I$(call gb_UnpackedTarball_get_dir,hunspell/src/hunspell)\
519 $$(INCLUDE) \
522 ifeq ($(COM),MSC)
523 $(call gb_LinkTarget_use_static_libraries,$(1),\
524 hunspell \
526 else
527 $(call gb_LinkTarget_add_libs,$(1),$(HUNSPELL_LIBS))
528 $(call gb_LinkTarget_use_external_project,$(1),hunspell)
529 endif
531 endef
533 define gb_ExternalProject__use_hunspell
534 $(call gb_ExternalProject_use_external_project,$(1),hunspell)
536 endef
538 endif # SYSTEM_HUNSPELL
541 ifneq ($(SYSTEM_BOOST),)
543 define gb_LinkTarget__use_boost_lib
544 $(call gb_LinkTarget_set_include,$(1),\
545 $$(INCLUDE) \
546 $(BOOST_CPPFLAGS) \
549 $(call gb_LinkTarget_add_ldflags,$(1),\
550 $(BOOST_LDFLAGS) \
553 $(call gb_LinkTarget_add_libs,$(1),$(2))
555 endef
557 define gb_LinkTarget__use_boost_locale
558 $(call gb_LinkTarget__use_boost_lib,$(1),$(BOOST_LOCALE_LIB))
560 endef
562 define gb_LinkTarget__use_boost_date_time
563 $(call gb_LinkTarget__use_boost_lib,$(1),$(BOOST_DATE_TIME_LIB))
565 endef
567 define gb_LinkTarget__use_boost_filesystem
568 $(call gb_LinkTarget__use_boost_lib,$(1),$(BOOST_FILESYSTEM_LIB))
570 endef
572 gb_ExternalProject__use_boost_filesystem :=
574 define gb_LinkTarget__use_boost_iostreams
575 $(call gb_LinkTarget__use_boost_lib,$(1),$(BOOST_IOSTREAMS_LIB))
577 endef
579 gb_ExternalProject__use_boost_iostreams :=
581 define gb_LinkTarget__use_boost_system
582 $(call gb_LinkTarget__use_boost_lib,$(1),$(BOOST_SYSTEM_LIB))
584 endef
586 gb_ExternalProject__use_boost_system :=
588 define gb_LinkTarget__use_boost_headers
589 $(call gb_LinkTarget_set_include,$(1),\
590 $$(INCLUDE) \
591 $(BOOST_CPPFLAGS) \
594 endef
596 gb_ExternalProject__use_boost_headers:=
598 else # !SYSTEM_BOOST
600 define gb_LinkTarget__use_boost_lib
601 $(call gb_LinkTarget_add_defs,$(1),\
602 -DBOOST_ALL_NO_LIB \
605 $(call gb_LinkTarget_use_static_libraries,$(1),$(2))
607 endef
609 define gb_LinkTarget__use_boost_locale
610 $(call gb_LinkTarget__use_boost_lib,$(1),boost_locale)
611 $(call gb_LinkTarget_add_libs,$(1),\
612 $(if $(filter $(OS),MACOSX),-liconv) \
615 endef
617 define gb_LinkTarget__use_boost_date_time
618 $(call gb_LinkTarget__use_boost_lib,$(1),boost_date_time)
620 endef
622 define gb_LinkTarget__use_boost_filesystem
623 $(call gb_LinkTarget__use_boost_lib,$(1),boost_filesystem)
625 endef
627 define gb_ExternalProject__use_boost_filesystem
628 $(call gb_ExternalProject_use_static_libraries,$(1),boost_filesystem)
629 endef
631 define gb_LinkTarget__use_boost_iostreams
632 $(call gb_LinkTarget__use_boost_lib,$(1),boost_iostreams)
634 endef
636 define gb_ExternalProject__use_boost_iostreams
637 $(call gb_ExternalProject_use_static_libraries,$(1),boost_iostreams)
638 endef
640 define gb_LinkTarget__use_boost_system
641 $(call gb_LinkTarget__use_boost_lib,$(1),boost_system)
643 endef
645 define gb_ExternalProject__use_boost_system
646 $(call gb_ExternalProject_use_static_libraries,$(1),boost_system)
647 endef
649 define gb_LinkTarget__use_boost_headers
650 $(call gb_LinkTarget_use_unpacked,$(1),boost)
651 $(call gb_LinkTarget_set_include,$(1),\
652 $(BOOST_CPPFLAGS) \
653 $$(INCLUDE) \
656 endef
658 define gb_ExternalProject__use_boost_headers
659 $(call gb_ExternalProject_use_unpacked,$(1),boost)
661 endef
663 endif # SYSTEM_BOOST
666 ifneq ($(SYSTEM_LIBCMIS),)
668 define gb_LinkTarget__use_libcmis
669 $(call gb_LinkTarget_set_include,$(1),\
670 $$(INCLUDE) \
671 $(LIBCMIS_CFLAGS) \
673 $(call gb_LinkTarget_add_libs,$(1),$(LIBCMIS_LIBS))
675 endef
677 else # !SYSTEM_LIBCMIS
679 define gb_LinkTarget__use_libcmis
680 $(call gb_LinkTarget_set_include,$(1),\
681 -I$(call gb_UnpackedTarball_get_dir,libcmis)/inc \
682 $$(INCLUDE) \
684 $(call gb_LinkTarget_use_static_libraries,$(1),\
685 libcmis \
688 endef
690 endif # SYSTEM_LIBCMIS
692 ifeq ($(ENABLE_JAVA),TRUE)
694 define gb_LinkTarget__use_jawt
695 $(call gb_LinkTarget_add_libs,$(1),\
696 $(JAWTLIB) \
699 endef
701 else # !ENABLE_JAVA
703 gb_LinkTarget__use_jawt :=
705 endif # ENABLE_JAVA
707 ifneq ($(SYSTEM_LIBATOMIC_OPS),)
709 define gb_LinkTarget__use_libatomic_ops
710 $(call gb_LinkTarget_set_include,$(1),\
711 $$(INCLUDE) \
712 $(LIBATOMIC_OPS_CFLAGS) \
714 $(call gb_LinkTarget_add_libs,$(1), $(LIBATOMIC_OPS_LIBS))
716 endef
717 gb_ExternalProject__use_libatomic_ops :=
719 else # !SYSTEM_LIBATOMIC_OPS
721 define gb_LinkTarget__use_libatomic_ops
722 $(call gb_LinkTarget_set_include,$(1),\
723 $(LIBATOMIC_OPS_CFLAGS) \
724 $$(INCLUDE) \
725 $(LIBATOMIC_OPS_CFLAGS) \
727 $(call gb_LinkTarget_use_external_project,$(1),\
728 libatomic_ops \
731 $(call gb_LinkTarget_add_libs,$(1),\
732 -L$(call gb_UnpackedTarball_get_dir,libatomic_ops)/src/lib -latomic_ops \
735 endef
737 define gb_ExternalProject__use_libatomic_ops
738 $(call gb_ExternalProject_use_external_project,$(1),libatomic_ops)
740 endef
742 endif # SYSTEM_LIBATOMIC_OPS
745 ifneq ($(SYSTEM_LIBEXTTEXTCAT),)
747 define gb_LinkTarget__use_libexttextcat
748 $(call gb_LinkTarget_set_include,$(1),\
749 $$(INCLUDE) \
750 $(LIBEXTTEXTCAT_CFLAGS) \
752 $(call gb_LinkTarget_add_defs,$(1),\
753 -DSYSTEM_LIBEXTTEXTCAT \
755 $(call gb_LinkTarget_add_libs,$(1),$(LIBEXTTEXTCAT_LIBS))
757 endef
759 else # !SYSTEM_LIBEXTTEXTCAT
761 define gb_LinkTarget__use_libexttextcat
762 $(call gb_LinkTarget_set_include,$(1),\
763 -I$(call gb_UnpackedTarball_get_dir,libexttextcat/src) \
764 $$(INCLUDE) \
767 ifeq ($(COM),MSC)
768 $(call gb_LinkTarget_use_static_libraries,$(1),\
769 libexttextcat \
771 else
772 $(call gb_LinkTarget_add_libs,$(1),\
773 $(call gb_UnpackedTarball_get_dir,libexttextcat)/src/.libs/libexttextcat-2.0.a\
775 $(call gb_LinkTarget_use_external_project,$(1),libexttextcat)
776 endif
779 endef
781 endif # SYSTEM_LIBEXTTEXTCAT
784 ifneq ($(SYSTEM_LIBNUMBERTEXT),)
786 define gb_LinkTarget__use_libnumbertext
787 $(call gb_LinkTarget_set_include,$(1),\
788 $$(INCLUDE) \
789 $(LIBNUMBERTEXT_CFLAGS) \
791 $(call gb_LinkTarget_add_defs,$(1),\
792 -DSYSTEM_LIBNUMBERTEXT \
794 $(call gb_LinkTarget_add_libs,$(1),$(LIBNUMBERTEXT_LIBS))
796 endef
798 else # !SYSTEM_LIBNUMBERTEXT
800 ifneq ($(ENABLE_LIBNUMBERTEXT),)
802 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
803 libnumbertext_numbertext \
806 define gb_LinkTarget__use_libnumbertext
807 $(call gb_LinkTarget_use_package,$(1),libnumbertext_numbertext)
808 $(call gb_LinkTarget_set_include,$(1),\
809 -I$(call gb_UnpackedTarball_get_dir,libnumbertext/src) \
810 $$(INCLUDE) \
812 $(call gb_LinkTarget_add_defs,$(1),\
813 -DENABLE_LIBNUMBERTEXT \
816 ifeq ($(COM),MSC)
817 $(call gb_LinkTarget_use_static_libraries,$(1),\
818 libnumbertext \
820 else
822 $(call gb_LinkTarget_add_libs,$(1),\
823 $(call gb_UnpackedTarball_get_dir,libnumbertext)/src/.libs/libnumbertext-1.0.a\
825 $(call gb_LinkTarget_use_external_project,$(1),libnumbertext,full)
827 endif
829 endef
831 else # !ENABLE_LIBNUMBERTEXT
833 define gb_LinkTarget__use_libnumbertext
834 endef
836 endif # ENABLE_LIBNUMBERTEXT
838 endif # SYSTEM_LIBNUMBERTEXT
841 ifneq ($(SYSTEM_LIBXML),)
843 define gb_LinkTarget__use_libxml2
844 $(call gb_LinkTarget_add_defs,$(1),\
845 -DSYSTEM_LIBXML \
847 $(call gb_LinkTarget_set_include,$(1),\
848 $$(INCLUDE) \
849 $(LIBXML_CFLAGS) \
851 $(call gb_LinkTarget_add_libs,$(1),$(LIBXML_LIBS))
853 endef
854 gb_ExternalProject__use_libxml2:=
856 else # !SYSTEM_LIBXML
858 $(eval $(call gb_Helper_register_packages_for_install,ure,\
859 libxml2 \
862 define gb_LinkTarget__use_libxml2
863 $(call gb_LinkTarget_use_package,$(1),libxml2)
864 $(call gb_LinkTarget_set_include,$(1),\
865 $$(INCLUDE) \
866 $(LIBXML_CFLAGS) \
869 $(call gb_LinkTarget_add_libs,$(1),\
870 $(LIBXML_LIBS) \
873 ifeq ($(COM),MSC)
874 $(call gb_LinkTarget_use_external,$(1),icu_headers)
875 endif
877 endef
878 define gb_ExternalProject__use_libxml2
879 $(call gb_ExternalProject_use_package,$(1),libxml2)
881 ifeq ($(COM),MSC)
882 $(call gb_ExternalProject_use_packages,$(1),icu icu_ure)
883 endif
885 endef
887 endif # SYSTEM_LIBXML
890 ifneq ($(SYSTEM_LIBXSLT),)
892 define gb_LinkTarget__use_libxslt
893 $(call gb_LinkTarget_set_include,$(1),\
894 $$(INCLUDE) \
895 $(LIBXSLT_CFLAGS) \
897 $(call gb_LinkTarget_add_libs,$(1),$(LIBXSLT_LIBS))
899 endef
901 define gb_LinkTarget__use_libexslt
902 $(call gb_LinkTarget_set_include,$(1),\
903 $$(INCLUDE) \
904 $(LIBEXSLT_CFLAGS) \
907 $(call gb_LinkTarget_add_libs,$(1),$(LIBEXSLT_LIBS))
909 endef
911 else # !SYSTEM_LIBXSLT
913 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
914 libxslt \
917 define gb_LinkTarget__use_libxslt
918 $(call gb_LinkTarget_use_package,$(1),libxslt)
919 $(call gb_LinkTarget_set_include,$(1),\
920 $$(INCLUDE) \
921 -I$(call gb_UnpackedTarball_get_dir,libxslt) \
924 ifeq ($(COM),MSC)
925 $(call gb_LinkTarget_add_libs,$(1),\
926 $(call gb_UnpackedTarball_get_dir,libxslt)/win32/bin.msvc/libxslt.lib \
928 else
929 $(call gb_LinkTarget_add_libs,$(1),\
930 -L$(call gb_UnpackedTarball_get_dir,libxslt)/libxslt/.libs -lxslt \
932 endif
934 endef
936 define gb_LinkTarget__use_libexslt
937 $(call gb_LinkTarget_use_package,$(1),libxslt)
938 $(call gb_LinkTarget_set_include,$(1),\
939 $$(INCLUDE) \
940 -I$(call gb_UnpackedTarball_get_dir,libxslt) \
943 ifeq ($(COM),MSC)
944 $(call gb_LinkTarget_add_libs,$(1),\
945 $(call gb_UnpackedTarball_get_dir,libxslt)/win32/bin.msvc/libexslt.lib \
947 else
948 $(call gb_LinkTarget_add_libs,$(1),\
949 -L$(call gb_UnpackedTarball_get_dir,libxslt)/libexslt/.libs -lexslt \
951 endif
953 endef
955 endif # SYSTEM_LIBXSLT
958 ifneq ($(SYSTEM_XMLSEC),)
960 define gb_LinkTarget__use_xmlsec
961 $(call gb_LinkTarget_add_defs,$(1),\
962 -DSYSTEM_XMLSEC \
964 $(call gb_LinkTarget_set_include,$(1),\
965 $$(INCLUDE) \
966 $(XMLSEC_CFLAGS) \
968 $(call gb_LinkTarget_add_libs,$(1),$(XMLSEC_LIBS))
970 endef
972 gb_ExternalProject__use_xmlsec:=
974 else # !SYSTEM_XMLSEC
976 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
977 xmlsec \
980 define gb_LinkTarget__use_xmlsec
982 endef
984 endif # SYSTEM_XMLSEC
986 ifneq ($(SYSTEM_LIBLANGTAG),)
988 define gb_LinkTarget__use_liblangtag
989 $(call gb_LinkTarget_set_include,$(1),\
990 $$(INCLUDE) \
991 $(LIBLANGTAG_CFLAGS) \
994 $(call gb_LinkTarget_add_libs,$(1),$(LIBLANGTAG_LIBS))
996 endef
998 gb_ExternalProject__use_liblangtag :=
1000 else # !SYSTEM_LIBLANGTAG
1002 $(eval $(call gb_Helper_register_packages_for_install,ure,\
1003 liblangtag_data \
1006 ifeq ($(COM),MSC)
1008 define gb_LinkTarget__use_liblangtag
1009 $(call gb_LinkTarget_set_include,$(1),\
1010 $(LIBLANGTAG_CFLAGS) \
1011 $$(INCLUDE) \
1013 $(call gb_LinkTarget_add_libs,$(1),$(LIBLANGTAG_LIBS))
1014 $(call gb_LinkTarget_use_external_project,$(1),liblangtag)
1016 endef
1018 else
1020 $(eval $(call gb_Helper_register_packages_for_install,ure,\
1021 liblangtag \
1024 define gb_LinkTarget__use_liblangtag
1025 $(call gb_LinkTarget_set_include,$(1),\
1026 $(LIBLANGTAG_CFLAGS) \
1027 $$(INCLUDE) \
1029 $(call gb_LinkTarget_add_libs,$(1),$(LIBLANGTAG_LIBS))
1030 $(call gb_LinkTarget_use_package,$(1),liblangtag)
1032 endef
1034 endif # MSC
1036 define gb_ExternalProject__use_liblangtag
1037 $(call gb_ExternalProject_use_external_project,$(1),liblangtag)
1039 endef
1041 endif # SYSTEM_LIBLANGTAG
1044 gb_ExternalProject__use_apr :=
1046 ifeq ($(WITH_WEBDAV),serf)
1048 define gb_LinkTarget__use_apr
1049 $(call gb_LinkTarget_set_include,$(1),\
1050 $$(INCLUDE) \
1051 $(APR_CFLAGS) \
1053 $(call gb_LinkTarget_add_libs,$(1),\
1054 $(APR_LIBS) \
1055 $(if $(filter $(OS),LINUX),-lpthread) \
1056 $(if $(filter $(OS),MACOSX),-liconv) \
1059 ifeq ($(SYSTEM_APR),)
1060 $(call gb_LinkTarget_use_system_win32_libs,$(1),\
1061 mswsock \
1062 rpcrt4 \
1063 shell32 \
1065 $(call gb_LinkTarget_add_defs,$(1),\
1066 -DAPR_DECLARE_STATIC \
1067 -DAPU_DECLARE_STATIC \
1069 $(call gb_LinkTarget_use_external_project,$(1),apr_util)
1070 endif
1072 endef
1074 define gb_ExternalProject__use_apr
1075 ifeq ($(SYSTEM_APR),)
1076 $(call gb_ExternalProject_use_external_project,$(1),apr_util)
1077 endif
1079 endef
1081 define gb_LinkTarget__use_serf
1082 $(call gb_LinkTarget_set_include,$(1),\
1083 $(SERF_CFLAGS) \
1084 $$(INCLUDE) \
1086 $(call gb_LinkTarget_add_libs,$(1),\
1087 $(SERF_LIBS) \
1090 ifeq ($(SYSTEM_SERF),)
1091 $(call gb_LinkTarget_use_external_project,$(1),serf)
1092 endif
1094 endef
1096 else ifeq ($(WITH_WEBDAV),neon)
1098 ifneq ($(SYSTEM_NEON),)
1100 define gb_LinkTarget__use_neon
1101 $(call gb_LinkTarget_add_defs,$(1),\
1102 -DNEON_VERSION=0x$(NEON_VERSION) \
1103 -DSYSTEM_NEON \
1105 $(call gb_LinkTarget_set_include,$(1),\
1106 $$(INCLUDE) \
1107 $(NEON_CFLAGS) \
1110 $(call gb_LinkTarget_add_libs,$(1),$(NEON_LIBS))
1112 endef
1114 else # !SYSTEM_NEON
1116 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
1117 neon \
1120 define gb_LinkTarget__use_neon
1121 $(call gb_LinkTarget_use_unpacked,$(1),neon)
1122 $(call gb_LinkTarget_set_include,$(1),\
1123 -I$(call gb_UnpackedTarball_get_dir,neon/src) \
1124 $$(INCLUDE) \
1126 $(call gb_LinkTarget_use_libraries,$(1),\
1127 neon \
1130 endef
1132 endif # SYSTEM_NEON
1134 endif # WITH_WEBDAV
1136 ifneq ($(SYSTEM_REDLAND),)
1138 define gb_LinkTarget__use_librdf
1139 $(call gb_LinkTarget_add_defs,$(1),\
1140 -DSYSTEM_REDLAND \
1142 $(call gb_LinkTarget_set_include,$(1),\
1143 $$(INCLUDE) \
1144 $(REDLAND_CFLAGS) \
1146 $(call gb_LinkTarget_add_libs,$(1),$(REDLAND_LIBS))
1148 endef
1150 gb_LinkTarget__use_redland_headers:=
1152 gb_LinkTarget__use_raptor_headers:=
1154 gb_LinkTarget__use_rasqal_headers:=
1156 else # !SYSTEM_REDLAND
1158 define gb_LinkTarget__use_redland_headers
1159 $(call gb_LinkTarget_set_include,$(1),\
1160 -I$(call gb_UnpackedTarball_get_dir,redland)/src \
1161 $$(INCLUDE) \
1164 endef
1166 define gb_LinkTarget__use_raptor_headers
1167 $(call gb_LinkTarget_set_include,$(1),\
1168 -I$(call gb_UnpackedTarball_get_dir,raptor)/src \
1169 $$(INCLUDE) \
1172 endef
1174 define gb_LinkTarget__use_rasqal_headers
1175 $(call gb_LinkTarget_set_include,$(1),\
1176 -I$(call gb_UnpackedTarball_get_dir,rasqal)/src \
1177 $$(INCLUDE) \
1180 endef
1182 ifneq ($(OS),ANDROID)
1184 ifeq ($(COM),MSC)
1185 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo, \
1186 raptor2 \
1187 rasqal \
1188 rdf \
1190 else
1191 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
1192 raptor \
1193 rasqal \
1194 redland \
1196 endif
1198 define gb_LinkTarget__use_librdf
1199 ifeq ($(COM),MSC)
1200 $(call gb_LinkTarget_use_libraries,$(1),\
1201 raptor2 \
1202 rdf \
1204 else
1205 $(call gb_LinkTarget_use_packages,$(1),redland raptor rasqal)
1207 $(call gb_LinkTarget_add_libs,$(1),\
1208 -L$(call gb_UnpackedTarball_get_dir,redland)/src/.libs -lrdf \
1209 -L$(call gb_UnpackedTarball_get_dir,raptor)/src/.libs -lraptor2 \
1210 -L$(call gb_UnpackedTarball_get_dir,rasqal)/src/.libs -lrasqal \
1212 endif
1214 endef
1216 else # ANDROID
1218 define gb_LinkTarget__use_librdf
1219 $(call gb_LinkTarget_use_packages,$(1),redland raptor rasqal)
1221 endef
1223 endif # ANDROID
1225 endif # SYSTEM_REDLAND
1228 ifneq ($(USING_X11)$(ENABLE_CAIRO_CANVAS)$(DISABLE_GUI),) # or
1230 ifneq ($(SYSTEM_CAIRO),)
1232 define gb_LinkTarget__use_cairo
1233 $(call gb_LinkTarget_set_include,$(1),\
1234 $$(INCLUDE) \
1235 $(CAIRO_CFLAGS) \
1237 $(call gb_LinkTarget_use_external,$(1),freetype_headers)
1238 $(call gb_LinkTarget_add_libs,$(1),$(CAIRO_LIBS))
1240 endef
1242 else # !SYSTEM_CAIRO
1244 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
1245 cairo \
1246 $(if $(filter $(OS),WNT),,pixman) \
1249 define gb_LinkTarget__use_cairo
1250 $(call gb_LinkTarget_use_package,$(1),cairo)
1251 $(call gb_LinkTarget_use_package,$(1),pixman)
1252 $(call gb_LinkTarget_use_external,$(1),freetype_headers)
1253 $(call gb_LinkTarget_set_include,$(1),\
1254 -I$(call gb_UnpackedTarball_get_dir,cairo) \
1255 -I$(call gb_UnpackedTarball_get_dir,cairo)/src \
1256 $$(INCLUDE) \
1258 $(call gb_LinkTarget_add_libs,$(1),\
1259 -L$(call gb_UnpackedTarball_get_dir,cairo)/src/.libs -lcairo \
1260 $(if $(filter-out MACOSX WNT,$(OS)), \
1261 -L$(call gb_UnpackedTarball_get_dir,pixman)/pixman/.libs -lpixman-1 \
1265 endef
1267 endif # SYSTEM_CAIRO
1269 else ifeq ($(OS),ANDROID)
1271 define gb_LinkTarget__use_cairo
1272 $(call gb_LinkTarget_use_package,$(1),cairo)
1273 $(call gb_LinkTarget_use_package,$(1),pixman)
1274 $(call gb_LinkTarget_use_external,$(1),freetype_headers)
1275 $(call gb_LinkTarget_set_include,$(1),\
1276 -I$(call gb_UnpackedTarball_get_dir,cairo) \
1277 -I$(call gb_UnpackedTarball_get_dir,cairo)/src \
1278 $$(INCLUDE) \
1280 $(call gb_LinkTarget_add_libs,$(1),\
1281 -L$(call gb_UnpackedTarball_get_dir,cairo)/src/.libs -lcairo \
1282 -L$(call gb_UnpackedTarball_get_dir,pixman)/pixman/.libs -lpixman-1 \
1285 endef
1287 endif # CAIRO
1289 ifneq ($(SYSTEM_FREETYPE),)
1291 define gb_LinkTarget__use_freetype_headers
1292 $(call gb_LinkTarget_set_include,$(1),\
1293 $$(INCLUDE) \
1294 $(FREETYPE_CFLAGS) \
1297 endef
1299 gb_ExternalProject__use_freetype :=
1301 else
1303 define gb_LinkTarget__use_freetype_headers
1304 $(call gb_LinkTarget_use_external_project,$(1),freetype)
1305 $(call gb_LinkTarget_set_include,$(1),\
1306 $(FREETYPE_CFLAGS) \
1307 $$(INCLUDE) \
1310 endef
1312 define gb_ExternalProject__use_freetype
1313 $(call gb_ExternalProject_use_external_project,$(1),freetype)
1315 endef
1317 endif # SYSTEM_FREETYPE
1319 define gb_LinkTarget__use_freetype
1320 $(call gb_LinkTarget_use_external,$(1),freetype_headers)
1321 $(call gb_LinkTarget_add_libs,$(1),$(FREETYPE_LIBS))
1323 endef
1325 ifneq ($(SYSTEM_FONTCONFIG),)
1327 define gb_LinkTarget__use_fontconfig
1328 $(call gb_LinkTarget_set_include,$(1),\
1329 $$(INCLUDE) \
1330 $(FONTCONFIG_CFLAGS) \
1333 $(call gb_LinkTarget_add_libs,$(1),$(FONTCONFIG_LIBS))
1335 endef
1337 else
1339 define gb_LinkTarget__use_fontconfig
1340 $(call gb_LinkTarget_use_external_project,$(1),fontconfig)
1341 $(call gb_LinkTarget_set_include,$(1),\
1342 -I$(call gb_UnpackedTarball_get_dir,fontconfig) \
1343 $$(INCLUDE) \
1346 $(call gb_LinkTarget_add_libs,$(1),\
1347 -L$(call gb_UnpackedTarball_get_dir,fontconfig)/src/.libs -lfontconfig \
1350 endef
1352 endif # SYSTEM_FONTCONFIG
1354 ifneq ($(SYSTEM_GRAPHITE),)
1356 define gb_LinkTarget__use_graphite
1357 $(call gb_LinkTarget_set_include,$(1),\
1358 $$(INCLUDE) \
1359 $(GRAPHITE_CFLAGS) \
1361 $(call gb_LinkTarget_add_libs,$(1),$(GRAPHITE_LIBS))
1363 endef
1365 gb_ExternalProject__use_graphite:=
1367 else # !SYSTEM_GRAPHITE
1369 define gb_LinkTarget__use_graphite
1370 $(call gb_LinkTarget_use_unpacked,$(1),graphite)
1371 $(call gb_LinkTarget_set_include,$(1),\
1372 -I$(call gb_UnpackedTarball_get_dir,graphite/include) \
1373 $$(INCLUDE) \
1375 $(call gb_LinkTarget_use_static_libraries,$(1),\
1376 graphite \
1379 endef
1381 define gb_ExternalProject__use_graphite
1382 $(call gb_ExternalProject_use_static_libraries,$(1),\
1383 graphite \
1386 endef
1387 endif # SYSTEM_GRAPHITE
1389 ifneq ($(SYSTEM_ICU),)
1391 gb_LinkTarget__use_icu_headers:=
1392 gb_ExternalProject__use_icu:=
1394 define gb_LinkTarget__use_icudata
1395 $(call gb_LinkTarget_add_libs,$(1),-licudata)
1397 endef
1398 define gb_LinkTarget__use_icui18n
1399 $(call gb_LinkTarget_add_libs,$(1),-licui18n)
1401 endef
1402 define gb_LinkTarget__use_icuuc
1403 $(call gb_LinkTarget_add_libs,$(1),-licuuc)
1405 endef
1407 else # !SYSTEM_ICU
1409 $(eval $(call gb_Helper_register_packages_for_install,ure, \
1410 icu_ure \
1413 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
1414 icu \
1417 ifeq ($(OS)$(DISABLE_DYNLOADING),ANDROID)
1418 gb_ICU_suffix:=lo
1419 else
1420 gb_ICU_suffix:=
1421 endif
1423 define gb_LinkTarget__use_icu_headers
1424 $(call gb_LinkTarget_use_unpacked,$(1),icu)
1425 $(call gb_LinkTarget_set_include,$(1),\
1426 -I$(call gb_UnpackedTarball_get_dir,icu)/source \
1427 -I$(call gb_UnpackedTarball_get_dir,icu)/source/i18n \
1428 -I$(call gb_UnpackedTarball_get_dir,icu)/source/common \
1429 $$(INCLUDE) \
1432 endef
1434 define gb_ExternalProject__use_icu
1435 $(call gb_ExternalProject_use_package,$(1),icu)
1437 endef
1439 # icudata and icui18n is called icudt and icuin when built with MSVC :-/
1440 define gb_LinkTarget__use_icudata
1441 $(call gb_LinkTarget_use_package,$(1),icu_ure)
1443 ifeq ($(OS),WNT)
1444 $(call gb_LinkTarget_add_libs,$(1),\
1445 $(call gb_UnpackedTarball_get_dir,icu)/source/lib/icudt$(if $(MSVC_USE_DEBUG_RUNTIME),d).lib \
1447 else
1448 $(call gb_LinkTarget_add_libs,$(1),\
1449 -L$(call gb_UnpackedTarball_get_dir,icu)/source/lib -licudata$(gb_ICU_suffix) \
1451 endif
1453 endef
1455 define gb_LinkTarget__use_icui18n
1456 $(call gb_LinkTarget_use_package,$(1),icu)
1458 ifeq ($(OS),WNT)
1459 $(call gb_LinkTarget_add_libs,$(1),\
1460 $(call gb_UnpackedTarball_get_dir,icu)/source/lib/icuin$(if $(MSVC_USE_DEBUG_RUNTIME),d).lib \
1462 else
1463 $(call gb_LinkTarget_add_libs,$(1),\
1464 -L$(call gb_UnpackedTarball_get_dir,icu)/source/lib -licui18n$(gb_ICU_suffix) \
1466 endif
1468 endef
1470 define gb_LinkTarget__use_icuuc
1471 $(call gb_LinkTarget_use_package,$(1),icu_ure)
1473 ifeq ($(OS),WNT)
1474 $(call gb_LinkTarget_add_libs,$(1),\
1475 $(call gb_UnpackedTarball_get_dir,icu)/source/lib/icuuc$(if $(MSVC_USE_DEBUG_RUNTIME),d).lib \
1477 else
1478 $(call gb_LinkTarget_add_libs,$(1),\
1479 -L$(call gb_UnpackedTarball_get_dir,icu)/source/lib -licuuc$(gb_ICU_suffix) \
1481 endif
1483 endef
1485 endif # SYSTEM_ICU
1487 ifneq ($(SYSTEM_HARFBUZZ),)
1489 define gb_LinkTarget__use_harfbuzz
1490 $(call gb_LinkTarget_set_include,$(1),\
1491 $$(INCLUDE) \
1492 $(HARFBUZZ_CFLAGS) \
1494 $(call gb_LinkTarget_add_libs,$(1),$(HARFBUZZ_LIBS))
1496 endef
1498 gb_ExternalProject__use_harfbuzz :=
1500 else # SYSTEM_HARFBUZZ != TRUE
1502 define gb_LinkTarget__use_harfbuzz
1503 $(call gb_LinkTarget_set_include,$(1),\
1504 $(HARFBUZZ_CFLAGS) \
1505 $$(INCLUDE) \
1507 $(call gb_LinkTarget_add_libs,$(1),$(HARFBUZZ_LIBS))
1508 $(call gb_LinkTarget_use_external,$(1),icuuc)
1509 $(call gb_LinkTarget_use_external_project,$(1),harfbuzz)
1511 endef
1513 define gb_ExternalProject__use_harfbuzz
1514 $(call gb_ExternalProject_use_external_project,$(1),harfbuzz)
1516 endef
1518 endif # SYSTEM_HARFBUZZ
1520 ifeq ($(DISABLE_OPENSSL),TRUE)
1522 gb_ExternalProject__use_openssl:=
1523 gb_LinkTarget__use_openssl_headers:=
1524 gb_LinkTarget__use_openssl:=
1526 else # !DISABLE_OPENSSL
1528 ifneq ($(SYSTEM_OPENSSL),)
1530 gb_LinkTarget__use_openssl_headers:=
1531 gb_ExternalProject__use_openssl:=
1533 define gb_LinkTarget__use_openssl
1534 $(call gb_LinkTarget_set_include,$(1),\
1535 $$(INCLUDE) \
1536 $(OPENSSL_CFLAGS) \
1538 $(call gb_LinkTarget_add_libs,$(1),$(OPENSSL_LIBS))
1540 endef
1542 else # !SYSTEM_OPENSSL
1544 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
1545 openssl \
1548 define gb_ExternalProject__use_openssl
1549 $(call gb_ExternalProject_use_package,$(1),openssl)
1551 endef
1553 define gb_LinkTarget__use_openssl_headers
1554 $(call gb_LinkTarget_use_external_project,$(1),openssl)
1555 $(call gb_LinkTarget_set_include,$(1),\
1556 -I$(call gb_UnpackedTarball_get_dir,openssl)/include \
1557 $$(INCLUDE) \
1560 endef
1562 define gb_LinkTarget__use_openssl
1563 $(call gb_LinkTarget_use_package,$(1),openssl)
1564 ifeq ($(OS),WNT)
1565 $(call gb_LinkTarget_add_libs,$(1),\
1566 $(call gb_UnpackedTarball_get_dir,openssl)/out32dll/ssleay32.lib \
1567 $(call gb_UnpackedTarball_get_dir,openssl)/out32dll/libeay32.lib \
1569 else
1570 $(call gb_LinkTarget_add_libs,$(1),\
1571 $(call gb_UnpackedTarball_get_dir,openssl)/libssl.a \
1572 $(call gb_UnpackedTarball_get_dir,openssl)/libcrypto.a \
1574 $(call gb_LinkTarget_use_external_project,$(1),openssl)
1575 ifeq ($(OS),SOLARIS)
1576 $(call gb_LinkTarget_add_libs,$(1),\
1577 -lnsl \
1578 -lsocket \
1580 endif
1581 endif
1583 endef
1585 endif # SYSTEM_OPENSSL
1586 endif # DISABLE_OPENSSL
1589 ifeq ($(DISABLE_OPENSSL),TRUE)
1591 define gb_LinkTarget__use_gnutls
1592 $(call gb_LinkTarget_set_include,$(1),\
1593 $$(INCLUDE) \
1594 $(GNUTLS_CFLAGS) \
1597 $(call gb_LinkTarget_add_defs,$(1),\
1598 -DDISABLE_OPENSSL \
1601 $(call gb_LinkTarget_add_libs,$(1),$(GNUTLS_LIBS))
1603 endef
1605 define gb_LinkTarget__use_libgcrypt
1606 $(call gb_LinkTarget_set_include,$(1),\
1607 $$(INCLUDE) \
1608 $(LIBGCRYPT_CFLAGS) \
1611 $(call gb_LinkTarget_add_libs,$(1),$(LIBGCRYPT_LIBS))
1613 endef
1615 else # !DISABLE_OPENSSL
1617 gb_LinkTarget__use_gnutls:=
1618 gb_LinkTarget__use_libgcrypt:=
1620 endif # DISABLE_OPENSSL
1623 ifneq ($(SYSTEM_CDR),)
1625 define gb_LinkTarget__use_cdr
1626 $(call gb_LinkTarget_set_include,$(1),\
1627 $$(INCLUDE) \
1628 $(CDR_CFLAGS) \
1630 $(call gb_LinkTarget_add_libs,$(1),$(CDR_LIBS))
1632 endef
1634 else # !SYSTEM_CDR
1636 define gb_LinkTarget__use_cdr
1637 $(call gb_LinkTarget_set_include,$(1),\
1638 -I$(call gb_UnpackedTarball_get_dir,libcdr)/inc \
1639 $$(INCLUDE) \
1641 $(call gb_LinkTarget_add_libs,$(1),\
1642 $(call gb_UnpackedTarball_get_dir,libcdr)/src/lib/.libs/libcdr-0.1$(gb_StaticLibrary_PLAINEXT) \
1644 $(call gb_LinkTarget_use_external_project,$(1),libcdr)
1645 endef
1647 endif # SYSTEM_CDR
1650 ifneq ($(SYSTEM_EBOOK),)
1652 define gb_LinkTarget__use_ebook
1653 $(call gb_LinkTarget_set_include,$(1),\
1654 $$(INCLUDE) \
1655 $(EBOOK_CFLAGS) \
1657 $(call gb_LinkTarget_add_libs,$(1),$(EBOOK_LIBS))
1659 endef
1661 gb_ExternalProject__use_ebook :=
1663 else # !SYSTEM_EBOOK
1665 define gb_LinkTarget__use_ebook
1666 $(call gb_LinkTarget_set_include,$(1),\
1667 -I${WORKDIR}/UnpackedTarball/libebook/inc \
1668 $$(INCLUDE) \
1670 $(call gb_LinkTarget_add_libs,$(1),\
1671 $(call gb_UnpackedTarball_get_dir,libebook)/src/lib/.libs/libe-book-0.1$(gb_StaticLibrary_PLAINEXT) \
1673 $(call gb_LinkTarget_use_external_project,$(1),libebook)
1675 endef
1677 define gb_ExternalProject__use_ebook
1678 $(call gb_ExternalProject_use_external_project,$(1),libebook)
1680 endef
1682 endif # SYSTEM_EBOOK
1685 ifneq ($(SYSTEM_ETONYEK),)
1687 define gb_LinkTarget__use_etonyek
1688 $(call gb_LinkTarget_set_include,$(1),\
1689 $$(INCLUDE) \
1690 $(ETONYEK_CFLAGS) \
1692 $(call gb_LinkTarget_add_libs,$(1),$(ETONYEK_LIBS))
1694 endef
1696 gb_ExternalProject__use_etonyek :=
1698 else # !SYSTEM_ETONYEK
1700 ifeq ($(COM),MSC)
1702 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
1703 etonyek \
1706 define gb_LinkTarget__use_etonyek
1707 $(call gb_LinkTarget_set_include,$(1),\
1708 -I$(call gb_UnpackedTarball_get_dir,libetonyek)/inc \
1709 $$(INCLUDE) \
1711 $(call gb_LinkTarget_use_libraries,$(1),\
1712 etonyek \
1715 endef
1717 else # !MSC
1719 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
1720 libetonyek \
1723 define gb_LinkTarget__use_etonyek
1724 $(call gb_LinkTarget_use_package,$(1),libetonyek)
1726 $(call gb_LinkTarget_set_include,$(1),\
1727 -I${WORKDIR}/UnpackedTarball/libetonyek/inc \
1728 -DLIBETONYEK_VISIBILITY \
1729 $$(INCLUDE) \
1731 $(call gb_LinkTarget_add_libs,$(1),\
1732 -L$(call gb_UnpackedTarball_get_dir,libetonyek)/src/lib/.libs -letonyek-0.1 \
1734 $(call gb_LinkTarget_use_external_project,$(1),libetonyek)
1736 endef
1738 define gb_ExternalProject__use_etonyek
1739 $(call gb_ExternalProject_use_external_project,$(1),libetonyek)
1741 endef
1743 endif
1745 endif # SYSTEM_ETONYEK
1748 ifneq ($(SYSTEM_FREEHAND),)
1750 define gb_LinkTarget__use_freehand
1751 $(call gb_LinkTarget_set_include,$(1),\
1752 $$(INCLUDE) \
1753 $(FREEHAND_CFLAGS) \
1755 $(call gb_LinkTarget_add_libs,$(1),$(FREEHAND_LIBS))
1757 endef
1759 gb_ExternalProject__use_freehand :=
1761 else # !SYSTEM_FREEHAND
1763 define gb_LinkTarget__use_freehand
1764 $(call gb_LinkTarget_set_include,$(1),\
1765 -I${WORKDIR}/UnpackedTarball/libfreehand/inc \
1766 $$(INCLUDE) \
1768 $(call gb_LinkTarget_add_libs,$(1),\
1769 $(call gb_UnpackedTarball_get_dir,libfreehand)/src/lib/.libs/libfreehand-0.1$(gb_StaticLibrary_PLAINEXT) \
1771 $(call gb_LinkTarget_use_external_project,$(1),libfreehand)
1773 endef
1775 define gb_ExternalProject__use_freehand
1776 $(call gb_ExternalProject_use_external_project,$(1),libfreehand)
1778 endef
1780 endif # SYSTEM_FREEHAND
1783 ifneq ($(SYSTEM_ODFGEN),)
1785 define gb_LinkTarget__use_odfgen
1786 $(call gb_LinkTarget_set_include,$(1),\
1787 $$(INCLUDE) \
1788 $(ODFGEN_CFLAGS) \
1790 $(call gb_LinkTarget_add_libs,$(1),$(ODFGEN_LIBS))
1792 endef
1794 else # !SYSTEM_ODFGEN
1796 ifeq ($(COM),MSC)
1798 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
1799 odfgen \
1802 define gb_LinkTarget__use_odfgen
1803 $(call gb_LinkTarget_set_include,$(1),\
1804 -I$(call gb_UnpackedTarball_get_dir,libodfgen)/inc \
1805 $$(INCLUDE) \
1807 $(call gb_LinkTarget_use_libraries,$(1),\
1808 odfgen \
1811 endef
1813 else # !MSC
1815 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
1816 libodfgen \
1819 define gb_LinkTarget__use_odfgen
1820 $(call gb_LinkTarget_use_package,$(1),libodfgen)
1822 $(call gb_LinkTarget_set_include,$(1),\
1823 -I$(call gb_UnpackedTarball_get_dir,libodfgen)/inc \
1824 -DLIBODFGEN_VISIBILITY \
1825 $$(INCLUDE) \
1827 $(call gb_LinkTarget_add_libs,$(1),\
1828 -L$(call gb_UnpackedTarball_get_dir,libodfgen)/src/.libs -lodfgen-0.1 \
1831 endef
1833 endif
1835 endif # SYSTEM_ODFGEN
1837 ifneq ($(SYSTEM_EPUBGEN),)
1839 define gb_LinkTarget__use_epubgen
1840 $(call gb_LinkTarget_set_include,$(1),\
1841 $$(INCLUDE) \
1842 $(EPUBGEN_CFLAGS) \
1844 $(call gb_LinkTarget_add_libs,$(1),$(EPUBGEN_LIBS))
1846 endef
1847 gb_ExternalProject__use_epubgen :=
1849 else # !SYSTEM_EPUBGEN
1851 define gb_LinkTarget__use_epubgen
1852 $(call gb_LinkTarget_set_include,$(1),\
1853 -I$(call gb_UnpackedTarball_get_dir,libepubgen)/inc \
1854 $$(INCLUDE) \
1856 $(call gb_LinkTarget_add_libs,$(1),\
1857 $(call gb_UnpackedTarball_get_dir,libepubgen)/src/lib/.libs/libepubgen-0.1$(gb_StaticLibrary_PLAINEXT) \
1859 $(call gb_LinkTarget_use_external_project,$(1),libepubgen)
1861 endef
1862 define gb_ExternalProject__use_epubgen
1863 $(call gb_ExternalProject_use_external_project,$(1),libepubgen)
1865 endef
1867 endif # SYSTEM_EPUBGEN
1869 ifneq ($(SYSTEM_REVENGE),)
1871 define gb_LinkTarget__use_revenge
1872 $(call gb_LinkTarget_set_include,$(1),\
1873 $$(INCLUDE) \
1874 $(REVENGE_CFLAGS) \
1876 $(call gb_LinkTarget_add_libs,$(1),$(REVENGE_LIBS))
1878 endef
1880 gb_ExternalProject__use_revenge :=
1882 else # !SYSTEM_REVENGE
1884 ifeq ($(COM),MSC)
1886 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
1887 revenge \
1890 define gb_LinkTarget__use_revenge
1891 $(call gb_LinkTarget_set_include,$(1),\
1892 $(REVENGE_CFLAGS) \
1893 $$(INCLUDE) \
1895 $(call gb_LinkTarget_use_libraries,$(1),\
1896 revenge \
1899 endef
1901 define gb_ExternalProject__use_revenge
1902 $(call gb_ExternalProject_get_preparation_target,$(1)) : $(call gb_Library_get_target,revenge)
1904 endef
1906 else # !MSC
1908 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
1909 librevenge \
1912 define gb_LinkTarget__use_revenge
1913 $(call gb_LinkTarget_use_package,$(1),librevenge)
1915 $(call gb_LinkTarget_set_include,$(1),\
1916 $(REVENGE_CFLAGS) \
1917 -DLIBREVENGE_VISIBILITY \
1918 $$(INCLUDE) \
1920 $(call gb_LinkTarget_add_libs,$(1),\
1921 $(REVENGE_LIBS) \
1923 endef
1925 define gb_ExternalProject__use_revenge
1926 $(call gb_ExternalProject_use_package,$(1),librevenge)
1928 endef
1930 endif # MSC
1932 endif # SYSTEM_REVENGE
1935 ifneq ($(SYSTEM_ABW),)
1937 define gb_LinkTarget__use_abw
1938 $(call gb_LinkTarget_set_include,$(1),\
1939 $$(INCLUDE) \
1940 $(ABW_CFLAGS) \
1942 $(call gb_LinkTarget_add_libs,$(1),$(ABW_LIBS))
1944 endef
1945 gb_ExternalProject__use_abw :=
1947 else # !SYSTEM_ABW
1949 define gb_LinkTarget__use_abw
1950 $(call gb_LinkTarget_set_include,$(1),\
1951 -I$(call gb_UnpackedTarball_get_dir,libabw)/inc \
1952 $$(INCLUDE) \
1954 $(call gb_LinkTarget_add_libs,$(1),\
1955 $(call gb_UnpackedTarball_get_dir,libabw)/src/lib/.libs/libabw-0.1$(gb_StaticLibrary_PLAINEXT) \
1957 $(call gb_LinkTarget_use_external_project,$(1),libabw)
1959 endef
1960 define gb_ExternalProject__use_abw
1961 $(call gb_ExternalProject_use_external_project,$(1),libabw)
1963 endef
1965 endif # SYSTEM_ABW
1968 ifneq ($(SYSTEM_MSPUB),)
1970 define gb_LinkTarget__use_mspub
1971 $(call gb_LinkTarget_set_include,$(1),\
1972 $$(INCLUDE) \
1973 $(MSPUB_CFLAGS) \
1975 $(call gb_LinkTarget_add_libs,$(1),$(MSPUB_LIBS))
1977 endef
1979 else # !SYSTEM_MSPUB
1981 define gb_LinkTarget__use_mspub
1982 $(call gb_LinkTarget_set_include,$(1),\
1983 -I$(call gb_UnpackedTarball_get_dir,libmspub)/inc \
1984 $$(INCLUDE) \
1986 $(call gb_LinkTarget_add_libs,$(1),\
1987 $(call gb_UnpackedTarball_get_dir,libmspub)/src/lib/.libs/libmspub-0.1$(gb_StaticLibrary_PLAINEXT) \
1989 $(call gb_LinkTarget_use_external_project,$(1),libmspub)
1991 endef
1993 endif # SYSTEM_MSPUB
1996 ifneq ($(SYSTEM_PAGEMAKER),)
1998 define gb_LinkTarget__use_pagemaker
1999 $(call gb_LinkTarget_set_include,$(1),\
2000 $$(INCLUDE) \
2001 $(PAGEMAKER_CFLAGS) \
2003 $(call gb_LinkTarget_add_libs,$(1),$(PAGEMAKER_LIBS))
2005 endef
2006 gb_ExternalProject__use_pagemaker :=
2008 else # !SYSTEM_PAGEMAKER
2010 define gb_LinkTarget__use_pagemaker
2011 $(call gb_LinkTarget_set_include,$(1),\
2012 -I$(call gb_UnpackedTarball_get_dir,libpagemaker)/inc \
2013 $$(INCLUDE) \
2015 $(call gb_LinkTarget_add_libs,$(1),\
2016 $(call gb_UnpackedTarball_get_dir,libpagemaker)/src/lib/.libs/libpagemaker-0.0$(gb_StaticLibrary_PLAINEXT) \
2018 $(call gb_LinkTarget_use_external_project,$(1),libpagemaker)
2020 endef
2021 define gb_ExternalProject__use_pagemaker
2022 $(call gb_ExternalProject_use_external_project,$(1),libpagemaker)
2024 endef
2026 endif # SYSTEM_PAGEMAKER
2029 ifneq ($(SYSTEM_QXP),)
2031 define gb_LinkTarget__use_qxp
2032 $(call gb_LinkTarget_set_include,$(1),\
2033 $$(INCLUDE) \
2034 $(QXP_CFLAGS) \
2036 $(call gb_LinkTarget_add_libs,$(1),$(QXP_LIBS))
2038 endef
2039 gb_ExternalProject__use_qxp :=
2041 else # !SYSTEM_QXP
2043 define gb_LinkTarget__use_qxp
2044 $(call gb_LinkTarget_set_include,$(1),\
2045 -I$(call gb_UnpackedTarball_get_dir,libqxp)/inc \
2046 $$(INCLUDE) \
2048 $(call gb_LinkTarget_add_libs,$(1),\
2049 $(call gb_UnpackedTarball_get_dir,libqxp)/src/lib/.libs/libqxp-0.0$(gb_StaticLibrary_PLAINEXT) \
2051 $(call gb_LinkTarget_use_external_project,$(1),libqxp)
2053 endef
2054 define gb_ExternalProject__use_qxp
2055 $(call gb_ExternalProject_use_external_project,$(1),libqxp)
2057 endef
2059 endif # SYSTEM_QXP
2062 ifneq ($(SYSTEM_ZMF),)
2064 define gb_LinkTarget__use_zmf
2065 $(call gb_LinkTarget_set_include,$(1),\
2066 $$(INCLUDE) \
2067 $(ZMF_CFLAGS) \
2069 $(call gb_LinkTarget_add_libs,$(1),$(ZMF_LIBS))
2071 endef
2072 gb_ExternalProject__use_zmf :=
2074 else # !SYSTEM_ZMF
2076 define gb_LinkTarget__use_zmf
2077 $(call gb_LinkTarget_set_include,$(1),\
2078 -I$(call gb_UnpackedTarball_get_dir,libzmf)/inc \
2079 $$(INCLUDE) \
2081 $(call gb_LinkTarget_add_libs,$(1),\
2082 $(call gb_UnpackedTarball_get_dir,libzmf)/src/lib/.libs/libzmf-0.0$(gb_StaticLibrary_PLAINEXT) \
2084 $(call gb_LinkTarget_use_external_project,$(1),libzmf)
2086 endef
2087 define gb_ExternalProject__use_zmf
2088 $(call gb_ExternalProject_use_external_project,$(1),libzmf)
2090 endef
2092 endif # SYSTEM_ZMF
2095 ifneq ($(SYSTEM_VISIO),)
2097 define gb_LinkTarget__use_visio
2098 $(call gb_LinkTarget_set_include,$(1),\
2099 $$(INCLUDE) \
2100 $(VISIO_CFLAGS) \
2102 $(call gb_LinkTarget_add_libs,$(1),$(VISIO_LIBS))
2104 endef
2106 else # !SYSTEM_VISIO
2108 define gb_LinkTarget__use_visio
2109 $(call gb_LinkTarget_set_include,$(1),\
2110 -I$(call gb_UnpackedTarball_get_dir,libvisio)/inc \
2111 $$(INCLUDE) \
2113 $(call gb_LinkTarget_add_libs,$(1),\
2114 $(call gb_UnpackedTarball_get_dir,libvisio)/src/lib/.libs/libvisio-0.1$(gb_StaticLibrary_PLAINEXT) \
2116 $(call gb_LinkTarget_use_external_project,$(1),libvisio)
2118 endef
2120 endif # SYSTEM_VISIO
2123 ifneq ($(SYSTEM_WPD),)
2125 define gb_LinkTarget__use_wpd
2126 $(call gb_LinkTarget_set_include,$(1),\
2127 $$(INCLUDE) \
2128 $(WPD_CFLAGS) \
2130 $(call gb_LinkTarget_add_libs,$(1),$(WPD_LIBS))
2132 endef
2133 gb_ExternalProject__use_wpd :=
2135 else # !SYSTEM_WPD
2137 ifeq ($(COM),MSC)
2139 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
2140 wpd \
2143 define gb_LinkTarget__use_wpd
2144 $(call gb_LinkTarget_set_include,$(1),\
2145 $(WPD_CFLAGS) \
2146 $$(INCLUDE) \
2148 $(call gb_LinkTarget_use_libraries,$(1),\
2149 wpd \
2152 endef
2154 define gb_ExternalProject__use_wpd
2155 $(call gb_ExternalProject_get_preparation_target,$(1)) : $(call gb_Library_get_target,wpd)
2157 endef
2159 else # !MSC
2161 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
2162 libwpd \
2165 define gb_LinkTarget__use_wpd
2166 $(call gb_LinkTarget_use_package,$(1),libwpd)
2168 $(call gb_LinkTarget_set_include,$(1),\
2169 $(WPD_CFLAGS) \
2170 $$(INCLUDE) \
2172 $(call gb_LinkTarget_add_libs,$(1),\
2173 $(WPD_LIBS) \
2176 endef
2178 define gb_ExternalProject__use_wpd
2179 $(call gb_ExternalProject_use_package,$(1),libwpd)
2181 endef
2183 endif # MSC
2185 endif # SYSTEM_WPD
2188 ifneq ($(SYSTEM_WPG),)
2190 define gb_LinkTarget__use_wpg
2191 $(call gb_LinkTarget_set_include,$(1),\
2192 $$(INCLUDE) \
2193 $(WPG_CFLAGS) \
2195 $(call gb_LinkTarget_add_libs,$(1),$(WPG_LIBS))
2197 endef
2198 gb_ExternalProject__use_wpg :=
2200 else # !SYSTEM_WPG
2202 ifeq ($(COM),MSC)
2204 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
2205 wpg \
2208 define gb_LinkTarget__use_wpg
2209 $(call gb_LinkTarget_set_include,$(1),\
2210 -I$(call gb_UnpackedTarball_get_dir,libwpg)/inc \
2211 $$(INCLUDE) \
2213 $(call gb_LinkTarget_use_libraries,$(1),\
2214 wpg \
2217 endef
2219 else # !MSC
2221 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
2222 libwpg \
2225 define gb_LinkTarget__use_wpg
2226 $(call gb_LinkTarget_use_package,$(1),libwpg)
2228 $(call gb_LinkTarget_set_include,$(1),\
2229 -I$(call gb_UnpackedTarball_get_dir,libwpg)/inc \
2230 $$(INCLUDE) \
2232 $(call gb_LinkTarget_add_libs,$(1),\
2233 -L$(call gb_UnpackedTarball_get_dir,libwpg)/src/lib/.libs -lwpg-0.3 \
2236 endef
2238 endif # MSC
2240 endif # SYSTEM_WPG
2243 ifneq ($(SYSTEM_WPS),)
2245 define gb_LinkTarget__use_wps
2246 $(call gb_LinkTarget_set_include,$(1),\
2247 $$(INCLUDE) \
2248 $(WPS_CFLAGS) \
2250 $(call gb_LinkTarget_add_libs,$(1),$(WPS_LIBS))
2252 endef
2253 gb_ExternalProject__use_wps :=
2255 else # !SYSTEM_WPS
2257 ifeq ($(COM),MSC)
2259 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
2260 wps \
2263 define gb_LinkTarget__use_wps
2264 $(call gb_LinkTarget_set_include,$(1),\
2265 -I$(call gb_UnpackedTarball_get_dir,libwps)/inc \
2266 $$(INCLUDE) \
2269 $(call gb_LinkTarget_use_libraries,$(1),\
2270 wps \
2273 endef
2275 else # !MSC
2277 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
2278 libwps \
2281 define gb_LinkTarget__use_wps
2282 $(call gb_LinkTarget_use_package,$(1),libwps)
2284 $(call gb_LinkTarget_set_include,$(1),\
2285 -I$(call gb_UnpackedTarball_get_dir,libwps)/inc \
2286 $$(INCLUDE) \
2288 $(call gb_LinkTarget_add_libs,$(1),\
2289 -L$(call gb_UnpackedTarball_get_dir,libwps)/src/lib/.libs -lwps-0.4 \
2292 endef
2294 endif # MSC
2296 endif # SYSTEM_WPS
2299 ifneq ($(SYSTEM_MWAW),)
2301 define gb_LinkTarget__use_mwaw
2302 $(call gb_LinkTarget_set_include,$(1),\
2303 $$(INCLUDE) \
2304 $(MWAW_CFLAGS) \
2306 $(call gb_LinkTarget_add_libs,$(1),$(MWAW_LIBS))
2308 endef
2310 else # !SYSTEM_MWAW
2312 ifeq ($(COM),MSC)
2314 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
2315 mwaw \
2318 define gb_LinkTarget__use_mwaw
2319 $(call gb_LinkTarget_set_include,$(1),\
2320 -I$(call gb_UnpackedTarball_get_dir,libmwaw)/inc \
2321 $$(INCLUDE) \
2324 $(call gb_LinkTarget_use_libraries,$(1),\
2325 mwaw \
2328 endef
2330 else # !MSC
2332 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
2333 libmwaw \
2336 define gb_LinkTarget__use_mwaw
2337 $(call gb_LinkTarget_use_package,$(1),libmwaw)
2339 $(call gb_LinkTarget_set_include,$(1),\
2340 -I$(call gb_UnpackedTarball_get_dir,libmwaw)/inc \
2341 $$(INCLUDE) \
2343 $(call gb_LinkTarget_add_libs,$(1),\
2344 -L$(call gb_UnpackedTarball_get_dir,libmwaw)/src/lib/.libs -lmwaw-0.3 \
2347 endef
2349 endif # MSC
2351 endif # SYSTEM_MWAW
2353 ifneq ($(SYSTEM_STAROFFICE),)
2355 define gb_LinkTarget__use_staroffice
2356 $(call gb_LinkTarget_set_include,$(1),\
2357 $$(INCLUDE) \
2358 $(STAROFFICE_CFLAGS) \
2360 $(call gb_LinkTarget_add_libs,$(1),$(STAROFFICE_LIBS))
2362 endef
2364 else # !SYSTEM_STAROFFICE
2366 ifeq ($(COM),MSC)
2368 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
2369 staroffice \
2372 define gb_LinkTarget__use_staroffice
2373 $(call gb_LinkTarget_set_include,$(1),\
2374 -I$(call gb_UnpackedTarball_get_dir,libstaroffice)/inc \
2375 $$(INCLUDE) \
2378 $(call gb_LinkTarget_use_libraries,$(1),\
2379 staroffice \
2382 endef
2384 else # !MSC
2386 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
2387 libstaroffice \
2390 define gb_LinkTarget__use_staroffice
2391 $(call gb_LinkTarget_use_package,$(1),libstaroffice)
2393 $(call gb_LinkTarget_set_include,$(1),\
2394 -I$(call gb_UnpackedTarball_get_dir,libstaroffice)/inc \
2395 $$(INCLUDE) \
2397 $(call gb_LinkTarget_add_libs,$(1),\
2398 -L$(call gb_UnpackedTarball_get_dir,libstaroffice)/src/lib/.libs -lstaroffice-0.0 \
2401 endef
2403 endif # MSC
2405 endif # SYSTEM_STAROFFICE
2408 ifneq ($(SYSTEM_LCMS2),)
2410 define gb_LinkTarget__use_lcms2
2411 $(call gb_LinkTarget_set_include,$(1),\
2412 $$(INCLUDE) \
2413 $(LCMS2_CFLAGS) \
2415 $(call gb_LinkTarget_add_libs,$(1),$(LCMS2_LIBS))
2417 endef
2419 gb_ExternalProject__use_lcms2 :=
2421 else # !SYSTEM_LCMS2
2423 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
2424 lcms2 \
2427 define gb_ExternalProject__use_lcms2
2428 $(call gb_ExternalProject_use_package,$(1),lcms2)
2430 endef
2432 ifeq ($(OS),ANDROID)
2434 define gb_LinkTarget__use_lcms2
2435 $(call gb_LinkTarget_use_package,$(1),lcms2)
2436 $(call gb_LinkTarget_set_include,$(1),\
2437 -I$(call gb_UnpackedTarball_get_dir,lcms2/include) \
2438 $$(INCLUDE) \
2441 endef
2443 else
2445 define gb_LinkTarget__use_lcms2
2446 $(call gb_LinkTarget_use_package,$(1),lcms2)
2447 $(call gb_LinkTarget_set_include,$(1),\
2448 -I$(call gb_UnpackedTarball_get_dir,lcms2/include) \
2449 $$(INCLUDE) \
2451 $(call gb_LinkTarget_add_libs,$(1),$(LCMS2_LIBS))
2453 endef
2455 endif # ANDROID
2456 endif # SYSTEM_LCMS2
2458 ifneq ($(ENABLE_LPSOLVE),)
2460 ifneq ($(SYSTEM_LPSOLVE),)
2462 define gb_LinkTarget__use_lpsolve
2463 $(call gb_LinkTarget_add_libs,$(1),-llpsolve55)
2464 $(call gb_LinkTarget_add_defs,$(1),\
2465 -DSYSTEM_LPSOLVE \
2468 endef
2470 else # !SYSTEM_LPSOLVE
2472 define gb_LinkTarget__use_lpsolve
2473 $(call gb_LinkTarget_use_external_project,$(1),lpsolve)
2474 ifeq ($(COM),MSC)
2475 $(call gb_LinkTarget_add_libs,$(1),\
2476 $(call gb_UnpackedTarball_get_dir,lpsolve)/lpsolve55/lpsolve55.lib \
2478 else
2479 $(call gb_LinkTarget_add_libs,$(1),\
2480 -L$(call gb_UnpackedTarball_get_dir,lpsolve)/lpsolve55 -llpsolve55 \
2482 endif
2483 $(call gb_LinkTarget_set_include,$(1),\
2484 -I$(call gb_UnpackedTarball_get_dir,lpsolve) \
2485 $$(INCLUDE) \
2488 endef
2490 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
2491 lpsolve \
2494 endif # SYSTEM_LPSOLVE
2496 else
2498 gb_LinkTarget__use_lpsolve :=
2500 endif # ENABLE_LPSOLVE
2502 ifneq ($(ENABLE_COINMP),)
2504 ifneq ($(SYSTEM_COINMP),TRUE)
2506 define gb_LinkTarget__use_coinmp
2507 $(call gb_LinkTarget_use_package,$(1),coinmp)
2508 ifeq ($(COM),MSC)
2509 $(call gb_LinkTarget_add_libs,$(1),\
2510 $(call gb_UnpackedTarball_get_dir,coinmp)/CoinMP/MSVisualStudio/v9/$(wnt_arch_subdir_optional)$(if $(MSVC_USE_DEBUG_RUNTIME),Debug,Release)/CoinMP.lib \
2512 else
2513 $(call gb_LinkTarget_add_libs,$(1),\
2514 -L$(call gb_UnpackedTarball_get_dir,coinmp)/Cbc/src/.libs -lCbc -lCbcSolver \
2515 -L$(call gb_UnpackedTarball_get_dir,coinmp)/Cgl/src/.libs -lCgl \
2516 -L$(call gb_UnpackedTarball_get_dir,coinmp)/Clp/src/.libs -lClp \
2517 -L$(call gb_UnpackedTarball_get_dir,coinmp)/Clp/src/OsiClp/.libs -lOsiClp \
2518 -L$(call gb_UnpackedTarball_get_dir,coinmp)/CoinMP/src/.libs -lCoinMP \
2519 -L$(call gb_UnpackedTarball_get_dir,coinmp)/CoinUtils/src/.libs -lCoinUtils \
2520 -L$(call gb_UnpackedTarball_get_dir,coinmp)/Osi/src/Osi/.libs -lOsi \
2522 endif
2523 $(call gb_LinkTarget_set_include,$(1),\
2524 -I$(call gb_UnpackedTarball_get_dir,coinmp)/CoinMP/src \
2525 -I$(call gb_UnpackedTarball_get_dir,coinmp)/CoinUtils/src \
2526 $$(INCLUDE) \
2529 endef
2531 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
2532 coinmp \
2535 else # SYSTEM_COINMP
2537 define gb_LinkTarget__use_coinmp
2538 $(call gb_LinkTarget_set_include,$(1),\
2539 $$(INCLUDE) \
2540 $(COINMP_CFLAGS) \
2542 $(call gb_LinkTarget_add_libs,$(1),$(COINMP_LIBS))
2544 endef
2546 endif
2548 else
2550 gb_LinkTarget__use_coinmp :=
2552 endif # ENABLE_COINMP
2554 ifneq (,$(filter MDNSRESPONDER,$(BUILD_TYPE)))
2556 define gb_LinkTarget__use_mDNSResponder
2557 $(call gb_LinkTarget_set_include,$(1),\
2558 -I$(call gb_UnpackedTarball_get_dir,mDNSResponder)/mDNSShared \
2559 $$(INCLUDE) \
2561 $(call gb_LinkTarget_use_static_libraries,$(1),mDNSResponder)
2562 endef
2564 endif # MDNSRESPONDER
2566 ifeq ($(ENABLE_GIO),TRUE)
2568 define gb_LinkTarget__use_gio
2569 $(call gb_LinkTarget_set_include,$(1),\
2570 $$(INCLUDE) \
2571 $(GIO_CFLAGS) \
2574 $(call gb_LinkTarget_add_libs,$(1),$(GIO_LIBS))
2576 endef
2578 else # ENABLE_GIO
2580 define gb_LinkTarget__use_gio
2582 endef
2584 endif # ENABLE_GIO
2586 ifeq ($(ENABLE_AVAHI),TRUE)
2588 define gb_LinkTarget__use_avahi
2589 $(call gb_LinkTarget_set_include,$(1),\
2590 $$(INCLUDE) \
2591 $(AVAHI_CFLAGS) \
2594 $(call gb_LinkTarget_add_defs,$(1),\
2595 -DENABLE_AVAHI \
2598 $(call gb_LinkTarget_add_libs,$(1),$(AVAHI_LIBS))
2600 endef
2602 else # ENABLE_AVAHI
2604 gb_LinkTarget__use_avahi :=
2606 endif # ENABLE_AVAHI
2609 define gb_LinkTarget__use_gtk
2610 $(call gb_LinkTarget_set_include,$(1),\
2611 $$(INCLUDE) \
2612 $(GTK_CFLAGS) \
2615 $(call gb_LinkTarget_add_libs,$(1),$(GTK_LIBS))
2617 ifeq ($(ENABLE_GTK_PRINT),TRUE)
2619 $(call gb_LinkTarget_add_defs,$(1),-DENABLE_GTK_PRINT)
2621 $(call gb_LinkTarget_set_include,$(1),\
2622 $$(INCLUDE) \
2623 $(GTK_PRINT_CFLAGS) \
2626 $(call gb_LinkTarget_add_libs,$(1),$(GTK_PRINT_LIBS))
2628 endif
2630 endef
2632 define gb_LinkTarget__use_gthread
2633 $(call gb_LinkTarget_add_libs,$(1),$(GTHREAD_LIBS))
2634 endef
2636 ifeq ($(ENABLE_CUPS),TRUE)
2638 define gb_LinkTarget__use_cups
2639 $(call gb_LinkTarget_add_defs,$(1),\
2640 -DENABLE_CUPS \
2643 $(call gb_LinkTarget_add_libs,$(1),\
2644 -lcups \
2647 endef
2649 else # ENABLE_CUPS
2651 define gb_LinkTarget__use_cups
2653 endef
2655 endif # ENABLE_CUPS
2657 ifeq ($(ENABLE_DBUS),TRUE)
2659 define gb_LinkTarget__use_dbus
2660 $(call gb_LinkTarget_set_include,$(1),\
2661 $$(INCLUDE) \
2662 $(DBUS_CFLAGS) \
2665 $(call gb_LinkTarget_add_libs,$(1),\
2666 $(DBUS_LIBS) \
2669 endef
2671 else # ENABLE_DBUS
2673 define gb_LinkTarget__use_dbus
2675 endef
2677 endif # ENABLE_DBUS
2680 ifneq ($(SYSTEM_LIBPNG),)
2682 define gb_LinkTarget__use_libpng
2683 $(call gb_LinkTarget_set_include,$(1),\
2684 $$(INCLUDE) \
2685 $(LIBPNG_CFLAGS) \
2688 $(call gb_LinkTarget_add_libs,$(1),\
2689 $(LIBPNG_LIBS) \
2692 endef
2694 gb_ExternalProject__use_libpng :=
2696 else # !SYSTEM_LIBPNG
2698 define gb_LinkTarget__use_libpng
2699 $(call gb_LinkTarget_set_include,$(1),\
2700 $(LIBPNG_CFLAGS) \
2701 $$(INCLUDE) \
2703 $(call gb_LinkTarget_use_static_libraries,$(1),\
2704 libpng \
2706 $(call gb_LinkTarget__use_zlib,$(1))
2708 endef
2710 define gb_ExternalProject__use_libpng
2711 $(call gb_ExternalProject_use_static_libraries,$(1),\
2712 libpng \
2715 endef
2717 endif # !SYSTEM_LIBPNG
2720 ifneq ($(SYSTEM_CURL),)
2722 define gb_LinkTarget__use_curl
2723 $(call gb_LinkTarget_add_defs,$(1),\
2724 -DSYSTEM_CURL \
2726 $(call gb_LinkTarget_set_include,$(1),\
2727 $$(INCLUDE) \
2728 $(CURL_CFLAGS) \
2730 $(call gb_LinkTarget_add_libs,$(1),$(CURL_LIBS))
2732 endef
2734 else # !SYSTEM_CURL
2736 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
2737 curl \
2740 define gb_LinkTarget__use_curl
2741 $(call gb_LinkTarget_use_package,$(1),curl)
2742 $(call gb_LinkTarget_set_include,$(1),\
2743 -I$(call gb_UnpackedTarball_get_dir,curl/include) \
2744 $$(INCLUDE) \
2747 ifeq ($(COM),MSC)
2748 $(call gb_LinkTarget_add_libs,$(1),\
2749 $(call gb_UnpackedTarball_get_dir,curl)/builds/libcurl-vc12-$(if $(filter X86_64,$(CPUNAME)),x64,x86)-$(if $(MSVC_USE_DEBUG_RUNTIME),debug,release)-dll-ipv6-sspi-winssl/lib/libcurl$(if $(MSVC_USE_DEBUG_RUNTIME),_debug).lib \
2751 else
2752 $(call gb_LinkTarget_add_libs,$(1),\
2753 -L$(call gb_UnpackedTarball_get_dir,curl)/lib/.libs -lcurl \
2755 endif
2757 endef
2759 endif # SYSTEM_CURL
2761 ifeq ($(ENABLE_VALGRIND),TRUE)
2763 define gb_LinkTarget__use_valgrind
2764 $(call gb_LinkTarget_add_defs,$(1),\
2765 -DHAVE_VALGRIND_HEADERS \
2768 $(call gb_LinkTarget_set_include,$(1),\
2769 $$(INCLUDE) \
2770 $(VALGRIND_CFLAGS) \
2773 endef
2775 else # !ENABLE_VALGRIND
2777 define gb_LinkTarget__use_valgrind
2779 endef
2781 endif # ENABLE_VALGRIND
2783 ifneq ($(SYSTEM_POPPLER),)
2785 define gb_LinkTarget__use_poppler
2786 $(call gb_LinkTarget_set_include,$(1),\
2787 $(POPPLER_CFLAGS) \
2788 $$(INCLUDE) \
2791 $(call gb_LinkTarget_add_libs,$(1),\
2792 $(POPPLER_LIBS) \
2795 endef
2797 else # !SYSTEM_POPPLER
2799 define gb_LinkTarget__use_poppler
2800 $(call gb_LinkTarget_use_external_project,$(1),poppler,full)
2802 $(call gb_LinkTarget_set_include,$(1),\
2803 -I$(call gb_UnpackedTarball_get_dir,poppler) \
2804 -I$(call gb_UnpackedTarball_get_dir,poppler)/poppler \
2805 -I$(call gb_UnpackedTarball_get_dir,poppler)/goo \
2806 $$(INCLUDE) \
2809 $(call gb_LinkTarget_use_static_libraries,$(1),poppler)
2811 $(call gb_LinkTarget_use_external,$(1),libjpeg)
2813 ifeq ($(OS),MACOSX)
2814 $(call gb_LinkTarget_add_libs,$(1),\
2815 -lobjc \
2817 else ifeq ($(OS),LINUX)
2818 $(call gb_LinkTarget_add_libs,$(1),\
2819 -pthread \
2821 else ifeq ($(OS),WNT)
2822 $(call gb_LinkTarget_use_system_win32_libs,$(1),\
2823 advapi32 \
2824 gdi32 \
2826 endif
2828 endef
2830 endif # SYSTEM_POPPLER
2833 ifneq ($(SYSTEM_CLUCENE),)
2835 define gb_LinkTarget__use_clucene
2836 $(call gb_LinkTarget_add_defs,$(1),\
2837 $(filter-out -I% -isystem%,$(subst -isystem /,-isystem/,$(CLUCENE_CFLAGS))) \
2840 $(call gb_LinkTarget_set_include,$(1),\
2841 $(subst -isystem/,-isystem /,$(filter -I% -isystem%,$(subst -isystem /,-isystem/,$(CLUCENE_CFLAGS)))) \
2842 $$(INCLUDE) \
2845 $(call gb_LinkTarget_add_libs,$(1),\
2846 $(CLUCENE_LIBS) \
2849 endef
2851 else # !SYSTEM_CLUCENE
2853 define gb_LinkTarget__use_clucene
2854 $(call gb_LinkTarget_set_include,$(1),\
2855 -I$(call gb_UnpackedTarball_get_dir,clucene)/src/core \
2856 -I$(call gb_UnpackedTarball_get_dir,clucene)/src/shared \
2857 -I$(call gb_UnpackedTarball_get_dir,clucene)/src/contribs-lib \
2858 $$(INCLUDE) \
2861 $(call gb_LinkTarget_use_libraries,$(1),\
2862 clucene \
2865 endef
2867 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
2868 clucene \
2871 endif # SYSTEM_CLUCENE
2873 define gb_LinkTarget__use_gobject
2874 $(call gb_LinkTarget_add_libs,$(1),\
2875 $(GOBJECT_LIBS) \
2878 $(call gb_LinkTarget_set_include,$(1),\
2879 $$(INCLUDE) \
2880 $(GOBJECT_CFLAGS) \
2882 endef
2884 ifneq ($(SYSTEM_HSQLDB),)
2886 define gb_LinkTarget__use_hsqldb
2888 $(call gb_LinkTarget_add_defs,$(1),\
2889 -DSYSTEM_HSQLDB \
2890 -DHSQLDB_JAR=\""file://$(HSQLDB_JAR)"\" \
2893 endef
2895 else # !SYSTEM_HSQLDB
2897 define gb_LinkTarget__use_hsqldb
2899 endef
2901 endif # SYSTEM_HSQLDB
2903 ifeq ($(ENABLE_LDAP),TRUE)
2904 ifneq ($(SYSTEM_OPENLDAP),)
2906 define gb_LinkTarget__use_openldap
2908 $(call gb_LinkTarget_add_libs,$(1),\
2909 -lldap \
2910 -llber \
2913 endef
2915 gb_ExternalProject__use_openldap :=
2917 else # !SYSTEM_OPENLDAP
2919 define gb_LinkTarget__use_openldap
2920 $(call gb_LinkTarget_use_unpacked,$(1),openldap)
2921 $(call gb_LinkTarget_set_include,$(1),\
2922 -I$(call gb_UnpackedTarball_get_dir,openldap/include) \
2923 $$(INCLUDE) \
2925 $(call gb_LinkTarget_use_external_project,$(1),openldap,full)
2926 $(call gb_LinkTarget_add_libs,$(1), \
2927 $(call gb_UnpackedTarball_get_dir,openldap)/libraries/libldap/.libs/libldap.a \
2928 $(call gb_UnpackedTarball_get_dir,openldap)/libraries/liblber/.libs/liblber.a \
2931 endef
2932 endif
2934 define gb_ExternalProject__use_openldap
2935 $(call gb_ExternalProject_use_external_project,$(1),openldap)
2937 endef
2939 endif # SYSTEM_OPENLDAP
2941 ifneq ($(SYSTEM_LIBTOMMATH),)
2943 define gb_LinkTarget__use_libtommath
2944 $(call gb_LinkTarget_set_include,$(1),\
2945 $(LIBTOMMATH_CFLAGS) \
2946 $$(INCLUDE) \
2948 $(call gb_LinkTarget_add_libs,$(1),$(LIBTOMMATH_LIBS))
2950 endef
2952 else # !SYSTEM_LIBTOMMATH
2953 define gb_LinkTarget__use_libtommath
2954 $(call gb_LinkTarget_set_include,$(1),\
2955 -I${WORKDIR}/UnpackedTarball/libtommath \
2956 $$(INCLUDE) \
2958 $(call gb_LinkTarget_add_libs,$(1),\
2959 $(call gb_UnpackedTarball_get_dir,libtommath)/libtommath$(gb_StaticLibrary_PLAINEXT) \
2961 $(call gb_LinkTarget_use_external_project,$(1),libtommath)
2963 endef
2965 endif # SYSTEM_LIBTOMMATH
2967 define gb_ExternalProject__use_libtommath
2968 $(call gb_ExternalProject_use_external_project,$(1),libtommath)
2970 endef
2972 ifeq ($(ENABLE_FIREBIRD_SDBC),TRUE)
2974 ifneq ($(SYSTEM_FIREBIRD),)
2976 define gb_LinkTarget__use_libfbembed
2977 $(call gb_LinkTarget_set_include,$(1),\
2978 $(FIREBIRD_CFLAGS) \
2979 $$(INCLUDE) \
2981 $(call gb_LinkTarget_add_libs,$(1),$(FIREBIRD_LIBS))
2983 endef
2985 else # !SYSTEM_FIREBIRD
2987 $(eval $(call gb_Helper_register_packages_for_install,firebirdsdbc,\
2988 firebird \
2991 #$(call gb_LinkTarget__use_libatomic_ops,$(1))
2992 #$(call gb_LinkTarget__use_libtommath,$(1))
2994 define gb_LinkTarget__use_libfbembed
2995 $(call gb_LinkTarget_use_package,$(1),firebird)
2996 $(call gb_LinkTarget_set_include,$(1),\
2997 -I$(call gb_UnpackedTarball_get_dir,firebird)/gen/$(if $(ENABLE_DEBUG),Debug,Release)/firebird/include \
2998 $$(INCLUDE) \
3000 ifeq ($(COM),MSC)
3001 $(call gb_LinkTarget_add_libs,$(1),\
3002 $(call gb_UnpackedTarball_get_dir,firebird)/gen/$(if $(ENABLE_DEBUG),Debug,Release)/firebird/bin/ifbclient.lib \
3004 else
3005 $(call gb_LinkTarget_add_libs,$(1),\
3006 -L$(call gb_UnpackedTarball_get_dir,firebird)/gen/$(if $(ENABLE_DEBUG),Debug,Release)/firebird/lib -lfbclient \
3008 endif
3010 endef
3013 # endef
3015 endif # SYSTEM_FIREBIRD
3017 else # !ENABLE_FIREBIRD_SDBC
3019 gb_LinkTarget__use_firebird :=
3020 # gb_LinkTarget__use_atomic_ops :=
3021 # gb_LinkTarget__use_libtommath :=
3023 endif # ENABLE_FIREBIRD_SDBC
3026 ifneq ($(SYSTEM_POSTGRESQL),)
3028 define gb_LinkTarget__use_postgresql
3030 $(call gb_LinkTarget_set_include,$(1),\
3031 $(POSTGRESQL_INC) \
3032 $$(INCLUDE) \
3035 $(call gb_LinkTarget_add_libs,$(1),\
3036 -lpq \
3039 $(call gb_LinkTarget_add_ldflags,$(1),\
3040 $(POSTGRESQL_LIB) \
3043 endef
3045 else # !SYSTEM_POSTGRESQL
3047 define gb_LinkTarget__use_postgresql
3049 $(call gb_LinkTarget_use_external_project,$(1),postgresql)
3051 $(call gb_LinkTarget_set_include,$(1),\
3052 -I$(call gb_UnpackedTarball_get_dir,postgresql)/src/include \
3053 -I$(call gb_UnpackedTarball_get_dir,postgresql)/src/interfaces/libpq \
3054 $$(INCLUDE) \
3057 $(call gb_LinkTarget_add_libs,$(1),\
3058 $(call gb_UnpackedTarball_get_dir,postgresql)/src/interfaces/libpq/libpq$(gb_StaticLibrary_PLAINEXT) \
3061 ifeq ($(OS),WNT)
3062 $(call gb_LinkTarget_use_external,$(1),openssl)
3064 $(call gb_LinkTarget_use_system_win32_libs,$(1),\
3065 secur32 \
3066 ws2_32 \
3069 endif
3071 endef
3073 endif # SYSTEM_POSTGRESQL
3075 ifeq ($(ENABLE_KDE5),TRUE)
3077 define gb_LinkTarget__use_kde5
3078 $(call gb_LinkTarget_set_include,$(1),\
3079 $(subst -isystem/,-isystem /,$(filter -I% -isystem%,$(subst -isystem /,-isystem/,$(KF5_CFLAGS)))) \
3080 $$(INCLUDE) \
3083 $(call gb_LinkTarget_add_defs,$(1),\
3084 $(filter-out -I% -isystem%,$(subst -isystem /,-isystem/,$(KF5_CFLAGS))) \
3087 $(call gb_LinkTarget_add_libs,$(1),\
3088 $(KF5_LIBS) \
3091 ifeq ($(COM),GCC)
3092 $(call gb_LinkTarget_add_cxxflags,$(1),\
3093 -Wno-shadow \
3095 endif
3097 endef
3099 else # !ENABLE_KDE5
3101 define gb_LinkTarget__use_kde5
3103 endef
3105 endif # ENABLE_KDE5
3109 ifeq ($(ENABLE_QT5),TRUE)
3111 define gb_LinkTarget__use_qt5
3112 $(call gb_LinkTarget_set_include,$(1),\
3113 $(subst -isystem/,-isystem /,$(filter -I% -isystem%,$(subst -isystem /,-isystem/,$(QT5_CFLAGS)))) \
3114 $$(INCLUDE) \
3117 $(call gb_LinkTarget_add_defs,$(1),\
3118 $(filter-out -I% -isystem%,$(subst -isystem /,-isystem/,$(QT5_CFLAGS))) \
3121 $(call gb_LinkTarget_add_libs,$(1),\
3122 $(QT5_LIBS) \
3125 ifeq ($(COM),GCC)
3126 $(call gb_LinkTarget_add_cxxflags,$(1),\
3127 -Wno-shadow \
3129 endif
3131 endef
3133 else # !ENABLE_QT5
3135 define gb_LinkTarget__use_qt5
3137 endef
3139 endif # ENABLE_QT5
3141 # PYTHON
3142 # extra python_headers external because pyuno wrapper must not link python
3143 ifneq ($(SYSTEM_PYTHON),)
3145 define gb_LinkTarget__use_python_headers
3146 $(call gb_LinkTarget_add_defs,$(1),\
3147 $(filter-out -I% -isystem%,$(subst -isystem /,-isystem/,$(PYTHON_CFLAGS)))) \
3150 $(call gb_LinkTarget_set_include,$(1),\
3151 $(subst -isystem/,-isystem /,$(filter -I% -isystem%,$(subst -isystem /,-isystem/,$(PYTHON_CFLAGS)))) \
3152 $$(INCLUDE) \
3155 endef
3157 define gb_LinkTarget__use_python
3158 $(call gb_LinkTarget__use_python_headers,$(1))
3160 $(call gb_LinkTarget_add_libs,$(1),\
3161 $(PYTHON_LIBS) \
3164 endef
3166 else # !SYSTEM_PYTHON
3168 $(eval $(call gb_Helper_register_packages_for_install,python,\
3169 python3 \
3172 define gb_LinkTarget__use_python_headers
3173 $(call gb_LinkTarget_use_external_project,$(1),python3,full)
3174 $(call gb_LinkTarget_set_include,$(1),\
3175 -I$(call gb_UnpackedTarball_get_dir,python3) \
3176 -I$(call gb_UnpackedTarball_get_dir,python3)/PC \
3177 -I$(call gb_UnpackedTarball_get_dir,python3)/Include \
3178 $$(INCLUDE) \
3181 endef
3183 define gb_LinkTarget__use_python
3184 $(call gb_LinkTarget__use_python_headers,$(1))
3185 ifeq ($(OS),MACOSX)
3186 $(call gb_LinkTarget_use_generated_package,$(1),python3)
3187 else
3188 $(call gb_LinkTarget_use_package,$(1),python3)
3189 endif
3191 ifeq ($(OS),WNT)
3192 $(call gb_LinkTarget_add_libs,$(1),\
3193 $(call gb_UnpackedTarball_get_dir,python3)/PCbuild/$(if $(filter X86_64,$(CPUNAME)),amd64,win32)/python$(PYTHON_VERSION_MAJOR)$(PYTHON_VERSION_MINOR)$(if $(MSVC_USE_DEBUG_RUNTIME),_d).lib \
3195 else ifeq ($(OS),MACOSX)
3196 $(call gb_LinkTarget_add_libs,$(1),\
3197 -F$(call gb_UnpackedTarball_get_dir,python3)/python-inst/@__________________________________________________OOO -framework LibreOfficePython \
3199 else
3200 $(call gb_LinkTarget_add_libs,$(1),\
3201 -L$(call gb_UnpackedTarball_get_dir,python3) \
3202 -lpython$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)m \
3204 endif
3206 endef
3208 endif # SYSTEM_PYTHON
3210 # ORCUS
3211 ifneq ($(SYSTEM_LIBORCUS),)
3213 define gb_LinkTarget__use_orcus
3214 $(call gb_LinkTarget_set_include,$(1),\
3215 $$(INCLUDE) \
3216 $(ORCUS_CFLAGS) \
3218 $(call gb_LinkTarget_add_libs,$(1),$(ORCUS_LIBS))
3219 endef
3221 define gb_LinkTarget__use_orcus-parser
3223 endef
3225 else # !SYSTEM_LIBORCUS
3227 ifeq ($(COM),MSC)
3229 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
3230 orcus \
3231 orcus-parser \
3234 define gb_LinkTarget__use_orcus
3235 $(call gb_LinkTarget_set_include,$(1),\
3236 -I$(call gb_UnpackedTarball_get_dir,liborcus/include) \
3237 $$(INCLUDE) \
3240 $(call gb_LinkTarget_use_libraries,$(1),\
3241 orcus \
3244 endef
3246 define gb_LinkTarget__use_orcus-parser
3247 $(call gb_LinkTarget_set_include,$(1),\
3248 -I$(call gb_UnpackedTarball_get_dir,liborcus/include) \
3249 $$(INCLUDE) \
3252 $(call gb_LinkTarget_use_libraries,$(1),\
3253 orcus-parser \
3256 endef
3258 else # !MSC
3260 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
3261 liborcus \
3264 define gb_LinkTarget__use_orcus
3265 $(call gb_LinkTarget_use_package,$(1),liborcus)
3267 $(call gb_LinkTarget_set_include,$(1),\
3268 -I$(call gb_UnpackedTarball_get_dir,liborcus/include) \
3269 $$(INCLUDE) \
3272 $(call gb_LinkTarget_add_libs,$(1),\
3273 -L$(call gb_UnpackedTarball_get_dir,liborcus)/src/liborcus/.libs -lorcus-0.14 \
3276 $(if $(SYSTEM_BOOST), \
3277 $(call gb_LinkTarget_add_ldflags,$(1),$(BOOST_LDFLAGS)) \
3278 $(call gb_LinkTarget_add_libs,$(1),$(BOOST_SYSTEM_LIB)) \
3281 endef
3283 define gb_LinkTarget__use_orcus-parser
3284 $(call gb_LinkTarget_use_package,$(1),liborcus)
3286 $(call gb_LinkTarget_set_include,$(1),\
3287 -I$(call gb_UnpackedTarball_get_dir,liborcus/include) \
3288 $$(INCLUDE) \
3291 $(call gb_LinkTarget_add_libs,$(1),\
3292 -L$(call gb_UnpackedTarball_get_dir,liborcus)/src/parser/.libs -lorcus-parser-0.14 \
3295 endef
3297 endif # MSC
3299 endif # SYSTEM_LIBORCUS
3301 ifeq ($(ENABLE_EOT),TRUE)
3303 ifneq ($(SYSTEM_LIBEOT),)
3305 define gb_LinkTarget__use_libeot
3306 $(call gb_LinkTarget_set_include,$(1),\
3307 $$(INCLUDE) \
3308 $(LIBEOT_CFLAGS) \
3310 $(call gb_LinkTarget_add_libs,$(1),$(LIBEOT_LIBS))
3312 endef
3314 gb_ExternalProject__use_libeot :=
3316 else # !SYSTEM_LIBEOT
3318 define gb_LinkTarget__use_libeot
3319 $(call gb_LinkTarget_set_include,$(1),\
3320 -I$(call gb_UnpackedTarball_get_dir,libeot)/inc \
3321 $$(INCLUDE) \
3323 $(call gb_LinkTarget_add_libs,$(1),\
3324 $(call gb_UnpackedTarball_get_dir,libeot)/.libs/libeot$(gb_StaticLibrary_PLAINEXT) \
3326 $(call gb_LinkTarget_use_external_project,$(1),libeot)
3328 endef
3330 define gb_ExternalProject__use_libeot
3331 $(call gb_ExternalProject_use_external_project,$(1),libeot)
3333 endef
3335 endif # SYSTEM_LIBEOT
3337 else # !ENABLE_EOT
3339 gb_LinkTarget__use_libeot :=
3340 gb_ExternalProject__use_libeot :=
3342 endif # ENABLE_EOT
3344 ### X11 stuff ###
3346 ifeq ($(USING_X11), TRUE)
3348 define gb_LinkTarget__use_Xrandr
3349 $(call gb_LinkTarget_set_include,$(1),\
3350 $$(INCLUDE) \
3351 $(XRANDR_CFLAGS) \
3354 $(call gb_LinkTarget_add_libs,$(1),\
3355 $(XRANDR_LIBS) \
3357 endef
3359 define gb_LinkTarget__use_Xrender
3360 $(call gb_LinkTarget_set_include,$(1),\
3361 $$(INCLUDE) \
3362 $(XRENDER_CFLAGS) \
3365 $(call gb_LinkTarget_add_libs,$(1),\
3366 $(XRENDER_LIBS) \
3368 endef
3370 endif # USING_X11
3373 gb_ExternalProject__use_nss3:=
3376 ifneq ($(SYSTEM_NSS),)
3378 define gb_LinkTarget__use_nss3
3379 $(call gb_LinkTarget_add_defs,$(1),\
3380 -DSYSTEM_NSS \
3383 $(call gb_LinkTarget_set_include,$(1),\
3384 $$(INCLUDE) \
3385 $(NSS_CFLAGS) \
3388 $(call gb_LinkTarget_add_libs,$(1),\
3389 $(NSS_LIBS) \
3392 endef
3394 define gb_LinkTarget__use_plc4
3395 $(call gb_LinkTarget__use_nss3,$(1))
3397 endef
3399 define gb_LinkTarget__use_ssl3
3400 $(call gb_LinkTarget__use_nss3,$(1))
3402 endef
3404 else # !SYSTEM_NSS
3406 $(eval $(call gb_Helper_register_packages_for_install,ooo, \
3407 nss \
3410 define gb_LinkTarget__use_nss3
3411 $(call gb_LinkTarget_use_package,$(1),nss)
3412 $(call gb_LinkTarget_set_include,$(1),\
3413 $$(INCLUDE) \
3414 -I$(call gb_UnpackedTarball_get_dir,nss)/dist/public/nss \
3415 -I$(call gb_UnpackedTarball_get_dir,nss)/dist/out/include \
3418 ifeq ($(COM),MSC)
3419 $(call gb_LinkTarget_add_libs,$(1),\
3420 $(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib/nspr4.lib \
3421 $(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib/nss3.lib \
3422 $(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib/smime3.lib \
3424 else
3425 $(call gb_LinkTarget_add_libs,$(1),\
3426 -L$(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib \
3427 -lnspr4 \
3428 -lnss3 \
3429 -lsmime3 \
3431 endif
3433 endef
3435 define gb_LinkTarget__use_plc4
3436 $(call gb_LinkTarget_use_package,$(1),nss)
3437 ifeq ($(COM),MSC)
3438 $(call gb_LinkTarget_add_libs,$(1),\
3439 $(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib/plc4.lib \
3441 else
3442 $(call gb_LinkTarget_add_libs,$(1),\
3443 -L$(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib -lplc4 \
3445 endif
3447 endef
3449 define gb_LinkTarget__use_ssl3
3450 $(call gb_LinkTarget_use_package,$(1),nss)
3451 ifeq ($(COM),MSC)
3452 $(call gb_LinkTarget_add_libs,$(1),\
3453 $(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib/ssl3.lib \
3455 else
3456 $(call gb_LinkTarget_add_libs,$(1),\
3457 -L$(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib -lssl3 \
3459 endif
3461 endef
3463 define gb_ExternalProject__use_nss3
3464 $(call gb_ExternalProject_use_package,$(1),nss)
3466 endef
3468 endif # SYSTEM_NSS
3470 ifeq ($(ENABLE_BREAKPAD),TRUE)
3472 define gb_LinkTarget__use_breakpad
3473 $(call gb_LinkTarget_set_include,$(1),\
3474 -I$(call gb_UnpackedTarball_get_dir,breakpad)/src \
3475 $$(INCLUDE) \
3478 ifeq ($(COM),MSC)
3479 $(call gb_LinkTarget_use_static_libraries,$(1),\
3480 breakpad \
3482 else
3483 $(call gb_LinkTarget_add_libs,$(1),\
3484 $(call gb_UnpackedTarball_get_dir,breakpad)/src/client/linux/libbreakpad_client.a \
3486 endif
3488 $(call gb_LinkTarget_use_external_project,$(1),breakpad)
3490 endef
3492 endif # ENABLE_BREAKPAD
3494 ifeq ($(ENABLE_GPGMEPP),TRUE)
3496 ifneq ($(SYSTEM_GPGMEPP),)
3498 gb_ExternalProject__use_gpgmepp:=
3499 gb_ExternalProject__use_libassuan:=
3500 gb_ExternalProject__use_libgpg-error:=
3502 define gb_LinkTarget__use_gpgmepp
3503 $(call gb_LinkTarget_set_include,$(1),\
3504 $$(INCLUDE) \
3505 $$(GPGMEPP_CFLAGS) \
3508 $(call gb_LinkTarget_add_libs,$(1),\
3509 $(GPGMEPP_LIBS) \
3512 endef
3514 else ifneq ($(filter GPGMEPP,$(BUILD_TYPE)),) # NON-SYSTEM_GPGME
3516 define gb_ExternalProject__use_gpgmepp
3517 $(call gb_ExternalProject_use_external_project,$(1),gpgmepp)
3519 endef
3520 define gb_ExternalProject__use_libassuan
3521 $(call gb_ExternalProject_use_external_project,$(1),libassuan)
3523 endef
3524 define gb_ExternalProject__use_libgpg-error
3525 $(call gb_ExternalProject_use_external_project,$(1),libgpg-error)
3527 endef
3529 ifneq ($(filter WNT,$(OS)),)
3531 define gb_LinkTarget__use_libgpg-error
3532 $(call gb_LinkTarget_use_package,$(1),libgpg-error)
3534 $(call gb_LinkTarget_set_include,$(1),\
3535 $(GPG_ERROR_CFLAGS) \
3536 $$(INCLUDE) \
3538 $(call gb_LinkTarget_add_libs,$(1),\
3539 -LIBPATH:$(call gb_UnpackedTarball_get_dir,libgpg-error)/src/.libs libgpg-error.lib \
3542 endef
3544 define gb_LinkTarget__use_libassuan
3545 $(call gb_LinkTarget_use_package,$(1),libassuan)
3547 $(call gb_LinkTarget_set_include,$(1),\
3548 $(LIBASSUAN_CFLAGS) \
3549 $$(INCLUDE) \
3551 $(call gb_LinkTarget_add_libs,$(1),\
3552 -LIBPATH:$(call gb_UnpackedTarball_get_dir,libassuan)/src/.libs libassuan.lib \
3555 endef
3557 define gb_LinkTarget__use_gpgmepp
3558 $(call gb_LinkTarget_set_include,$(1),\
3559 -I$(call gb_UnpackedTarball_get_dir,gpgmepp)/lang/cpp/src \
3560 -I$(call gb_UnpackedTarball_get_dir,gpgmepp)/src \
3561 $$(GPG_ERROR_CFLAGS) \
3562 $$(INCLUDE) \
3564 $(call gb_LinkTarget_use_libraries,$(1),\
3565 gpgmepp \
3568 endef
3570 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
3571 libassuan \
3572 libgpg-error \
3575 $(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
3576 gpgmepp \
3579 $(eval $(call gb_Helper_register_executables_for_install,OOO,ooo, \
3580 gpgme-w32spawn \
3583 endif
3585 ifneq ($(filter MACOSX LINUX,$(OS)),)
3587 define gb_LinkTarget__use_gpgmepp
3588 $(call gb_LinkTarget_use_package,$(1),gpgmepp)
3590 $(call gb_LinkTarget_set_include,$(1),\
3591 -I$(call gb_UnpackedTarball_get_dir,gpgmepp)/lang/cpp/src \
3592 -I$(call gb_UnpackedTarball_get_dir,gpgmepp)/src \
3593 $$(GPG_ERROR_CFLAGS) \
3594 $$(INCLUDE) \
3596 $(call gb_LinkTarget_add_libs,$(1),\
3597 -L$(call gb_UnpackedTarball_get_dir,gpgmepp)/lang/cpp/src/.libs/ -lgpgmepp \
3598 $(if $(filter TRUE,$(DISABLE_DYNLOADING)),-L$(call gb_UnpackedTarball_get_dir,gpgmepp)/src/.libs/ -lgpgme) \
3599 $(if $(filter TRUE,$(DISABLE_DYNLOADING)),$$(GPG_ERROR_LIBS)) \
3600 $(if $(filter TRUE,$(DISABLE_DYNLOADING)),$$(LIBASSUAN_LIBS)) \
3603 endef
3605 $(eval $(call gb_Helper_register_packages_for_install,ooo,\
3606 gpgmepp \
3607 libassuan \
3608 libgpg-error \
3611 endif
3613 endif
3615 else # !ENABLE_GPGMEPP
3617 gb_ExternalProject__use_gpgmepp :=
3618 gb_ExternalProject__use_libassuan :=
3619 gb_ExternalProject__use_libgpg-error :=
3621 gb_LinkTarget__use_gpgmepp :=
3622 gb_LinkTarget__use_libassuan :=
3623 gb_LinkTarget__use_libgpg-error :=
3625 endif # ENABLE_GPGMEPP
3627 define gb_LinkTarget__use_dconf
3628 $(call gb_LinkTarget_add_defs,$(1),$(DCONF_CFLAGS))
3629 $(call gb_LinkTarget_add_libs,$(1),$(DCONF_LIBS))
3630 endef
3632 ### Jars ############################################################
3634 ifneq ($(SYSTEM_HSQLDB),)
3636 define gb_Jar__use_hsqldb
3637 $(call gb_Jar_use_system_jar,$(1),$(HSQLDB_JAR))
3638 endef
3639 define gb_JunitTest__use_hsqldb
3640 $(call gb_JunitTest_use_system_jar,$(1),$(HSQLDB_JAR))
3641 endef
3643 else # !SYSTEM_HSQLDB
3645 ifeq ($(ENABLE_JAVA),TRUE)
3646 $(eval $(call gb_Helper_register_jars_for_install,OOO,ooo, \
3647 hsqldb \
3649 endif
3651 define gb_Jar__use_hsqldb
3652 $(call gb_Jar_use_jar,$(1),hsqldb)
3653 endef
3654 define gb_JunitTest__use_hsqldb
3655 $(call gb_JunitTest_use_jar,$(1),hsqldb)
3656 endef
3658 endif # SYSTEM_HSQLDB
3661 ifeq ($(ENABLE_SCRIPTING_BEANSHELL),TRUE)
3663 ifneq ($(SYSTEM_BSH),)
3665 define gb_Jar__use_bsh
3666 $(call gb_Jar_use_system_jar,$(1),$(BSH_JAR))
3667 endef
3669 else # !SYSTEM_BSH
3671 ifeq ($(ENABLE_JAVA),TRUE)
3672 $(eval $(call gb_Helper_register_jars_for_install,OOO,extensions_bsh, \
3673 bsh \
3675 endif
3677 define gb_Jar__use_bsh
3678 $(call gb_Jar_use_jar,$(1),bsh)
3679 endef
3681 endif # SYSTEM_BSH
3683 endif
3685 ifeq ($(ENABLE_SCRIPTING_JAVASCRIPT),TRUE)
3687 ifneq ($(SYSTEM_RHINO),)
3689 define gb_Jar__use_rhino
3690 $(call gb_Jar_use_system_jar,$(1),$(RHINO_JAR))
3691 endef
3693 else # !SYSTEM_RHINO
3695 ifeq ($(ENABLE_JAVA),TRUE)
3696 $(eval $(call gb_Helper_register_jars_for_install,OOO,extensions_rhino, \
3697 js \
3699 endif
3701 define gb_Jar__use_rhino
3702 $(call gb_Jar_use_jar,$(1),js)
3703 endef
3705 endif # SYSTEM_RHINO
3707 endif
3709 ifneq ($(SYSTEM_APACHE_COMMONS),)
3711 define gb_Jar__use_commons-logging
3712 $(call gb_Jar_use_system_jar,$(1),$(COMMONS_LOGGING_JAR))
3713 endef
3714 gb_ExternalProject__use_commons-logging :=
3716 else # !SYSTEM_APACHE_COMMONS
3718 ifeq ($(ENABLE_JAVA),TRUE)
3719 $(eval $(call gb_Helper_register_jars_for_install,OOO,reportbuilder,\
3720 commons-logging-$(COMMONS_LOGGING_VERSION) \
3722 endif
3724 define gb_Jar__use_commons-logging
3725 $(call gb_Jar_use_external_project,$(1),apache_commons_logging)
3726 $(call gb_Jar_use_jar,$(1),commons-logging-$(COMMONS_LOGGING_VERSION))
3727 endef
3728 define gb_ExternalProject__use_commons-logging
3729 $(call gb_ExternalProject_use_external_project,$(1),apache_commons_logging)
3730 endef
3732 endif # SYSTEM_APACHE_COMMONS
3735 ifneq ($(SYSTEM_JFREEREPORT),)
3737 define gb_Jar__use_flow-engine
3738 $(call gb_Jar_use_system_jar,$(1),$(JFREEREPORT_JAR))
3739 endef
3741 define gb_Jar__use_flute
3742 $(call gb_Jar_use_system_jar,$(1),$(FLUTE_JAR))
3743 endef
3745 define gb_Jar__use_libbase
3746 $(call gb_Jar_use_system_jar,$(1),$(LIBBASE_JAR))
3747 endef
3749 define gb_Jar__use_libfonts
3750 $(call gb_Jar_use_system_jar,$(1),$(LIBFONTS_JAR))
3751 endef
3753 define gb_Jar__use_libformula
3754 $(call gb_Jar_use_system_jar,$(1),$(LIBFORMULA_JAR))
3755 endef
3757 define gb_Jar__use_liblayout
3758 $(call gb_Jar_use_system_jar,$(1),$(LIBLAYOUT_JAR))
3759 endef
3761 define gb_Jar__use_libloader
3762 $(call gb_Jar_use_system_jar,$(1),$(LIBLOADER_JAR))
3763 endef
3765 define gb_Jar__use_librepository
3766 $(call gb_Jar_use_system_jar,$(1),$(LIBREPOSITORY_JAR))
3767 endef
3769 define gb_Jar__use_libserializer
3770 $(call gb_Jar_use_system_jar,$(1),$(LIBSERIALIZER_JAR))
3771 endef
3773 define gb_Jar__use_libxml
3774 $(call gb_Jar_use_system_jar,$(1),$(LIBXML_JAR))
3775 endef
3777 define gb_Jar__use_sac
3778 $(call gb_Jar_use_system_jar,$(1),$(SAC_JAR))
3779 endef
3781 else # !SYSTEM_JFREEREPORT
3783 ifeq ($(ENABLE_JAVA),TRUE)
3784 $(eval $(call gb_Helper_register_jars_for_install,OOO,reportbuilder,\
3785 flow-engine \
3786 flute-1.1.6 \
3787 libbase-1.1.6 \
3788 libfonts-1.1.6 \
3789 libformula-1.1.7 \
3790 liblayout \
3791 libloader-1.1.6 \
3792 librepository-1.1.6 \
3793 libserializer-1.1.6 \
3794 libxml-1.1.7 \
3795 sac \
3797 endif
3799 define gb_Jar__use_flow-engine
3800 $(call gb_Jar_use_jar,$(1),flow-engine)
3801 endef
3803 define gb_Jar__use_flute
3804 $(call gb_Jar_use_jar,$(1),flute-1.1.6)
3805 endef
3807 define gb_Jar__use_libbase
3808 $(call gb_Jar_use_jar,$(1),libbase-1.1.6)
3809 endef
3811 define gb_Jar__use_libfonts
3812 $(call gb_Jar_use_jar,$(1),libfonts-1.1.6)
3813 endef
3815 define gb_Jar__use_libformula
3816 $(call gb_Jar_use_jar,$(1),libformula-1.1.7)
3817 endef
3819 define gb_Jar__use_liblayout
3820 $(call gb_Jar_use_jar,$(1),liblayout)
3821 endef
3823 define gb_Jar__use_libloader
3824 $(call gb_Jar_use_jar,$(1),libloader-1.1.6)
3825 endef
3827 define gb_Jar__use_librepository
3828 $(call gb_Jar_use_jar,$(1),librepository-1.1.6)
3829 endef
3831 define gb_Jar__use_libserializer
3832 $(call gb_Jar_use_jar,$(1),libserializer-1.1.6)
3833 endef
3835 define gb_Jar__use_libxml
3836 $(call gb_Jar_use_jar,$(1),libxml-1.1.7)
3837 endef
3839 define gb_Jar__use_sac
3840 $(call gb_Jar_use_jar,$(1),sac)
3841 endef
3843 endif # SYSTEM_JFREEREPORT
3846 # Executables
3848 # FIXME: the library target should be for build too
3849 define gb_Executable__register_bestreversemap
3850 $(call gb_Executable_add_runtime_dependencies,bestreversemap,\
3851 $(if $(filter $(OS),ANDROID),,$(if $(filter TRUE,$(DISABLE_DYNLOADING)),,$(call gb_Library_get_target,sal_textenc))) \
3853 endef
3855 # TODO depending on the whole URE might be overkill, but I do not have a
3856 # Windows machine to debug it...
3857 # FIXME: the library target should be for build too
3858 define gb_Executable__register_climaker
3859 $(call gb_Executable_add_runtime_dependencies,climaker,\
3860 $(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
3861 $(INSTROOT_FOR_BUILD)/$(LIBO_URE_MISC_FOLDER)/services.rdb \
3862 $(call gb_UnoApi_get_target,udkapi) \
3863 $(INSTROOT_FOR_BUILD)/$(LIBO_URE_ETC_FOLDER)/$(call gb_Helper_get_rcfile,uno)
3865 endef
3867 define gb_Executable__register_cppumaker
3868 $(call gb_Executable_add_runtime_dependencies,cppumaker,\
3869 $(if $(filter $(OS),ANDROID),,$(if $(filter TRUE,$(DISABLE_DYNLOADING)),,$(call gb_Library_get_target,sal_textenc))) \
3871 endef
3873 # This is used to determine what we need for 'build' platform.
3874 # FIXME: the library target should be for build too
3875 define gb_Executable__register_gengal
3876 $(call gb_Executable_add_runtime_dependencies,gengal,\
3877 $(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
3878 $(call gb_Package_get_target_for_build,postprocess_images) \
3879 $(call gb_Package_get_target_for_build,postprocess_registry) \
3880 $(INSTROOT_FOR_BUILD)/$(LIBO_URE_ETC_FOLDER)/$(call gb_Helper_get_rcfile,uno) \
3881 $(INSTROOT_FOR_BUILD)/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,fundamental) \
3882 $(INSTROOT_FOR_BUILD)/$(LIBO_ETC_FOLDER)/$(call gb_Helper_get_rcfile,louno) \
3883 $(INSTROOT_FOR_BUILD)/$(LIBO_URE_MISC_FOLDER)/services.rdb \
3884 $(INSTROOT_FOR_BUILD)/$(LIBO_ETC_FOLDER)/services/services.rdb \
3885 $(call gb_UnoApi_get_target,offapi) \
3886 $(call gb_UnoApi_get_target,udkapi) \
3888 endef
3890 ifeq ($(SYSTEM_ICU),)
3892 define gb_Executable__register_gendict
3893 $(call gb_Executable_add_runtime_dependencies,gendict,\
3894 $(call gb_Package_get_target_for_build,icu) \
3895 $(call gb_Package_get_target_for_build,icu_ure) \
3897 endef
3899 endif
3901 define gb_Executable__register_idlc
3902 $(call gb_Executable_add_runtime_dependencies,idlc,\
3903 $(call gb_ExternalExecutable_get_dependencies,ucpp) \
3905 endef
3907 define gb_Executable__register_localize
3908 $(call gb_Executable_add_runtime_dependencies,localize,\
3909 $(foreach exec,cfgex helpex propex treex ulfex xrmex,\
3910 $(call gb_Executable_get_runtime_dependencies,$(exec)) \
3913 endef
3915 # FIXME ure/services.rdb needs cleanup
3916 # The dependencies on ure/services.rdb and udkapi.rdb are implicitly required
3917 # due to the settings for URE_SERVICES and URE_TYPES in cppuhelper/source/unorc:
3918 # FIXME: the library target should be for build too
3919 define gb_Executable__register_saxparser
3920 $(call gb_Executable_add_runtime_dependencies,saxparser,\
3921 $(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
3922 $(call gb_Package_get_target_for_build,instsetoo_native_setup_ure) \
3923 $(call gb_Rdb_get_target_for_build,saxparser) \
3924 $(INSTROOT_FOR_BUILD)/$(LIBO_URE_MISC_FOLDER_FOR_BUILD)/services.rdb \
3925 $(call gb_UnoApi_get_target,udkapi) \
3927 endef
3929 # NOTE: the dependencies on ure/services.rdb and udkapi.rdb are implicitly
3930 # required due to the settings for URE_SERVICES and URE_TYPES in
3931 # cppuhelper/source/unorc
3932 # FIXME: the library target should be for build too
3933 define gb_Executable__register_uno
3934 $(call gb_Executable_add_runtime_dependencies,uno,\
3935 $(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
3936 $(INSTROOT_FOR_BUILD)/$(LIBO_URE_MISC_FOLDER)/services.rdb \
3937 $(call gb_UnoApi_get_target,udkapi) \
3939 endef
3942 # External executables
3944 ifneq ($(SYSTEM_LIBXML_FOR_BUILD),)
3946 gb_ExternalExecutable__register_xmllint :=
3948 else # ! SYSTEM_LIBXML_FOR_BUILD
3950 define gb_ExternalExecutable__register_xmllint
3951 $(call gb_ExternalExecutable_set_internal,xmllint,$(WORKDIR_FOR_BUILD)/UnpackedTarball/libxml2/$(if $(filter MSC,$(COM)),win32/bin.msvc)/xmllint$(gb_Executable_EXT_for_build),libxml2)
3952 $(call gb_ExternalExecutable_add_dependencies,xmllint,\
3953 $(if $(filter WNT,$(OS)),$(call gb_Package_get_target,icu_ure)) \
3954 $(call gb_Package_get_target,libxml2) \
3957 endef
3959 endif # SYSTEM_LIBXML_FOR_BUILD
3961 ifneq ($(SYSTEM_LIBXSLT_FOR_BUILD),)
3963 gb_ExternalExecutable__register_xsltproc :=
3965 else # ! SYSTEM_LIBXSLT_FOR_BUILD
3967 define gb_ExternalExecutable__register_xsltproc
3968 $(call gb_ExternalExecutable_set_internal,xsltproc,$(WORKDIR_FOR_BUILD)/UnpackedTarball/libxslt/$(if $(filter MSC,$(COM)),win32/bin.msvc,xsltproc)/xsltproc$(gb_Executable_EXT_for_build),libxslt)
3969 $(call gb_ExternalExecutable_add_dependencies,xsltproc,\
3970 $(if $(filter WNT,$(OS)),$(call gb_Package_get_target,icu_ure)) \
3971 $(call gb_Package_get_target,libxml2) \
3972 $(call gb_Package_get_target,libxslt) \
3975 endef
3977 endif # SYSTEM_LIBXSLT_FOR_BUILD
3979 ifneq (,$(SYSTEM_UCPP))
3981 gb_ExternalExecutable__register_ucpp :=
3983 else # ! SYSTEM_UCPP
3985 define gb_ExternalExecutable__register_ucpp
3986 $(call gb_ExternalExecutable_set_internal,ucpp,$(INSTDIR_FOR_BUILD)/$(SDKDIRNAME)/bin/ucpp$(gb_Executable_EXT_for_build))
3988 endef
3990 endif # SYSTEM_UCPP
3992 ifeq (,$(PYTHON_FOR_BUILD))
3994 define gb_ExternalExecutable__register_python
3995 ifeq ($(OS),MACOSX)
3997 # use set_external, to avoid having the command added as prerequisite for the
3998 # targets that make use of it. (Otherwise make will choke as it doesn't have a
3999 # matching rule to build that specific file)
4000 $(call gb_ExternalExecutable_set_external,python,$(call gb_UnpackedTarball_get_dir,python3)/python-inst/@__________________________________________________OOO/LibreOfficePython.framework/Versions/$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)/bin/python$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR))
4001 # the Zip ensures that internal python has been built (cannot use the Package
4002 # target, as that is not used on Mac)
4003 $(call gb_ExternalExecutable_add_dependencies,python,$(call gb_GeneratedPackage_get_target_for_build,python3))
4005 else
4007 $(call gb_ExternalExecutable_set_internal,python,$(INSTROOT)/$(LIBO_BIN_FOLDER)/$(if $(filter WNT,$(OS)),python-core-$(PYTHON_VERSION)/bin/python.exe,python.bin))
4008 $(call gb_ExternalExecutable_set_precommand,python,$(subst $$,$$$$,$(gb_Python_PRECOMMAND)))
4009 $(call gb_ExternalExecutable_add_dependencies,python,$(call gb_Package_get_target_for_build,python3))
4011 endif
4013 endef
4015 else
4017 define gb_ExternalExecutable__register_python
4018 $(call gb_ExternalExecutable_set_external,python,$(PYTHON_FOR_BUILD))
4019 $(call gb_ExternalExecutable_set_precommand,python,PYTHONPATH=$$$$PYTHONPATH$$$${PYTHONPATH:+$$$${PYPATH:+:}}$$$$PYPATH)
4021 endef
4023 endif # PYTHON_FOR_BUILD
4025 ifneq ($(SYSTEM_GENBRK),)
4027 define gb_ExternalExecutable__register_genbrk
4028 $(call gb_ExternalExecutable_set_external,genbrk,$(SYSTEM_GENBRK))
4030 endef
4032 else # ! SYSTEM_GENBRK
4034 define gb_ExternalExecutable__register_genbrk
4035 $(call gb_ExternalExecutable_set_internal,genbrk,$(WORKDIR_FOR_BUILD)/UnpackedTarball/icu/source/bin/genbrk$(gb_Executable_EXT_for_build),icu)
4036 $(call gb_ExternalExecutable_set_precommand,genbrk,$(subst $$,$$$$,$(gb_ICU_PRECOMMAND)))
4037 $(call gb_ExternalExecutable_add_dependencies,genbrk,\
4038 $(call gb_Package_get_target_for_build,icu) \
4039 $(call gb_Package_get_target_for_build,icu_ure) \
4042 endef
4044 endif
4046 ifneq ($(SYSTEM_GENCCODE),)
4048 define gb_ExternalExecutable__register_genccode
4049 $(call gb_ExternalExecutable_set_external,genccode,$(SYSTEM_GENCCODE))
4051 endef
4053 else # ! SYSTEM_GENCCODE
4055 define gb_ExternalExecutable__register_genccode
4056 $(call gb_ExternalExecutable_set_internal,genccode,$(WORKDIR_FOR_BUILD)/UnpackedTarball/icu/source/bin/genccode$(gb_Executable_EXT_for_build),icu)
4057 $(call gb_ExternalExecutable_set_precommand,genccode,$(subst $$,$$$$,$(gb_ICU_PRECOMMAND)))
4058 $(call gb_ExternalExecutable_add_dependencies,genccode,\
4059 $(call gb_Package_get_target_for_build,icu) \
4060 $(call gb_Package_get_target_for_build,icu_ure) \
4063 endef
4065 endif
4067 ifneq ($(SYSTEM_GENCMN),)
4069 define gb_ExternalExecutable__register_gencmn
4070 $(call gb_ExternalExecutable_set_external,gencmn,$(SYSTEM_GENCMN))
4072 endef
4074 else # ! SYSTEM_GENCMN
4076 define gb_ExternalExecutable__register_gencmn
4077 $(call gb_ExternalExecutable_set_internal,gencmn,$(WORKDIR_FOR_BUILD)/UnpackedTarball/icu/source/bin/gencmn$(gb_Executable_EXT_for_build),icu)
4078 $(call gb_ExternalExecutable_set_precommand,gencmn,$(subst $$,$$$$,$(gb_ICU_PRECOMMAND)))
4079 $(call gb_ExternalExecutable_add_dependencies,gencmn,\
4080 $(call gb_Package_get_target_for_build,icu) \
4081 $(call gb_Package_get_target_for_build,icu_ure) \
4084 endef
4086 endif
4088 ifeq (OWNCLOUD_ANDROID_LIB,$(filter OWNCLOUD_ANDROID_LIB,$(BUILD_TYPE)))
4090 $(eval $(call gb_Helper_register_jars,OXT,\
4091 owncloud-android-library \
4094 define gb_Jar__use_owncloud_android_lib
4095 $(call gb_Jar_use_external_project,$(1),owncloud-android-lib)
4096 $(call gb_Jar_use_external_jar,$(1),$(call gb_UnpackedTarball_get_dir,owncloud-android-lib)/bin/owncloud-android-library.jar)
4097 endef
4098 define gb_ExternalProject__use_owncloud_android_lib
4099 $(call gb_ExternalProject_use_external_project,$(1),owncloud_android_lib)
4100 endef
4102 endif
4104 ifneq ($(ENABLE_ONLINE_UPDATE_MAR),)
4105 ifneq ($(SYSTEM_BZIP2),)
4107 define gb_LinkTarget__use_bzip2
4108 $(call gb_LinkTarget_set_include,$(1),\
4109 $(BZIP2_CFLAGS) \
4110 $$(INCLUDE) \
4112 $(call gb_LinkTarget_add_libs,$(1),$(BZIP2_LIBS))
4114 endef
4116 gb_ExternalProject__use_bzip2 :=
4118 else # !SYSTEM_BZIP2
4120 define gb_LinkTarget__use_bzip2
4121 $(call gb_LinkTarget_set_include,$(1),\
4122 -I$(call gb_UnpackedTarball_get_dir,bzip2) \
4123 $$(INCLUDE) \
4126 ifeq ($(COM),MSC)
4127 $(call gb_LinkTarget_add_libs,$(1),\
4128 $(call gb_UnpackedTarball_get_dir,bzip2)/libbz2.lib \
4130 else
4131 $(call gb_LinkTarget_add_libs,$(1),\
4132 -L$(call gb_UnpackedTarball_get_dir,bzip2) -lbz2 \
4134 endif
4136 $(call gb_LinkTarget_use_external_project,$(1),bzip2)
4137 endef
4139 define gb_ExternalProject__use_bzip2
4140 $(call gb_ExternalProject_use_external_project,$(1),bzip2)
4141 endef
4143 endif
4144 endif
4146 define gb_LinkTarget__use_clew
4147 $(call gb_LinkTarget_set_include,$(1), \
4148 -I$(SRCDIR)/external/clew/source/include \
4149 $$(INCLUDE) \
4151 $(call gb_LinkTarget_use_libraries,$(1),clew)
4152 endef
4154 ifneq ($(ENABLE_PDFIUM),)
4155 define gb_LinkTarget__use_pdfium
4156 $(call gb_LinkTarget_set_include,$(1),\
4157 -I$(call gb_UnpackedTarball_get_dir,pdfium)/public \
4158 $$(INCLUDE) \
4160 $(call gb_LinkTarget_use_libraries,$(1),pdfium)
4161 endef
4162 $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo,\
4163 pdfium \
4165 endif
4167 $(eval $(call gb_Helper_register_packages_for_install,ucrt_binarytable,\
4168 $(if $(UCRT_REDISTDIR),ucrt) \
4171 # vim: set noet sw=4 ts=4: