2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-04-01 20:49:35 +00:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2012-07-27 22:14:39 -04:00
|
|
|
#
|
2011-04-01 20:49:35 +00:00
|
|
|
# Copyright 2009 by Sun Microsystems, Inc.
|
|
|
|
#
|
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
#
|
|
|
|
# This file is part of OpenOffice.org.
|
|
|
|
#
|
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
# this file describes all the external libraries
|
|
|
|
# depending on the configure options these may be taken from the system,
|
|
|
|
# or the internal/bundled copy may be built.
|
|
|
|
|
|
|
|
# for every external, a function gb_LinkTarget_use__FOO is defined,
|
|
|
|
# once for the system case, once for the internal case.
|
|
|
|
|
|
|
|
# in the system case, no libraries should be registered, but the target-local
|
|
|
|
# variable LIBS should be set to FOO_LIBS, and INCLUDES to FOO_CFLAGS.
|
|
|
|
|
2012-04-07 13:59:33 +02:00
|
|
|
# External headers
|
|
|
|
|
2013-03-06 16:33:07 +01:00
|
|
|
ifeq ($(SYSTEM_MARIADB),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mariadb
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(MARIADB_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(MARIADB_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
gb_ExternalProject__use_mariadb :=
|
|
|
|
|
|
|
|
else # !SYSTEM_MARIADB
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
mariadblib \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mariadb
|
2013-05-08 00:35:28 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(MARIADB_CFLAGS) \
|
|
|
|
)
|
2013-03-06 16:33:07 +01:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
mariadblib \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
define gb_ExternalProject__use_mariadb
|
|
|
|
$(call gb_ExternalProject_use_static_libraries,$(1),mariadblib)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_MARIADB
|
|
|
|
|
|
|
|
|
2011-09-09 17:42:24 -04:00
|
|
|
ifeq ($(SYSTEM_MESA_HEADERS),YES)
|
|
|
|
|
2012-04-07 13:59:33 +02:00
|
|
|
gb_LinkTarget__use_mesa_headers :=
|
2011-09-09 17:42:24 -04:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2012-04-07 13:59:33 +02:00
|
|
|
define gb_LinkTarget__use_mesa_headers
|
2013-05-06 17:43:54 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(SRCDIR)/Mesa/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-04-07 13:59:33 +02:00
|
|
|
|
2011-09-09 17:42:24 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-11-15 18:09:55 +01:00
|
|
|
ifeq ($(SYSTEM_NPAPI_HEADERS),YES)
|
2012-04-07 13:59:33 +02:00
|
|
|
|
2013-05-07 00:50:15 +02:00
|
|
|
# yes this uses internal headers too...
|
|
|
|
# they are split across 2 dirs for this reason
|
2012-11-15 18:09:55 +01:00
|
|
|
define gb_LinkTarget__use_npapi_headers
|
2012-06-02 21:54:26 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2012-11-15 18:09:55 +01:00
|
|
|
$(NPAPI_HEADERS_CFLAGS) \
|
2013-05-07 00:50:15 +02:00
|
|
|
-I$(SRCDIR)/np_sdk \
|
2012-04-07 13:59:33 +02:00
|
|
|
$$(INCLUDE) \
|
2012-06-02 21:54:26 +02:00
|
|
|
)
|
2012-04-07 13:59:33 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-11-15 18:09:55 +01:00
|
|
|
else #!SYSTEM_NPAPI_HEADERS
|
2012-04-07 13:59:33 +02:00
|
|
|
|
2012-11-15 18:09:55 +01:00
|
|
|
define gb_LinkTarget__use_npapi_headers
|
2012-06-02 21:54:26 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-05-07 00:50:15 +02:00
|
|
|
-I$(SRCDIR)/np_sdk/inc \
|
|
|
|
-I$(SRCDIR)/np_sdk \
|
2012-04-07 13:59:33 +02:00
|
|
|
$$(INCLUDE) \
|
2012-06-02 21:54:26 +02:00
|
|
|
)
|
2012-04-07 13:59:33 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-11-15 18:09:55 +01:00
|
|
|
endif #SYSTEM_NPAPI_HEADERS
|
2012-04-07 13:59:33 +02:00
|
|
|
|
2012-04-07 13:46:59 +02:00
|
|
|
ifeq ($(SYSTEM_ODBC_HEADERS),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_odbc_headers
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DSYSTEM_ODBC_HEADERS \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_odbc_headers
|
2013-05-06 20:09:47 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(SRCDIR)/unixODBC/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-04-07 13:46:59 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-08-25 01:29:00 +02:00
|
|
|
ifeq ($(SYSTEM_VIGRA),YES)
|
|
|
|
|
|
|
|
gb_LinkTarget__use_vigra_headers :=
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_vigra_headers
|
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),vigra)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,vigra/include) \
|
2012-08-25 01:29:00 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-08-29 12:27:17 +02:00
|
|
|
ifeq ($(SYSTEM_MDDS),YES)
|
|
|
|
|
|
|
|
gb_LinkTarget__use_mdds_headers :=
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mdds_headers
|
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),mdds)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,mdds/include) \
|
2012-08-29 12:27:17 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2013-05-06 20:23:49 +02:00
|
|
|
ifeq (SANE,$(filter SANE,$(BUILD_TYPE)))
|
2012-12-21 14:08:27 +01:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_sane_headers
|
2013-05-06 20:14:35 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-05-06 20:23:49 +02:00
|
|
|
-I$(SRCDIR)/$(if $(filter WNT,$(OS)),twain,sane)/inc \
|
2013-05-06 20:14:35 +02:00
|
|
|
$$(INCLUDE) \
|
2012-12-21 14:08:27 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
gb_LinkTarget__use_sane_headers :=
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-04-07 13:59:33 +02:00
|
|
|
# External libraries
|
|
|
|
|
2011-07-25 10:34:22 +02:00
|
|
|
ifeq ($(SYSTEM_CPPUNIT),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_cppunit
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(CPPUNIT_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(CPPUNIT_LIBS) \
|
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-07-25 10:34:22 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2012-12-07 08:11:16 +01:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_NONE,\
|
2011-07-25 10:34:22 +02:00
|
|
|
cppunit \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_cppunit
|
2012-11-25 16:37:40 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),cppunit)
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-07-25 10:34:22 +02:00
|
|
|
cppunit \
|
|
|
|
)
|
2012-11-25 16:37:40 -05:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,cppunit/include)\
|
2012-11-25 16:37:40 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-07-25 10:34:22 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
2011-04-01 20:49:35 +00:00
|
|
|
|
2013-01-03 12:48:14 +02:00
|
|
|
define gb_LinkTarget__use_iconv
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-liconv)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-03-06 11:45:50 +01:00
|
|
|
ifeq ($(SYSTEM_MARIADB),YES)
|
2013-01-23 16:29:08 -05:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_mysql
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2013-03-06 11:45:50 +01:00
|
|
|
-DSYSTEM_MARIADB \
|
2013-01-23 16:29:08 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
2013-03-06 16:33:07 +01:00
|
|
|
$(MARIADB_LIBS) \
|
2013-01-23 16:29:08 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-03-06 16:33:07 +01:00
|
|
|
$(MARIADB_CFLAGS) \
|
2013-01-23 16:29:08 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mysql
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(SYSTEM_MYSQL_CPPCONN),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mysqlcppconn
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
-lmysqlcppconn \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2013-01-24 15:43:52 -05:00
|
|
|
-DSYSTEM_MYSQL_CPPCONN \
|
2013-01-23 16:29:08 -05:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2013-01-28 23:53:30 +01:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_NONE,\
|
2013-01-23 16:29:08 -05:00
|
|
|
mysqlcppconn \
|
|
|
|
))
|
|
|
|
|
2013-01-28 23:53:30 +01:00
|
|
|
# note: this does not link mysqlcppconn, it is loaded via osl_loadModuleRelative
|
2013-01-23 16:29:08 -05:00
|
|
|
define gb_LinkTarget__use_mysqlcppconn
|
|
|
|
|
2013-01-28 23:53:30 +01:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),mysqlcppconn)
|
|
|
|
|
2013-01-24 15:43:52 -05:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DCPPCONN_LIB_BUILD \
|
|
|
|
)
|
|
|
|
|
2013-01-23 16:29:08 -05:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,mysqlcppconn) \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,mysqlcppconn)/cppconn \
|
2013-01-23 16:29:08 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
ifeq ($(SYSTEM_ZLIB),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_zlib
|
2011-04-13 16:11:41 +00:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
-DSYSTEM_ZLIB \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-lz)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-10-26 15:33:26 +02:00
|
|
|
# nothing on system
|
|
|
|
define gb_LinkTarget__use_zlib_x64
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-03-14 12:45:24 +01:00
|
|
|
gb_ExternalProject__use_zlib :=
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
else # !SYSTEM_ZLIB
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-04-13 14:06:05 +01:00
|
|
|
zlib \
|
2012-10-26 15:33:26 +02:00
|
|
|
zlib_x64 \
|
2011-04-01 20:49:35 +00:00
|
|
|
))
|
|
|
|
|
2012-10-26 15:33:26 +02:00
|
|
|
define gb_LinkTarget__use_zlib_multiarch
|
|
|
|
$(if $(2),,$(call gb_Output_error,gb_LinkTarget__use_zlib_multiarch needs two arguments))
|
|
|
|
|
2012-09-08 16:29:05 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-05-08 15:47:24 +02:00
|
|
|
$(ZLIB_CFLAGS) \
|
2012-09-08 16:29:05 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-10-26 15:33:26 +02:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-10-26 15:33:26 +02:00
|
|
|
$(2) \
|
2011-04-01 20:49:35 +00:00
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-10-26 15:33:26 +02:00
|
|
|
define gb_LinkTarget__use_zlib
|
|
|
|
$(call gb_LinkTarget__use_zlib_multiarch,$(1),zlib)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_zlib_x64
|
|
|
|
$(call gb_LinkTarget__use_zlib_multiarch,$(1),zlib_x64)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-03-14 12:45:24 +01:00
|
|
|
define gb_ExternalProject__use_zlib
|
|
|
|
$(call gb_ExternalProject_use_static_libraries,$(1),zlib)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endif # SYSTEM_ZLIB
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(SYSTEM_JPEG),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_jpeg
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-ljpeg)
|
|
|
|
$(call gb_LinkTarget_set_ldflags,$(1),\
|
2011-04-13 16:11:39 +00:00
|
|
|
$$(filter-out -L/usr/lib/jvm%,$$(T_LDFLAGS)) \
|
2011-04-01 20:49:35 +00:00
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_JPEG
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-10-12 09:32:02 +02:00
|
|
|
jpeg \
|
2011-04-01 20:49:35 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_jpeg
|
2012-01-21 00:46:29 +01:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-05-08 17:30:40 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,jpeg) \
|
2012-01-21 00:46:29 +01:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-10-12 09:32:02 +02:00
|
|
|
jpeg \
|
2011-04-01 20:49:35 +00:00
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_JPEG
|
|
|
|
|
2012-10-28 12:00:06 -04:00
|
|
|
ifeq ($(SYSTEM_MYTHES),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mythes
|
2012-10-28 23:00:03 +01:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(MYTHES_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(MYTHES_LIBS))
|
|
|
|
|
2012-10-28 12:00:06 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_MYTHES
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
mythes \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mythes
|
2013-05-07 23:59:00 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,mythes) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-10-28 12:00:06 -04:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
mythes \
|
|
|
|
)
|
2012-10-28 22:40:30 +01:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
mythes \
|
2012-10-28 12:00:06 -04:00
|
|
|
)
|
2012-10-28 22:40:30 +01:00
|
|
|
|
2012-10-28 12:00:06 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_MYTHES
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
|
|
|
|
ifeq ($(SYSTEM_EXPAT),YES)
|
|
|
|
|
2013-04-09 09:22:20 +02:00
|
|
|
define gb_LinkTarget__use_expat_impl
|
|
|
|
$(if $(2),,$(error gb_LinkTarget__use_expat_impl needs additional parameter))
|
2011-04-01 20:49:35 +00:00
|
|
|
|
2011-04-13 16:11:41 +00:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
-DSYSTEM_EXPAT \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-lexpat)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-11-17 00:36:29 +01:00
|
|
|
gb_ExternalProject__use_expat :=
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
else # !SYSTEM_EXPAT
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-11-14 20:43:57 +01:00
|
|
|
expat \
|
2012-10-25 13:02:55 +02:00
|
|
|
expat_x64 \
|
2011-04-01 20:49:35 +00:00
|
|
|
))
|
|
|
|
|
2013-04-09 09:22:20 +02:00
|
|
|
define gb_LinkTarget__use_expat_impl
|
|
|
|
$(if $(2),,$(error gb_LinkTarget__use_expat_impl needs additional parameter))
|
2011-04-01 20:49:35 +00:00
|
|
|
|
2012-10-12 12:28:11 -07:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-05-07 21:47:18 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,expat)/lib \
|
2012-10-12 12:28:11 -07:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
$(2) \
|
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-11-17 00:36:29 +01:00
|
|
|
define gb_ExternalProject__use_expat
|
|
|
|
$(call gb_ExternalProject_use_static_libraries,$(1),expat)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endif # SYSTEM_EXPAT
|
|
|
|
|
2013-04-09 09:22:20 +02:00
|
|
|
define gb_LinkTarget__use_expat
|
|
|
|
$(call gb_LinkTarget__use_expat_impl,$(1),expat)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2013-04-09 09:22:20 +02:00
|
|
|
define gb_LinkTarget__use_expat_x64
|
|
|
|
$(call gb_LinkTarget__use_expat_impl,$(1),expat_x64)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-04-19 21:10:00 +03:00
|
|
|
ifeq ($(OS),ANDROID)
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
fontconfig \
|
|
|
|
freetype \
|
|
|
|
))
|
|
|
|
endif
|
2011-04-01 20:49:35 +00:00
|
|
|
|
2012-11-03 13:54:46 -04:00
|
|
|
ifeq ($(SYSTEM_HYPH),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_hyphen
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(HYPHEN_LIB))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_HYPH
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
hyphen \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_hyphen
|
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),hyphen)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,hyphen)\
|
2012-11-03 13:54:46 -04:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
hyphen \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_HYPH
|
|
|
|
|
2011-12-03 14:44:12 +01:00
|
|
|
ifeq ($(SYSTEM_HUNSPELL),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_hunspell
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(HUNSPELL_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(HUNSPELL_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_HUNSPELL
|
|
|
|
|
2011-12-27 00:16:36 +01:00
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-10-28 22:40:30 +01:00
|
|
|
hunspell \
|
2011-12-27 00:16:36 +01:00
|
|
|
))
|
|
|
|
|
2011-12-03 14:44:12 +01:00
|
|
|
define gb_LinkTarget__use_hunspell
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DHUNSPELL_STATIC \
|
|
|
|
)
|
2012-10-29 23:29:37 +01:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),hunspell)
|
2011-12-03 14:44:12 +01:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,hunspell/src/hunspell)\
|
2012-10-29 23:29:37 +01:00
|
|
|
$$(INCLUDE) \
|
2011-12-03 14:44:12 +01:00
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-10-28 22:40:30 +01:00
|
|
|
hunspell \
|
2011-12-03 14:44:12 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_HUNSPELL
|
|
|
|
|
|
|
|
|
2012-05-10 08:55:12 +02:00
|
|
|
ifeq ($(SYSTEM_BOOST),YES)
|
|
|
|
|
2013-05-24 15:00:14 +03:00
|
|
|
define gb_LinkTarget__use_boost_date_time
|
2012-06-06 17:04:01 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(BOOST_CPPFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_ldflags,$(1),\
|
|
|
|
$(BOOST_LDFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(BOOST_DATE_TIME_LIB) \
|
|
|
|
)
|
|
|
|
|
2012-05-10 08:55:12 +02:00
|
|
|
endef
|
|
|
|
|
2013-05-24 15:00:14 +03:00
|
|
|
define gb_LinkTarget__use_boost_system
|
2013-05-22 19:50:22 +03:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(BOOST_CPPFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_ldflags,$(1),\
|
|
|
|
$(BOOST_LDFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(BOOST_SYSTEM_LIB) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-05-24 15:00:14 +03:00
|
|
|
gb_ExternalProject__use_boost_system :=
|
2013-05-22 19:50:22 +03:00
|
|
|
|
2013-02-16 22:56:19 +01:00
|
|
|
define gb_LinkTarget__use_boost_headers
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(BOOST_CPPFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-11-10 08:56:12 -05:00
|
|
|
gb_ExternalProject__use_boost_headers:=
|
|
|
|
|
2012-05-10 08:55:12 +02:00
|
|
|
else # !SYSTEM_BOOST
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2013-05-24 15:00:14 +03:00
|
|
|
boost_date_time \
|
|
|
|
boost_system \
|
2012-09-06 15:10:19 -04:00
|
|
|
))
|
|
|
|
|
|
|
|
ifeq ($(OS),WNT)
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-09-06 13:57:22 -04:00
|
|
|
boostthread \
|
2012-05-10 08:55:12 +02:00
|
|
|
))
|
2012-09-06 20:22:11 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_boostthread
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DBOOST_ALL_NO_LIB \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
boostthread \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # WNT
|
2012-05-10 08:55:12 +02:00
|
|
|
|
2013-05-24 15:00:14 +03:00
|
|
|
define gb_LinkTarget__use_boost_date_time
|
2012-09-06 20:22:11 +02:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DBOOST_ALL_NO_LIB \
|
|
|
|
)
|
|
|
|
|
2012-05-10 08:55:12 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2013-05-24 15:00:14 +03:00
|
|
|
boost_date_time \
|
2012-05-10 08:55:12 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-05-24 15:00:14 +03:00
|
|
|
define gb_LinkTarget__use_boost_system
|
2013-05-22 19:50:22 +03:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DBOOST_ALL_NO_LIB \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2013-05-24 15:00:14 +03:00
|
|
|
boost_system \
|
2013-05-22 19:50:22 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-05-24 15:00:14 +03:00
|
|
|
define gb_ExternalProject__use_boost_system
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),boost_system)
|
2013-05-22 19:50:22 +03:00
|
|
|
endef
|
|
|
|
|
2012-11-12 18:37:10 -05:00
|
|
|
define gb_LinkTarget__use_boost_headers
|
2012-11-14 18:11:30 +01:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),boost)
|
2013-01-26 21:19:13 +01:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,boost) \
|
2013-01-26 21:19:13 +01:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-11-12 18:37:10 -05:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-11-10 08:56:12 -05:00
|
|
|
define gb_ExternalProject__use_boost_headers
|
2012-11-14 18:11:30 +01:00
|
|
|
$(call gb_ExternalProject_get_preparation_target,$(1)) :| $(call gb_UnpackedTarball_get_final_target,boost)
|
2012-11-10 08:56:12 -05:00
|
|
|
|
|
|
|
endef
|
2012-05-10 08:55:12 +02:00
|
|
|
endif # SYSTEM_BOOST
|
|
|
|
|
|
|
|
|
2013-02-19 11:10:16 +01:00
|
|
|
ifeq ($(SYSTEM_CMIS),YES)
|
2012-01-15 02:12:49 +01:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_cmis
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2012-09-06 18:19:34 +02:00
|
|
|
$(CMIS_CFLAGS) \
|
2012-01-15 02:12:49 +01:00
|
|
|
)
|
2012-09-06 18:19:34 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(CMIS_LIBS))
|
2012-01-15 02:12:49 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-19 11:10:16 +01:00
|
|
|
else # !SYSTEM_CMIS
|
2012-01-15 02:12:49 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
cmislib \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_cmis
|
2013-05-08 00:55:21 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,cmis)/src \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-01-15 02:12:49 +01:00
|
|
|
cmislib \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-19 11:10:16 +01:00
|
|
|
endif # SYSTEM_CMIS
|
2012-01-15 02:12:49 +01:00
|
|
|
|
2012-12-25 11:23:58 -05:00
|
|
|
ifeq ($(OS)$(COM),WNTGCC)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_jawt
|
|
|
|
$(call gb_LinkTarget_use_packages,$(1),\
|
|
|
|
jawt \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # $(OS)$(COM) != WNTGCC
|
|
|
|
|
|
|
|
gb_LinkTarget__use_jawt :=
|
|
|
|
|
|
|
|
endif # $(OS)$(COM) = WNTGCC
|
|
|
|
|
2012-01-15 02:12:49 +01:00
|
|
|
|
2011-12-03 15:06:52 +01:00
|
|
|
ifeq ($(SYSTEM_LIBEXTTEXTCAT),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_libexttextcat
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(LIBEXTTEXTCAT_CFLAGS) \
|
|
|
|
)
|
2012-11-09 17:25:56 -05:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DSYSTEM_LIBEXTTEXTCAT \
|
|
|
|
)
|
2011-12-03 15:06:52 +01:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(LIBEXTTEXTCAT_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_LIBEXTTEXTCAT
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
|
2012-11-09 17:25:56 -05:00
|
|
|
exttextcat \
|
2011-12-03 15:06:52 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_libexttextcat
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-11-09 17:25:56 -05:00
|
|
|
exttextcat \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,exttextcat/src) \
|
2012-11-09 17:25:56 -05:00
|
|
|
$$(INCLUDE) \
|
2011-12-03 15:06:52 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_LIBEXTTEXTCAT
|
|
|
|
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
ifeq ($(SYSTEM_LIBXML),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_libxml2
|
2011-04-13 16:11:41 +00:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
-DSYSTEM_LIBXML \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(LIBXML_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(LIBXML_LIBS))
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
2013-02-05 17:19:11 -05:00
|
|
|
gb_ExternalProject__use_libxml2:=
|
2011-04-01 20:49:35 +00:00
|
|
|
|
|
|
|
else # !SYSTEM_LIBXML
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_URE, \
|
|
|
|
xml2 \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_libxml2
|
2013-02-05 17:19:11 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),xml2)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
xml2 \
|
|
|
|
)
|
2013-02-05 17:19:11 -05:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,xml2)/include \
|
2013-02-05 17:19:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
define gb_ExternalProject__use_libxml2
|
|
|
|
$(call gb_ExternalProject_use_package,$(1),xml2)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_LIBXML
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(SYSTEM_LIBXSLT),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_libxslt
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(LIBXSLT_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(LIBXSLT_LIBS))
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-08-15 07:20:13 +02:00
|
|
|
define gb_LinkTarget__use_libexslt
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(LIBEXSLT_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(LIBEXSLT_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
else # !SYSTEM_LIBXSLT
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
2012-08-15 07:20:13 +02:00
|
|
|
exslt \
|
2011-04-01 20:49:35 +00:00
|
|
|
xslt \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_libxslt
|
2013-02-02 15:44:30 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),xslt)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,xslt) \
|
2013-02-02 15:44:30 -05:00
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
xslt \
|
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-08-15 07:20:13 +02:00
|
|
|
define gb_LinkTarget__use_libexslt
|
2013-02-02 15:44:30 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),xslt)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,xslt) \
|
2013-02-02 15:44:30 -05:00
|
|
|
)
|
|
|
|
|
2012-08-15 07:20:13 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
|
|
|
exslt \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endif # SYSTEM_LIBXSLT
|
|
|
|
|
2012-08-06 19:22:43 +02:00
|
|
|
define gb_LinkTarget__use_glib
|
2012-11-06 18:08:16 +02:00
|
|
|
$(error gb_LinkTarget__use_glib should not be called any more)
|
2012-08-06 19:22:43 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-10 10:27:54 +02:00
|
|
|
ifeq ($(ENABLE_LIBLANGTAG),YES)
|
|
|
|
|
2012-08-06 19:22:43 +02:00
|
|
|
ifeq ($(SYSTEM_LIBLANGTAG),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_liblangtag
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(LIBLANGTAG_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(LIBLANGTAG_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_LIBLANGTAG
|
|
|
|
|
2012-11-13 11:59:33 +01:00
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-08-06 19:22:43 +02:00
|
|
|
langtag \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_liblangtag
|
2012-11-11 16:02:36 -05:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),langtag)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,langtag) \
|
2012-11-11 16:02:36 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-11-13 11:59:33 +01:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-08-06 19:22:43 +02:00
|
|
|
langtag \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_LIBLANGTAG
|
|
|
|
|
2013-05-02 12:19:35 +02:00
|
|
|
else
|
|
|
|
|
|
|
|
gb_LinkTarget__use_liblangtag :=
|
|
|
|
|
2012-08-10 10:27:54 +02:00
|
|
|
endif # ENABLE_LIBLANGTAG
|
|
|
|
|
2012-08-06 19:22:43 +02:00
|
|
|
|
2012-01-15 02:12:49 +01:00
|
|
|
ifeq ($(SYSTEM_NEON),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_neon
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DNEON_VERSION=0x$(NEON_VERSION) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2012-01-16 08:57:38 +00:00
|
|
|
$(NEON_CFLAGS) \
|
2012-01-15 02:12:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(NEON_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_NEON
|
|
|
|
|
2012-09-11 12:56:39 +02:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO,\
|
2012-01-15 02:12:49 +01:00
|
|
|
neon \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_neon
|
2012-10-29 23:29:37 +01:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),neon)
|
2012-01-15 02:12:49 +01:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,neon/src) \
|
2012-01-15 02:12:49 +01:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2012-01-15 02:12:49 +01:00
|
|
|
neon \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_NEON
|
|
|
|
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
ifeq ($(SYSTEM_REDLAND),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_librdf
|
2011-04-13 16:11:41 +00:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
-DSYSTEM_REDLAND \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(REDLAND_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(REDLAND_LIBS))
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-12-27 18:04:21 -05:00
|
|
|
gb_LinkTarget__use_redland_headers:=
|
|
|
|
|
|
|
|
gb_LinkTarget__use_raptor_headers:=
|
|
|
|
|
|
|
|
gb_LinkTarget__use_rasqal_headers:=
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
else # !SYSTEM_REDLAND
|
|
|
|
|
2012-12-27 18:04:21 -05:00
|
|
|
define gb_LinkTarget__use_redland_headers
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
Easter Bunny brings new redland tarballs
upgrade raptor to 2.0.9, rasqal to 0.9.30, redland to 1.0.16:
- new raptor depends on libxml2 version 2.6.27 and thus will _not_
build against system libxml2 on Mac OS X 10.4/10.5
- stop delivering raptor-config/rasqal-config, set env vars instead
(which unfortunately requires patching configures, TODO: upstream that)
- remove redundant configure flags
- stop passing -Wl,no-inhibit-exec (causes HP-UX code to be built on Linux)
- disable new rasqal build deps:
--with-uuid-library=internal --with-digest-library=internal
- disable redland "libltdl" nonsense via --disable-modular
- fortunately openssl digest support has been removed too
- drop raptor-1.4.18.ooo_build.patch, set RAPTOR2_CFLAGS/LIBS instead
- drop raptor-1.4.18.autotools.patch:
+ FreeBSD parts moved to raptor-freebsd.patch.1
+ Android parts obsolete
+ don't know about the MinGW part (TODO)
- from drop raptor-1.4.18.mingw.patch dropped the part defining parsers
to be built, done via --enable-parsers
- drop redland/raptor/raptor-1.4.18.cross.patch:
the vsnprintf check is now done at runtime, and expat has been removed
- drop raptor-1.4.18.aix.patch,redland-1.0.8.aix.patch:
presumably don't need special check for V7BETA since it's released now
- drop raptor-1.4.18.rindex.patch, index/rindex no longer used
- drop raptor-1.4.18.entities.patch, fixed upstream in 2.0.7
- drop raptor-1.4.18.fixes.patch, fixed upstream in 2.0.9
- drop raptor-1.4.18.{libxml,libxslt}.patch: TODO
- drop {raptor-1.4.18,rasqal-0.9.16,redland-1.0.8}.legal.patch:
we don't care any more about Sun legal dept.
- drop rasqal-0.9.16.ooo_build.patch, set RASQAL_CFLAGS/LIBS instead
- drop rasqal-0.9.16.autotools.patch:
+ FreeBSD parts moved to rasqal-freebsd.patch.1
+ Android parts obsolete
+ MinGW part only for cygwin build
- drop redland-1.0.8.autotools.patch:
+ FreeBSD parts moved to redland-freebsd.patch.1
+ Android parts obsolete
+ don't know about the MinGW part (TODO)
- drop redland-1.0.8.ooo_build.patch,
hopefully not necessary to disable utils build
Change-Id: I9cc44928ba87392d69e809abe2236cec0e4a508a
Reviewed-on: https://gerrit.libreoffice.org/3154
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
2013-04-01 12:41:18 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,redland)/src \
|
2012-12-27 18:04:21 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_raptor_headers
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,raptor)/src \
|
2012-12-27 18:04:21 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_rasqal_headers
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,rasqal)/src \
|
2012-12-27 18:04:21 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-04-19 21:45:14 +03:00
|
|
|
ifneq ($(OS),ANDROID)
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
2013-05-01 11:23:50 +02:00
|
|
|
raptor2 \
|
|
|
|
rasqal \
|
2011-04-01 20:49:35 +00:00
|
|
|
rdf \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_librdf
|
2013-05-07 12:17:20 +02:00
|
|
|
$(call gb_LinkTarget_use_packages,$(1),raptor rasqal redland)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
rdf \
|
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-04-19 21:45:14 +03:00
|
|
|
else # ANDROID
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
rdf \
|
|
|
|
rasqal \
|
Easter Bunny brings new redland tarballs
upgrade raptor to 2.0.9, rasqal to 0.9.30, redland to 1.0.16:
- new raptor depends on libxml2 version 2.6.27 and thus will _not_
build against system libxml2 on Mac OS X 10.4/10.5
- stop delivering raptor-config/rasqal-config, set env vars instead
(which unfortunately requires patching configures, TODO: upstream that)
- remove redundant configure flags
- stop passing -Wl,no-inhibit-exec (causes HP-UX code to be built on Linux)
- disable new rasqal build deps:
--with-uuid-library=internal --with-digest-library=internal
- disable redland "libltdl" nonsense via --disable-modular
- fortunately openssl digest support has been removed too
- drop raptor-1.4.18.ooo_build.patch, set RAPTOR2_CFLAGS/LIBS instead
- drop raptor-1.4.18.autotools.patch:
+ FreeBSD parts moved to raptor-freebsd.patch.1
+ Android parts obsolete
+ don't know about the MinGW part (TODO)
- from drop raptor-1.4.18.mingw.patch dropped the part defining parsers
to be built, done via --enable-parsers
- drop redland/raptor/raptor-1.4.18.cross.patch:
the vsnprintf check is now done at runtime, and expat has been removed
- drop raptor-1.4.18.aix.patch,redland-1.0.8.aix.patch:
presumably don't need special check for V7BETA since it's released now
- drop raptor-1.4.18.rindex.patch, index/rindex no longer used
- drop raptor-1.4.18.entities.patch, fixed upstream in 2.0.7
- drop raptor-1.4.18.fixes.patch, fixed upstream in 2.0.9
- drop raptor-1.4.18.{libxml,libxslt}.patch: TODO
- drop {raptor-1.4.18,rasqal-0.9.16,redland-1.0.8}.legal.patch:
we don't care any more about Sun legal dept.
- drop rasqal-0.9.16.ooo_build.patch, set RASQAL_CFLAGS/LIBS instead
- drop rasqal-0.9.16.autotools.patch:
+ FreeBSD parts moved to rasqal-freebsd.patch.1
+ Android parts obsolete
+ MinGW part only for cygwin build
- drop redland-1.0.8.autotools.patch:
+ FreeBSD parts moved to redland-freebsd.patch.1
+ Android parts obsolete
+ don't know about the MinGW part (TODO)
- drop redland-1.0.8.ooo_build.patch,
hopefully not necessary to disable utils build
Change-Id: I9cc44928ba87392d69e809abe2236cec0e4a508a
Reviewed-on: https://gerrit.libreoffice.org/3154
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
2013-04-01 12:41:18 +02:00
|
|
|
raptor2 \
|
2012-04-19 21:45:14 +03:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_librdf
|
2013-05-07 12:17:20 +02:00
|
|
|
$(call gb_LinkTarget_use_packages,$(1),raptor rasqal redland)
|
2012-04-19 21:45:14 +03:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
rdf \
|
|
|
|
rasqal \
|
Easter Bunny brings new redland tarballs
upgrade raptor to 2.0.9, rasqal to 0.9.30, redland to 1.0.16:
- new raptor depends on libxml2 version 2.6.27 and thus will _not_
build against system libxml2 on Mac OS X 10.4/10.5
- stop delivering raptor-config/rasqal-config, set env vars instead
(which unfortunately requires patching configures, TODO: upstream that)
- remove redundant configure flags
- stop passing -Wl,no-inhibit-exec (causes HP-UX code to be built on Linux)
- disable new rasqal build deps:
--with-uuid-library=internal --with-digest-library=internal
- disable redland "libltdl" nonsense via --disable-modular
- fortunately openssl digest support has been removed too
- drop raptor-1.4.18.ooo_build.patch, set RAPTOR2_CFLAGS/LIBS instead
- drop raptor-1.4.18.autotools.patch:
+ FreeBSD parts moved to raptor-freebsd.patch.1
+ Android parts obsolete
+ don't know about the MinGW part (TODO)
- from drop raptor-1.4.18.mingw.patch dropped the part defining parsers
to be built, done via --enable-parsers
- drop redland/raptor/raptor-1.4.18.cross.patch:
the vsnprintf check is now done at runtime, and expat has been removed
- drop raptor-1.4.18.aix.patch,redland-1.0.8.aix.patch:
presumably don't need special check for V7BETA since it's released now
- drop raptor-1.4.18.rindex.patch, index/rindex no longer used
- drop raptor-1.4.18.entities.patch, fixed upstream in 2.0.7
- drop raptor-1.4.18.fixes.patch, fixed upstream in 2.0.9
- drop raptor-1.4.18.{libxml,libxslt}.patch: TODO
- drop {raptor-1.4.18,rasqal-0.9.16,redland-1.0.8}.legal.patch:
we don't care any more about Sun legal dept.
- drop rasqal-0.9.16.ooo_build.patch, set RASQAL_CFLAGS/LIBS instead
- drop rasqal-0.9.16.autotools.patch:
+ FreeBSD parts moved to rasqal-freebsd.patch.1
+ Android parts obsolete
+ MinGW part only for cygwin build
- drop redland-1.0.8.autotools.patch:
+ FreeBSD parts moved to redland-freebsd.patch.1
+ Android parts obsolete
+ don't know about the MinGW part (TODO)
- drop redland-1.0.8.ooo_build.patch,
hopefully not necessary to disable utils build
Change-Id: I9cc44928ba87392d69e809abe2236cec0e4a508a
Reviewed-on: https://gerrit.libreoffice.org/3154
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
2013-04-01 12:41:18 +02:00
|
|
|
raptor2 \
|
2012-04-19 21:45:14 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # ANDROID
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endif # SYSTEM_REDLAND
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(SYSTEM_CAIRO),YES)
|
|
|
|
|
|
|
|
# FREETYPE_CLAGS from environment if ENABLE_CAIRO is used
|
|
|
|
define gb_LinkTarget__use_cairo
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(FREETYPE_CFLAGS) \
|
|
|
|
$(CAIRO_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(CAIRO_LIBS))
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
2012-11-10 22:14:42 +01:00
|
|
|
else ifeq ($(SYSTEM_CAIRO),NO)
|
2011-04-01 20:49:35 +00:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
|
|
|
cairo \
|
2012-11-10 22:14:42 +01:00
|
|
|
$(if $(filter-out MACOSX WNT,$(OS)), \
|
|
|
|
pixman-1 \
|
|
|
|
) \
|
2011-04-01 20:49:35 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_cairo
|
2012-11-20 22:05:36 +01:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),cairo)
|
|
|
|
$(call gb_LinkTarget_use_package,$(1),pixman)
|
2011-04-01 20:49:35 +00:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,cairo) \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,cairo)/src \
|
2011-04-01 20:49:35 +00:00
|
|
|
$(FREETYPE_CFLAGS) \
|
2012-11-10 22:14:42 +01:00
|
|
|
$$(INCLUDE) \
|
2011-04-01 20:49:35 +00:00
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-04-01 20:49:35 +00:00
|
|
|
cairo \
|
2012-11-10 22:14:42 +01:00
|
|
|
$(if $(filter-out MACOSX WNT,$(OS)), \
|
|
|
|
pixman-1 \
|
|
|
|
) \
|
2011-04-01 20:49:35 +00:00
|
|
|
)
|
2011-07-25 21:50:34 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_CAIRO
|
|
|
|
|
2011-07-25 22:24:27 +01:00
|
|
|
define gb_LinkTarget__use_freetype
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(FREETYPE_CFLAGS) \
|
|
|
|
)
|
2012-04-19 21:10:00 +03:00
|
|
|
|
|
|
|
ifneq ($(OS),ANDROID)
|
2011-07-25 22:24:27 +01:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(FREETYPE_LIBS))
|
2012-04-19 21:10:00 +03:00
|
|
|
else
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),freetype)
|
|
|
|
endif
|
2011-07-25 22:24:27 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_fontconfig
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(FONTCONFIG_CFLAGS) \
|
|
|
|
)
|
2012-04-19 21:10:00 +03:00
|
|
|
|
|
|
|
ifneq ($(OS),ANDROID)
|
2011-07-25 22:24:27 +01:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(FONTCONFIG_LIBS))
|
2012-04-19 21:10:00 +03:00
|
|
|
else
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),fontconfig)
|
|
|
|
endif
|
2011-07-25 22:24:27 +01:00
|
|
|
|
|
|
|
endef
|
2011-04-01 20:49:35 +00:00
|
|
|
|
2011-04-13 16:11:39 +00:00
|
|
|
ifeq ($(SYSTEM_GRAPHITE),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_graphite
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(GRAPHITE_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(GRAPHITE_LIBS))
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-13 16:11:39 +00:00
|
|
|
endef
|
|
|
|
|
2012-10-26 13:37:59 +02:00
|
|
|
else ifeq ($(SYSTEM_GRAPHITE),NO)
|
2011-04-13 16:11:39 +00:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-10-25 09:55:13 +02:00
|
|
|
graphite \
|
2011-04-13 16:11:39 +00:00
|
|
|
))
|
|
|
|
define gb_LinkTarget__use_graphite
|
2012-10-29 23:29:37 +01:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),graphite)
|
2012-10-25 09:55:13 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,graphite/include) \
|
2012-10-25 09:55:13 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-10-25 09:55:13 +02:00
|
|
|
graphite \
|
2011-04-13 16:11:39 +00:00
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-13 16:11:39 +00:00
|
|
|
endef
|
|
|
|
|
2012-10-26 13:37:59 +02:00
|
|
|
else # DISABLED GRAPHITE
|
|
|
|
|
|
|
|
gb_LinkTarget__use_graphite :=
|
|
|
|
|
2011-04-13 16:11:39 +00:00
|
|
|
endif # SYSTEM_GRAPHITE
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
ifeq ($(SYSTEM_ICU),YES)
|
|
|
|
|
2012-12-25 17:39:43 -05:00
|
|
|
gb_LinkTarget__use_icu_headers:=
|
2013-01-25 10:55:04 +01:00
|
|
|
gb_ExternalProject__use_icu:=
|
2012-12-25 17:39:43 -05:00
|
|
|
|
2011-08-11 12:42:39 +02:00
|
|
|
define gb_LinkTarget__use_icudata
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-licudata)
|
|
|
|
|
|
|
|
endef
|
2011-07-26 09:58:54 +02:00
|
|
|
define gb_LinkTarget__use_icui18n
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-licui18n)
|
2011-08-11 12:42:39 +02:00
|
|
|
|
2011-07-26 09:58:54 +02:00
|
|
|
endef
|
2011-04-13 16:11:40 +00:00
|
|
|
define gb_LinkTarget__use_icule
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-licule)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-08-11 12:42:39 +02:00
|
|
|
endef
|
|
|
|
define gb_LinkTarget__use_icutu
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-licutu)
|
|
|
|
|
2011-04-13 16:11:40 +00:00
|
|
|
endef
|
2011-04-01 20:49:35 +00:00
|
|
|
define gb_LinkTarget__use_icuuc
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-licuuc)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_ICU
|
|
|
|
|
2012-09-24 10:37:25 +03:00
|
|
|
ifeq ($(OS)$(DISABLE_DYNLOADING),ANDROID)
|
2011-11-21 14:25:37 +02:00
|
|
|
gb_ICU_suffix:=lo
|
|
|
|
else
|
|
|
|
gb_ICU_suffix:=
|
|
|
|
endif
|
|
|
|
|
2012-12-25 17:39:43 -05:00
|
|
|
define gb_LinkTarget__use_icu_headers
|
2013-03-23 12:32:31 -04:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),icu)
|
2012-12-25 17:39:43 -05:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,icu)/source \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,icu)/source/i18n \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,icu)/source/common \
|
2012-12-25 17:39:43 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-01-25 10:55:04 +01:00
|
|
|
define gb_ExternalProject__use_icu
|
|
|
|
$(call gb_ExternalProject_use_package,$(1),icu)
|
2013-01-25 10:29:59 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-11-04 08:46:44 -05:00
|
|
|
# icudata and icui18n is called icudt and icuin when built with MSVC :-/
|
2011-08-19 12:38:09 +03:00
|
|
|
ifeq ($(OS)$(COM),WNTMSC)
|
2011-08-19 09:32:18 +02:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
|
|
|
icudt \
|
|
|
|
icuin \
|
|
|
|
))
|
|
|
|
|
2012-12-02 18:56:17 +01:00
|
|
|
define gb_LinkTarget__use_icudata
|
2012-12-31 15:12:11 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),icu)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-08-19 09:32:18 +02:00
|
|
|
icudt \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
2012-12-02 18:56:17 +01:00
|
|
|
define gb_LinkTarget__use_icui18n
|
2012-12-31 15:12:11 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),icu)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-08-19 09:32:18 +02:00
|
|
|
icuin \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
else
|
2011-04-01 20:49:35 +00:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
2011-11-21 14:25:37 +02:00
|
|
|
icudata$(gb_ICU_suffix) \
|
|
|
|
icui18n$(gb_ICU_suffix) \
|
2011-04-01 20:49:35 +00:00
|
|
|
))
|
|
|
|
|
2011-08-11 12:42:39 +02:00
|
|
|
define gb_LinkTarget__use_icudata
|
2012-12-31 15:12:11 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),icu)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-11-21 14:25:37 +02:00
|
|
|
icudata$(gb_ICU_suffix) \
|
2011-08-11 12:42:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
2011-07-26 09:58:54 +02:00
|
|
|
define gb_LinkTarget__use_icui18n
|
2012-12-31 15:12:11 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),icu)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-11-21 14:25:37 +02:00
|
|
|
icui18n$(gb_ICU_suffix) \
|
2011-07-26 09:58:54 +02:00
|
|
|
)
|
2011-08-11 12:42:39 +02:00
|
|
|
|
2011-07-26 09:58:54 +02:00
|
|
|
endef
|
2011-08-19 09:32:18 +02:00
|
|
|
endif
|
|
|
|
|
2012-12-02 18:56:17 +01:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
|
|
|
icule$(gb_ICU_suffix) \
|
|
|
|
icutu$(gb_ICU_suffix) \
|
|
|
|
icuuc$(gb_ICU_suffix) \
|
|
|
|
))
|
|
|
|
|
2011-04-13 16:11:40 +00:00
|
|
|
define gb_LinkTarget__use_icule
|
2012-12-31 15:12:11 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),icu)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-11-21 14:25:37 +02:00
|
|
|
icule$(gb_ICU_suffix) \
|
2011-04-13 16:11:40 +00:00
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-08-11 12:42:39 +02:00
|
|
|
endef
|
|
|
|
define gb_LinkTarget__use_icutu
|
2012-12-31 15:12:11 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),icu)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-11-21 14:25:37 +02:00
|
|
|
icutu$(gb_ICU_suffix) \
|
2011-08-11 12:42:39 +02:00
|
|
|
)
|
|
|
|
|
2011-04-13 16:11:40 +00:00
|
|
|
endef
|
2011-04-01 20:49:35 +00:00
|
|
|
define gb_LinkTarget__use_icuuc
|
2012-12-31 15:12:11 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),icu)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-11-21 14:25:37 +02:00
|
|
|
icuuc$(gb_ICU_suffix) \
|
2011-04-01 20:49:35 +00:00
|
|
|
)
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_ICU
|
|
|
|
|
2013-04-23 11:23:17 +02:00
|
|
|
ifeq ($(ENABLE_HARFBUZZ),TRUE)
|
2013-04-20 13:00:56 +02:00
|
|
|
ifeq ($(SYSTEM_HARFBUZZ),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_harfbuzz
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(HARFBUZZ_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(HARFBUZZ_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # SYSTEM_HARFBUZZ != YES
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
harfbuzz \
|
|
|
|
))
|
|
|
|
define gb_LinkTarget__use_harfbuzz
|
2013-05-07 23:28:45 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,harfbuzz)/src \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2013-04-20 13:00:56 +02:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
harfbuzz \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
harfbuzz \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_HARFBUZZ
|
|
|
|
else # ENABLE_HARFBUZZ != YES
|
|
|
|
|
|
|
|
gb_LinkTarget__use_harfbuzz :=
|
|
|
|
|
|
|
|
endif # ENABLE_HARFBUZZ
|
2011-04-18 11:13:57 +00:00
|
|
|
|
2013-04-11 10:24:25 +03:00
|
|
|
ifeq ($(DISABLE_OPENSSL),YES)
|
|
|
|
|
|
|
|
gb_ExternalProject__use_openssl:=
|
|
|
|
gb_LinkTarget__use_openssl_headers:=
|
|
|
|
gb_LinkTarget__use_openssl:=
|
|
|
|
|
|
|
|
else # !DISABLE_OPENSSL
|
|
|
|
|
2011-04-18 11:13:57 +00:00
|
|
|
ifeq ($(SYSTEM_OPENSSL),YES)
|
|
|
|
|
2012-12-28 11:19:06 -05:00
|
|
|
gb_LinkTarget__use_openssl_headers:=
|
|
|
|
gb_ExternalProject__use_openssl:=
|
|
|
|
|
2011-04-18 11:13:57 +00:00
|
|
|
define gb_LinkTarget__use_openssl
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(OPENSSL_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(OPENSSL_LIBS))
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-18 11:13:57 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_OPENSSL
|
|
|
|
|
|
|
|
ifeq ($(OS),WNT)
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
|
|
|
crypto \
|
|
|
|
ssl \
|
|
|
|
))
|
|
|
|
else
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
crypto \
|
|
|
|
ssl \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2012-12-28 11:19:06 -05:00
|
|
|
define gb_ExternalProject__use_openssl
|
|
|
|
$(call gb_ExternalProject_use_package,$(1),openssl)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_openssl_headers
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,openssl)/include \
|
2012-12-28 11:19:06 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-04-18 11:13:57 +00:00
|
|
|
define gb_LinkTarget__use_openssl
|
2012-12-28 11:19:06 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),openssl)
|
2011-04-18 11:13:57 +00:00
|
|
|
ifeq ($(OS),WNT)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-04-18 11:13:57 +00:00
|
|
|
crypto \
|
|
|
|
ssl \
|
|
|
|
)
|
|
|
|
else
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2011-04-18 11:13:57 +00:00
|
|
|
crypto \
|
|
|
|
ssl \
|
|
|
|
)
|
|
|
|
ifeq ($(OS),SOLARIS)
|
2012-09-28 12:25:50 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
-lnsl \
|
|
|
|
-lsocket \
|
2011-04-18 11:13:57 +00:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
endif
|
2011-07-25 22:10:33 +01:00
|
|
|
|
2011-04-18 11:13:57 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_OPENSSL
|
2013-04-11 10:24:25 +03:00
|
|
|
endif # DISABLE_OPENSSL
|
2011-04-18 11:13:57 +00:00
|
|
|
|
2011-07-28 01:03:23 +02:00
|
|
|
|
2013-04-11 10:32:54 +03:00
|
|
|
ifeq ($(DISABLE_OPENSSL),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_gnutls
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(GNUTLS_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DDISABLE_OPENSSL \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(GNUTLS_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_libgcrypt
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(LIBGCRYPT_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(LIBGCRYPT_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !DISABLE_OPENSSL
|
|
|
|
|
|
|
|
gb_LinkTarget__use_gnutls:=
|
|
|
|
gb_LinkTarget__use_libgcrypt:=
|
|
|
|
|
|
|
|
endif # DISABLE_OPENSSL
|
|
|
|
|
|
|
|
|
2013-02-19 11:22:02 +01:00
|
|
|
ifeq ($(SYSTEM_CDR),YES)
|
2011-11-28 15:06:59 +01:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_cdr
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(CDR_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(CDR_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-19 11:22:02 +01:00
|
|
|
else # !SYSTEM_CDR
|
2011-11-28 15:06:59 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-10-05 13:32:14 +02:00
|
|
|
cdr-0.0 \
|
2011-11-28 15:06:59 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_cdr
|
2012-10-05 13:32:14 +02:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
libcdr \
|
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-10-05 13:32:14 +02:00
|
|
|
cdr-0.0 \
|
2011-11-28 15:06:59 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-19 11:22:02 +01:00
|
|
|
endif # SYSTEM_CDR
|
2011-11-28 15:06:59 +01:00
|
|
|
|
|
|
|
|
2013-05-02 20:25:51 +02:00
|
|
|
ifeq ($(SYSTEM_ODFGEN),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_odfgen
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(ODFGEN_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(ODFGEN_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_ODFGEN
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
odfgen-0.0 \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_odfgen
|
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
libodfgen \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
odfgen-0.0 \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_ODFGEN
|
|
|
|
|
|
|
|
|
2013-02-19 11:22:51 +01:00
|
|
|
ifeq ($(SYSTEM_MSPUB),YES)
|
2012-05-24 11:59:16 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_mspub
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(MSPUB_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(MSPUB_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-19 11:22:51 +01:00
|
|
|
else # !SYSTEM_MSPUB
|
2012-05-24 11:59:16 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2013-01-28 10:13:50 +01:00
|
|
|
mspub-0.0 \
|
2012-05-24 11:59:16 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mspub
|
2013-05-16 13:09:11 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,libmspub)/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2013-01-28 10:13:50 +01:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
libmspub \
|
|
|
|
)
|
2012-05-24 11:59:16 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2013-01-28 10:13:50 +01:00
|
|
|
mspub-0.0 \
|
2012-05-24 11:59:16 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-19 11:22:51 +01:00
|
|
|
endif # SYSTEM_MSPUB
|
2012-05-24 11:59:16 +02:00
|
|
|
|
|
|
|
|
2013-02-19 11:14:46 +01:00
|
|
|
ifeq ($(SYSTEM_VISIO),YES)
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_visio
|
2011-08-02 07:10:30 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2011-10-05 10:21:08 +02:00
|
|
|
$(VISIO_CFLAGS) \
|
2011-08-02 07:10:30 +02:00
|
|
|
)
|
2011-10-05 10:21:08 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(VISIO_LIBS))
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-19 11:14:46 +01:00
|
|
|
else # !SYSTEM_VISIO
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2012-11-05 11:43:55 +01:00
|
|
|
visio-0.0 \
|
2011-07-28 17:29:44 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_visio
|
2013-05-16 13:14:37 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,libvisio)/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-11-05 11:43:55 +01:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
libvisio \
|
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-11-05 11:43:55 +01:00
|
|
|
visio-0.0 \
|
2011-07-28 17:29:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-19 11:14:46 +01:00
|
|
|
endif # SYSTEM_VISIO
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
|
2013-02-19 11:20:31 +01:00
|
|
|
ifeq ($(SYSTEM_WPD),YES)
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_wpd
|
2011-08-02 07:10:30 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2011-10-05 10:04:04 +02:00
|
|
|
$(WPD_CFLAGS) \
|
2011-08-02 07:10:30 +02:00
|
|
|
)
|
2011-10-05 10:04:04 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(WPD_LIBS))
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
gb_ExternalProject__use_wpd :=
|
2011-07-28 17:29:44 +02:00
|
|
|
|
2013-02-19 11:20:31 +01:00
|
|
|
else # !SYSTEM_WPD
|
2011-07-28 17:29:44 +02:00
|
|
|
|
2012-09-24 13:17:45 +02:00
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
wpd-0.9 \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_wpd
|
2013-05-16 13:28:14 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(WPD_CFLAGS) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-09-24 22:25:28 +02:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
libwpd \
|
|
|
|
)
|
2012-09-24 13:17:45 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
wpd-0.9 \
|
|
|
|
)
|
|
|
|
|
2012-10-05 21:17:25 +02:00
|
|
|
endef
|
|
|
|
define gb_ExternalProject__use_wpd
|
2013-02-20 14:14:30 +01:00
|
|
|
$(call gb_ExternalProject_use_package,$(1),libwpd)
|
2012-10-05 21:17:25 +02:00
|
|
|
|
2012-09-24 13:17:45 +02:00
|
|
|
endef
|
|
|
|
|
2013-02-19 11:20:31 +01:00
|
|
|
endif # SYSTEM_WPD
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
|
2013-02-19 11:26:46 +01:00
|
|
|
ifeq ($(SYSTEM_WPG),YES)
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_wpg
|
2011-08-02 07:10:30 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2011-10-05 10:15:40 +02:00
|
|
|
$(WPG_CFLAGS) \
|
2011-08-02 07:10:30 +02:00
|
|
|
)
|
2011-10-05 10:15:40 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(WPG_LIBS))
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
gb_ExternalProject__use_wpg :=
|
2011-07-28 17:29:44 +02:00
|
|
|
|
2013-02-19 11:26:46 +01:00
|
|
|
else # !SYSTEM_WPG
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2013-04-18 15:23:28 +02:00
|
|
|
wpg-0.2 \
|
2011-07-28 17:29:44 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_wpg
|
2012-10-05 17:19:47 +02:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
2013-04-18 15:23:28 +02:00
|
|
|
libwpg \
|
2012-10-05 17:19:47 +02:00
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2013-04-18 15:23:28 +02:00
|
|
|
wpg-0.2 \
|
2011-07-28 17:29:44 +02:00
|
|
|
)
|
|
|
|
|
2012-10-05 21:17:25 +02:00
|
|
|
endef
|
|
|
|
define gb_ExternalProject__use_wpg
|
2013-04-18 15:23:28 +02:00
|
|
|
$(call gb_ExternalProject_use_package,$(1),libwpg)
|
2012-10-05 21:17:25 +02:00
|
|
|
|
2011-07-28 17:29:44 +02:00
|
|
|
endef
|
|
|
|
|
2013-02-19 11:26:46 +01:00
|
|
|
endif # SYSTEM_WPG
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
|
2013-02-19 11:26:46 +01:00
|
|
|
ifeq ($(SYSTEM_WPS),YES)
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_wps
|
2011-08-02 07:10:30 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2011-10-05 10:18:53 +02:00
|
|
|
$(WPS_CFLAGS) \
|
2011-08-02 07:10:30 +02:00
|
|
|
)
|
2011-10-05 10:18:53 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(WPS_LIBS))
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
gb_ExternalProject__use_wps :=
|
2011-07-28 17:29:44 +02:00
|
|
|
|
2013-02-19 11:26:46 +01:00
|
|
|
else # !SYSTEM_WPS
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
2013-04-19 12:06:58 +02:00
|
|
|
wps-0.2 \
|
2011-07-28 17:29:44 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_wps
|
2013-04-19 12:06:58 +02:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
libwps \
|
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2013-04-19 12:06:58 +02:00
|
|
|
wps-0.2 \
|
2011-07-28 17:29:44 +02:00
|
|
|
)
|
|
|
|
|
2012-10-05 21:17:25 +02:00
|
|
|
endef
|
|
|
|
define gb_ExternalProject__use_wps
|
2013-04-19 12:06:58 +02:00
|
|
|
$(call gb_ExternalProject_use_package,$(1),libwps)
|
2012-10-05 21:17:25 +02:00
|
|
|
|
2011-07-28 17:29:44 +02:00
|
|
|
endef
|
|
|
|
|
2013-02-19 11:26:46 +01:00
|
|
|
endif # SYSTEM_WPS
|
2011-07-28 17:29:44 +02:00
|
|
|
|
|
|
|
|
2013-03-11 12:38:12 +01:00
|
|
|
ifeq ($(SYSTEM_MWAW),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mwaw
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(MWAW_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(MWAW_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_MWAW
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
mwaw-0.1 \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_mwaw
|
2013-05-16 13:11:36 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,libmwaw)/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2013-03-11 12:38:12 +01:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),\
|
|
|
|
libmwaw \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
mwaw-0.1 \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_MWAW
|
|
|
|
|
|
|
|
|
2012-03-02 10:15:42 +01:00
|
|
|
ifeq ($(SYSTEM_LCMS2),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_lcms2
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2012-11-04 08:46:44 -05:00
|
|
|
$(LCMS2_CFLAGS) \
|
2012-03-02 10:15:42 +01:00
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(LCMS2_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-11-08 21:00:30 -05:00
|
|
|
gb_ExternalProject__use_lcms2 :=
|
|
|
|
|
2012-03-02 10:15:42 +01:00
|
|
|
else # !SYSTEM_LCMS2
|
|
|
|
|
2012-11-08 21:00:30 -05:00
|
|
|
define gb_ExternalProject__use_lcms2
|
|
|
|
$(call gb_ExternalProject_use_package,$(1),lcms2)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-06-06 22:57:56 +03:00
|
|
|
ifeq ($(OS),ANDROID)
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \
|
|
|
|
lcms2 \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_lcms2
|
2012-11-13 19:44:44 +01:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),lcms2)
|
2012-09-04 22:00:15 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,lcms2/include) \
|
2012-09-04 22:00:15 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-06-06 22:57:56 +03:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
lcms2 \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2012-03-02 10:15:42 +01:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
|
|
|
lcms2 \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_lcms2
|
2012-11-13 19:44:44 +01:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),lcms2)
|
2012-09-04 22:00:15 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,lcms2/include) \
|
2012-09-04 22:00:15 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-11-04 16:27:25 -06:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
|
|
|
lcms2 \
|
|
|
|
)
|
2012-03-02 10:15:42 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-06-06 22:57:56 +03:00
|
|
|
endif # ANDROID
|
2012-03-02 10:15:42 +01:00
|
|
|
endif # SYSTEM_LCMS2
|
|
|
|
|
|
|
|
|
2011-07-28 01:03:23 +02:00
|
|
|
ifeq ($(SYSTEM_LPSOLVE),YES)
|
|
|
|
|
2012-11-03 19:19:30 -04:00
|
|
|
define gb_LinkTarget__use_lpsolve
|
2011-07-28 01:03:23 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),-llpsolve55)
|
2012-11-03 19:19:30 -04:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DSYSTEM_LPSOLVE \
|
2012-11-07 18:18:08 -05:00
|
|
|
)
|
2011-07-28 01:03:23 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_LPSOLVE
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
|
|
|
lpsolve55 \
|
|
|
|
))
|
|
|
|
|
2012-11-03 19:19:30 -04:00
|
|
|
define gb_LinkTarget__use_lpsolve
|
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),lpsolve)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-07-28 01:03:23 +02:00
|
|
|
lpsolve55 \
|
|
|
|
)
|
2012-11-03 19:19:30 -04:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,lpsolve) \
|
2012-11-03 19:19:30 -04:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2011-07-28 01:03:23 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_LPSOLVE
|
|
|
|
|
2012-08-30 13:58:15 +01:00
|
|
|
ifeq ($(ENABLE_GIO),TRUE)
|
2011-07-28 01:03:23 +02:00
|
|
|
|
2012-01-15 02:12:49 +01:00
|
|
|
define gb_LinkTarget__use_gio
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2012-01-16 08:57:38 +00:00
|
|
|
$(GIO_CFLAGS) \
|
2012-01-15 02:12:49 +01:00
|
|
|
)
|
|
|
|
|
2012-08-30 13:58:15 +01:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DENABLE_GIO \
|
|
|
|
)
|
|
|
|
|
2012-01-15 02:12:49 +01:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(GIO_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-08-30 13:58:15 +01:00
|
|
|
else # ENABLE_GIO
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_gio
|
2012-11-06 20:09:57 +00:00
|
|
|
|
2012-08-30 13:58:15 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # ENABLE_GIO
|
|
|
|
|
2011-07-26 14:51:35 +02:00
|
|
|
define gb_LinkTarget__use_gtk
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(GTK_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(GTK_LIBS))
|
|
|
|
|
2011-12-01 13:39:09 +01:00
|
|
|
ifeq ($(ENABLE_GTK_PRINT),TRUE)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),-DENABLE_GTK_PRINT)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(GTK_PRINT_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(GTK_PRINT_LIBS))
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2011-07-26 14:51:35 +02:00
|
|
|
endef
|
2011-04-18 11:13:57 +00:00
|
|
|
|
2011-07-26 15:15:41 +02:00
|
|
|
define gb_LinkTarget__use_gthread
|
2012-11-06 20:38:47 +01:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(GTHREAD_LIBS))
|
2012-10-10 21:43:21 -04:00
|
|
|
endef
|
|
|
|
|
2012-09-14 11:31:50 +01:00
|
|
|
ifeq ($(ENABLE_CUPS),TRUE)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_cups
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DENABLE_CUPS \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
-lcups \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # ENABLE_CUPS
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_cups
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # ENABLE_DBUS
|
2011-11-02 13:00:48 +01:00
|
|
|
|
2012-08-30 13:44:53 +01:00
|
|
|
ifeq ($(ENABLE_DBUS),TRUE)
|
2011-11-02 13:00:48 +01:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_dbus
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(DBUS_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
2012-01-15 02:12:49 +01:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2011-11-02 13:00:48 +01:00
|
|
|
-DENABLE_DBUS \
|
|
|
|
)
|
|
|
|
|
2012-09-11 02:30:09 +02:00
|
|
|
ifeq ($(ENABLE_PACKAGEKIT),YES)
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DENABLE_PACKAGEKIT \
|
|
|
|
)
|
|
|
|
endif # ENABLE_PACKAGEKIT
|
|
|
|
|
2011-11-02 13:00:48 +01:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(DBUS_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # ENABLE_DBUS
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_dbus
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # ENABLE_DBUS
|
|
|
|
|
|
|
|
|
2011-07-26 16:04:15 +02:00
|
|
|
define gb_LinkTarget__use_dbusmenugtk
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(DBUSMENUGTK_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(DBUSMENUGTK_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-03-16 22:14:54 +01:00
|
|
|
|
|
|
|
ifeq ($(ENABLE_TELEPATHY),TRUE)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_telepathy
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(TELEPATHY_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(TELEPATHY_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !ENABLE_TELEPATHY
|
|
|
|
|
2012-08-09 00:15:52 +02:00
|
|
|
gb_LinkTarget__use_telepathy :=
|
2012-03-16 22:14:54 +01:00
|
|
|
|
|
|
|
endif # ENABLE_TELEPATHY
|
|
|
|
|
2012-10-10 21:43:21 -04:00
|
|
|
define gb_LinkTarget__use_croco
|
2012-11-06 18:08:16 +02:00
|
|
|
$(error gb_LinkTarget__use_croco should not be used any more)
|
2012-10-10 21:43:21 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_pango
|
2012-11-06 18:08:16 +02:00
|
|
|
$(error gb_LinkTarget__use_pango should not be used any more)
|
2012-10-10 21:43:21 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_gsf
|
2012-11-06 18:08:16 +02:00
|
|
|
$(error gb_LinkTarget__use_gsf should not be used any more)
|
2012-10-10 21:43:21 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_pixbuf
|
2012-11-06 18:08:16 +02:00
|
|
|
$(error gb_LinkTarget__use_pixbuf should not be used any more)
|
2012-10-10 21:43:21 -04:00
|
|
|
endef
|
|
|
|
|
2011-09-15 14:44:34 +02:00
|
|
|
ifeq ($(SYSTEM_LIBPNG),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_png
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(LIBPNG_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(LIBPNG_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_LIBPNG
|
|
|
|
|
2012-09-08 18:13:20 +02:00
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
|
2011-09-15 14:44:34 +02:00
|
|
|
png \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_png
|
2013-05-08 17:22:22 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(LIBPNG_CFLAGS) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-09-08 18:13:20 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2011-09-15 14:44:34 +02:00
|
|
|
png \
|
|
|
|
)
|
2012-09-28 21:47:29 +02:00
|
|
|
$(call gb_LinkTarget__use_zlib,$(1))
|
2011-09-15 14:44:34 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # !SYSTEM_LIBPNG
|
|
|
|
|
2011-12-06 19:17:52 +01:00
|
|
|
|
|
|
|
ifeq ($(SYSTEM_CURL),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_curl
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(CURL_CFLAGS) \
|
|
|
|
)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(CURL_LIBS))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_CURL
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \
|
|
|
|
curl \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_curl
|
2012-11-13 19:44:44 +01:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),curl)
|
2012-10-29 22:57:34 +01:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,curl/include) \
|
2012-10-29 22:57:34 +01:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-12-06 19:17:52 +01:00
|
|
|
curl \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_CURL
|
|
|
|
|
2012-11-27 15:35:02 +01:00
|
|
|
ifeq ($(ENABLE_VALGRIND),TRUE)
|
2011-12-23 12:21:19 +01:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_valgrind
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2012-11-27 15:35:02 +01:00
|
|
|
-DHAVE_VALGRIND_HEADERS \
|
2011-12-23 12:21:19 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(VALGRIND_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-11-27 15:35:02 +01:00
|
|
|
else # !ENABLE_VALGRIND
|
2011-12-23 12:21:19 +01:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_valgrind
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-11-27 15:35:02 +01:00
|
|
|
endif # ENABLE_VALGRIND
|
2011-12-23 12:21:19 +01:00
|
|
|
|
2012-02-18 18:54:35 +01:00
|
|
|
ifeq ($(SYSTEM_POPPLER),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_poppler
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DSYSTEM_POPPLER \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(POPPLER_CFLAGS) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(POPPLER_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_POPPLER
|
|
|
|
|
2012-02-21 06:58:02 +01:00
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
|
2012-11-13 10:27:21 +02:00
|
|
|
fofi \
|
|
|
|
Goo \
|
|
|
|
xpdf \
|
2012-02-18 18:54:35 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_poppler
|
2013-02-17 09:26:01 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),xpdf)
|
|
|
|
|
2012-02-21 06:58:02 +01:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,xpdf) \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,xpdf)/xpdf \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,xpdf)/goo \
|
2012-02-21 06:58:02 +01:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-11-13 10:27:21 +02:00
|
|
|
fofi \
|
|
|
|
Goo \
|
|
|
|
xpdf \
|
2012-02-21 06:58:02 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
ifeq ($(OS),MACOSX)
|
2012-09-28 00:54:49 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
-lobjc \
|
2012-02-18 18:54:35 +01:00
|
|
|
)
|
2012-02-21 06:58:02 +01:00
|
|
|
else ifeq ($(OS),WNT)
|
2012-09-28 15:31:46 +02:00
|
|
|
$(call gb_LinkTarget_use_system_win32_libs,$(1),\
|
2012-02-21 06:58:02 +01:00
|
|
|
advapi32 \
|
|
|
|
gdi32 \
|
|
|
|
)
|
|
|
|
endif
|
2012-02-18 18:54:35 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_POPPLER
|
|
|
|
|
2011-12-23 12:21:19 +01:00
|
|
|
|
2012-04-07 15:50:47 +02:00
|
|
|
ifeq ($(SYSTEM_CLUCENE),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_clucene
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
$(filter-out -I%,$(CLUCENE_CFLAGS)) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(filter -I%,$(CLUCENE_CFLAGS)) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(CLUCENE_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_CLUCENE
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_clucene
|
2013-05-07 23:47:27 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,clucene)/src/core \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,clucene)/src/shared \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,clucene)/src/contribs-lib \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2012-04-07 15:50:47 +02:00
|
|
|
clucene \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-04-07 17:15:35 +02:00
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO,\
|
2012-04-07 15:50:47 +02:00
|
|
|
clucene \
|
|
|
|
))
|
|
|
|
|
|
|
|
endif # SYSTEM_CLUCENE
|
|
|
|
|
2011-12-22 16:34:35 -05:00
|
|
|
define gb_LinkTarget__use_gobject
|
2012-11-06 20:38:47 +01:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(GOBJECT_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(GOBJECT_CFLAGS) \
|
|
|
|
)
|
2011-12-22 16:34:35 -05:00
|
|
|
endef
|
|
|
|
|
2012-07-17 13:07:30 +02:00
|
|
|
ifeq ($(SYSTEM_HSQLDB),YES)
|
2012-03-27 16:36:31 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_hsqldb
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DSYSTEM_HSQLDB \
|
|
|
|
-DHSQLDB_JAR=\""file://$(HSQLDB_JAR)"\" \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_HSQLDB
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_hsqldb
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_HSQLDB
|
|
|
|
|
2012-04-05 10:53:08 +02:00
|
|
|
|
2012-07-16 21:50:59 +02:00
|
|
|
ifeq ($(SYSTEM_OPENLDAP),YES)
|
2012-07-16 19:00:07 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_openldap
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
-lldap \
|
|
|
|
-llber \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-03-27 00:34:19 +01:00
|
|
|
else ifeq ($(SYSTEM_OPENLDAP),NO)
|
2012-07-16 19:00:07 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
|
|
|
|
ldap \
|
|
|
|
lber \
|
|
|
|
))
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_openldap
|
2012-10-29 23:29:37 +01:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),openldap)
|
2012-07-16 19:00:07 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,openldap/include) \
|
2012-07-16 19:00:07 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-10-28 12:35:07 +01:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),openldap)
|
2012-07-16 19:00:07 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
ldap \
|
|
|
|
lber \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-03-27 01:02:55 +01:00
|
|
|
else # no openldap
|
|
|
|
|
|
|
|
gb_LinkTarget__use_openldap :=
|
|
|
|
|
2012-07-16 19:00:07 +02:00
|
|
|
endif # SYSTEM_OPENLDAP
|
|
|
|
|
|
|
|
|
2012-04-05 10:53:08 +02:00
|
|
|
ifeq ($(SYSTEM_POSTGRESQL),YES)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_postgresql
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(POSTGRESQL_INC) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
-lpq \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_ldflags,$(1),\
|
|
|
|
$(POSTGRESQL_LIB) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_POSTGRESQL
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_postgresql
|
|
|
|
|
2012-10-22 06:33:00 +02:00
|
|
|
$(call gb_LinkTarget_use_packages,$(1),\
|
|
|
|
postgresql \
|
|
|
|
)
|
|
|
|
|
2012-04-05 10:53:08 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-05-08 00:19:40 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,postgresql)/src/include \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,postgresql)/src/interfaces/libpq \
|
2012-04-05 10:53:08 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
2012-04-07 10:07:35 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-05-26 23:38:34 +02:00
|
|
|
$(if $(filter MSC,$(COM)),lib)pq \
|
2012-04-05 10:53:08 +02:00
|
|
|
)
|
|
|
|
|
2012-12-12 01:07:09 +02:00
|
|
|
ifeq ($(OS)$(COM),WNTMSC)
|
2012-05-27 00:21:12 +02:00
|
|
|
$(call gb_LinkTarget_use_external,$(1),openssl)
|
|
|
|
|
2012-09-28 15:31:46 +02:00
|
|
|
$(call gb_LinkTarget_use_system_win32_libs,$(1),\
|
2012-04-05 10:53:08 +02:00
|
|
|
secur32 \
|
|
|
|
ws2_32 \
|
|
|
|
)
|
2012-05-30 12:06:42 +02:00
|
|
|
|
2012-04-05 10:53:08 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
|
2012-05-26 23:38:34 +02:00
|
|
|
$(if $(filter MSC,$(COM)),lib)pq \
|
2012-04-05 10:53:08 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
endif # SYSTEM_POSTGRESQL
|
|
|
|
|
2012-08-13 09:19:35 +03:00
|
|
|
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
|
2012-04-05 17:59:36 +02:00
|
|
|
define gb_LinkTarget__use_mozilla
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DMOZILLA_INTERNAL_API \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(OUTDIR)/inc/mozilla \
|
2012-04-05 17:59:36 +02:00
|
|
|
)
|
|
|
|
|
2012-04-07 10:07:35 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2012-04-05 17:59:36 +02:00
|
|
|
nspr4 \
|
|
|
|
xpcom \
|
|
|
|
xpcom_core \
|
|
|
|
)
|
|
|
|
|
2012-04-07 10:07:35 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
2012-04-05 17:59:36 +02:00
|
|
|
embed_base_s \
|
|
|
|
mozreg_s \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DMOZILLA_CLIENT \
|
|
|
|
-DMOZ_REFLOW_PERF \
|
|
|
|
-DMOZ_REFLOW_PERF_DSP \
|
|
|
|
-DMOZ_XUL \
|
|
|
|
-DOJI \
|
|
|
|
-DWIN32 \
|
|
|
|
-DXP_PC \
|
|
|
|
-DXP_WIN \
|
|
|
|
-DXP_WIN32 \
|
|
|
|
-D_WINDOWS \
|
|
|
|
)
|
|
|
|
|
|
|
|
ifeq ($(COM),GCC)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_cxxflags,$(1),\
|
|
|
|
-Wall \
|
|
|
|
-Wcast-align \
|
|
|
|
-Wconversion \
|
|
|
|
-Wno-long-long \
|
|
|
|
-Woverloaded-virtual \
|
|
|
|
-Wpointer-arith \
|
|
|
|
-Wsynth \
|
|
|
|
-fno-rtti \
|
|
|
|
)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
ifneq ($(DBG_LEVEL),0)
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-D_STL_NOFORCE_MANIFEST \
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
2012-05-30 14:55:09 +02:00
|
|
|
$(OUTDIR)/lib/embed_base_s.lib \
|
|
|
|
$(OUTDIR)/lib/mozreg_s.lib \
|
2012-04-05 17:59:36 +02:00
|
|
|
)
|
|
|
|
|
2012-08-13 09:19:35 +03:00
|
|
|
endif # !GCC
|
2012-04-05 17:59:36 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_NONE,\
|
|
|
|
xpcom \
|
|
|
|
xpcom_core \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
|
|
|
|
embed_base_s \
|
|
|
|
mozreg_s \
|
|
|
|
))
|
|
|
|
|
2012-08-13 09:19:35 +03:00
|
|
|
endif # DESKTOP
|
2012-04-05 17:59:36 +02:00
|
|
|
|
2012-04-28 20:48:14 +02:00
|
|
|
ifeq ($(ENABLE_KDE),TRUE)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_kde
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(filter -I%,$(KDE_CFLAGS)) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
$(filter-out -I%,$(KDE_CFLAGS)) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(KDE_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
ifeq ($(COM),GCC)
|
|
|
|
$(call gb_LinkTarget_add_cxxflags,$(1),\
|
|
|
|
-Wno-shadow \
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !ENABLE_KDE
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_kde
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # ENABLE_KDE
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_KDE4),TRUE)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_kde4
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(filter -I%,$(KDE4_CFLAGS)) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
$(filter-out -I%,$(KDE4_CFLAGS)) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(KDE4_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
ifeq ($(COM),GCC)
|
|
|
|
$(call gb_LinkTarget_add_cxxflags,$(1),\
|
|
|
|
-Wno-shadow \
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !ENABLE_KDE4
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_kde4
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # ENABLE_KDE4
|
|
|
|
|
|
|
|
|
2012-08-30 13:44:53 +01:00
|
|
|
ifeq ($(ENABLE_TDE),TRUE)
|
2012-04-28 20:48:14 +02:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_tde
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(TDE_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(TDE_CFLAGS) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # ! ENABLE_TDE
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_tde
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # ENABLE_TDE
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_GCONF),TRUE)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_gconf
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(filter -I%,$(GCONF_CFLAGS)) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
$(filter-out -I%,$(GCONF_CFLAGS)) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(GCONF_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !ENABLE_GCONF
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_gconf
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # ENABLE_GCONF
|
|
|
|
|
|
|
|
|
2012-05-27 22:50:41 +02:00
|
|
|
# PYTHON
|
2012-11-27 15:50:53 +01:00
|
|
|
# extra python_headers external because pyuno wrapper must not link python
|
2012-05-27 22:50:41 +02:00
|
|
|
ifeq ($(SYSTEM_PYTHON),YES)
|
|
|
|
|
2012-11-27 15:50:53 +01:00
|
|
|
define gb_LinkTarget__use_python_headers
|
2012-05-27 22:50:41 +02:00
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
$(filter-out -I%,$(PYTHON_CFLAGS)) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$(filter -I%,$(PYTHON_CFLAGS)) \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
2012-11-27 15:50:53 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_python
|
|
|
|
$(call gb_LinkTarget__use_python_headers,$(1))
|
|
|
|
|
2012-05-27 22:50:41 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(PYTHON_LIBS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_PYTHON
|
|
|
|
|
2012-12-04 13:47:22 +01:00
|
|
|
# depend on external project because on MACOSX the Package is disabled...
|
2012-11-27 15:50:53 +01:00
|
|
|
define gb_LinkTarget__use_python_headers
|
2012-12-04 13:47:22 +01:00
|
|
|
$(call gb_LinkTarget_use_external_project,$(1),python3)
|
2012-11-27 15:50:53 +01:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,python3) \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,python3)/PC \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,python3)/Include \
|
2012-11-27 15:50:53 +01:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-05-27 22:50:41 +02:00
|
|
|
define gb_LinkTarget__use_python
|
2012-11-27 15:50:53 +01:00
|
|
|
$(call gb_LinkTarget__use_python_headers,$(1))
|
2012-05-27 22:50:41 +02:00
|
|
|
|
|
|
|
ifeq ($(OS),WNT)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
2013-04-21 14:34:50 +02:00
|
|
|
$(call gb_UnpackedTarball_get_dir,python3)/$(if $(filter 90,$(VCVER)),PC/VS9.0,PCbuild)$(if $(filter X86_64,$(CPUNAME)),/amd64)/python$(PYTHON_VERSION_MAJOR)$(PYTHON_VERSION_MINOR)$(if $(MSVC_USE_DEBUG_RUNTIME),_d).lib \
|
2012-05-27 22:50:41 +02:00
|
|
|
)
|
|
|
|
else ifeq ($(OS),MACOSX)
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
2012-11-27 15:32:36 +01:00
|
|
|
-F$(call gb_UnpackedTarball_get_dir,python3)/python-inst/@__________________________________________________OOO -framework LibreOfficePython \
|
2012-05-27 22:50:41 +02:00
|
|
|
)
|
|
|
|
else
|
2013-04-21 14:34:50 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
-L$(call gb_UnpackedTarball_get_dir,python3) \
|
|
|
|
-lpython$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)m \
|
2012-05-27 22:50:41 +02:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO,\
|
2012-11-27 15:32:36 +01:00
|
|
|
python$(PYTHON_VERSION_MAJOR) \
|
|
|
|
python$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)m \
|
2012-05-27 22:50:41 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
endif # SYSTEM_PYTHON
|
|
|
|
|
2012-09-04 15:05:35 -04:00
|
|
|
# ORCUS
|
2012-08-30 23:26:59 -04:00
|
|
|
ifeq ($(SYSTEM_LIBORCUS),YES)
|
2012-07-27 22:14:39 -04:00
|
|
|
|
|
|
|
define gb_LinkTarget__use_orcus
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2012-09-09 16:29:10 +02:00
|
|
|
$(ORCUS_CFLAGS) \
|
2012-07-27 22:14:39 -04:00
|
|
|
)
|
2013-04-13 19:29:33 +02:00
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(ORCUS_LIBS))
|
2013-04-13 16:17:29 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_orcus-parser
|
2012-07-27 22:14:39 -04:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-08-30 23:26:59 -04:00
|
|
|
else # !SYSTEM_LIBORCUS
|
2012-07-27 22:14:39 -04:00
|
|
|
|
2012-09-11 16:19:19 +02:00
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
|
|
|
|
orcus \
|
|
|
|
))
|
|
|
|
|
2013-04-11 23:11:21 -04:00
|
|
|
$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
|
|
|
|
orcus-parser \
|
|
|
|
))
|
|
|
|
|
2012-08-31 10:11:32 -04:00
|
|
|
define gb_LinkTarget__use_orcus
|
2013-05-06 23:35:13 +02:00
|
|
|
$(call gb_LinkTarget_use_unpacked,$(1),liborcus)
|
2012-09-09 15:29:43 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
2013-05-06 23:35:13 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,liborcus/include) \
|
2012-09-09 15:29:43 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
)
|
2012-09-11 18:23:27 +02:00
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),orcus)
|
2012-11-23 06:49:21 +01:00
|
|
|
|
2013-02-17 22:58:21 +01:00
|
|
|
$(if $(filter YES,$(SYSTEM_BOOST)), \
|
|
|
|
$(call gb_LinkTarget_add_ldflags,$(1),$(BOOST_LDFLAGS)) \
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),$(BOOST_SYSTEM_LIB)) \
|
|
|
|
)
|
2012-11-23 06:49:21 +01:00
|
|
|
|
2012-07-27 22:14:39 -04:00
|
|
|
endef
|
|
|
|
|
2013-04-11 23:11:21 -04:00
|
|
|
define gb_LinkTarget__use_orcus-parser
|
|
|
|
$(call gb_LinkTarget_use_static_libraries,$(1),\
|
|
|
|
orcus-parser \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2012-08-30 23:26:59 -04:00
|
|
|
endif # SYSTEM_LIBORCUS
|
2012-05-27 22:50:41 +02:00
|
|
|
|
2012-09-27 21:45:47 +02:00
|
|
|
|
|
|
|
### X11 stuff ###
|
|
|
|
|
|
|
|
ifeq ($(GUIBASE),unx)
|
|
|
|
|
2012-11-21 16:28:14 +01:00
|
|
|
# TODO: do we really need these X11 headers in the repo?
|
|
|
|
ifneq ($(filter X11_EXTENSIONS,$(BUILD_TYPE)),)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_x11extensions
|
2013-05-06 20:28:45 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
-I$(SRCDIR)/x11_extensions/inc \
|
|
|
|
$$(INCLUDE) \
|
2012-11-21 16:28:14 +01:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # !X11_EXTENSIONS
|
|
|
|
|
|
|
|
gb_LinkTarget__use_x11extensions :=
|
|
|
|
|
|
|
|
endif # X11_EXTENSIONS
|
|
|
|
|
2012-09-27 21:45:47 +02:00
|
|
|
ifeq ($(XRANDR_DLOPEN),FALSE)
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_Xrandr
|
2012-11-21 16:28:14 +01:00
|
|
|
$(call gb_LinkTarget__use_x11extensions,$(1))
|
2012-09-27 21:45:47 +02:00
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(XRANDR_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(XRANDR_LIBS) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # XRANDR_DLOPEN
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_Xrandr
|
2012-11-21 16:28:14 +01:00
|
|
|
$(call gb_LinkTarget__use_x11extensions,$(1))
|
2012-09-27 21:45:47 +02:00
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
|
|
|
-DXRANDR_DLOPEN \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # XRANDR_DLOPEN
|
|
|
|
|
|
|
|
define gb_LinkTarget__use_Xrender
|
2012-11-21 16:28:14 +01:00
|
|
|
$(call gb_LinkTarget__use_x11extensions,$(1))
|
2012-09-27 21:45:47 +02:00
|
|
|
|
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
$(XRENDER_CFLAGS) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
|
|
|
$(XRENDER_LIBS) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # GUIBASE=unx
|
|
|
|
|
2011-08-02 21:22:35 +03:00
|
|
|
|
2013-02-28 12:05:07 +00:00
|
|
|
gb_ExternalProject__use_nss3:=
|
|
|
|
|
2012-08-13 09:19:35 +03:00
|
|
|
ifeq (,$(filter DESKTOP,$(BUILD_TYPE)))
|
|
|
|
|
2013-01-01 09:39:36 -05:00
|
|
|
gb_LinkTarget__use_nss3:=
|
2012-08-13 09:19:35 +03:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2011-11-02 21:16:53 +01:00
|
|
|
ifeq ($(SYSTEM_NSS),YES)
|
2011-08-11 13:10:14 +02:00
|
|
|
|
2012-08-13 06:57:51 +02:00
|
|
|
define gb_LinkTarget__use_nss3
|
|
|
|
$(call gb_LinkTarget_add_defs,$(1),\
|
2012-11-19 16:40:33 +01:00
|
|
|
-DSYSTEM_NSS \
|
2012-08-13 06:57:51 +02:00
|
|
|
)
|
|
|
|
|
2011-08-11 13:10:14 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2011-11-02 21:16:53 +01:00
|
|
|
$(NSS_CFLAGS) \
|
2011-08-11 13:10:14 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_add_libs,$(1),\
|
2011-11-02 21:16:53 +01:00
|
|
|
$(NSS_LIBS) \
|
2011-08-11 13:10:14 +02:00
|
|
|
)
|
2011-08-11 12:47:00 +01:00
|
|
|
|
2011-08-11 13:10:14 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-13 06:57:51 +02:00
|
|
|
define gb_LinkTarget__use_plc4
|
|
|
|
$(call gb_LinkTarget__use_nss3,$(1))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-04 10:04:07 +01:00
|
|
|
define gb_LinkTarget__use_ssl3
|
|
|
|
$(call gb_LinkTarget__use_nss3,$(1))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-08-11 13:10:14 +02:00
|
|
|
else
|
|
|
|
|
|
|
|
$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO,\
|
|
|
|
nspr4 \
|
|
|
|
nss3 \
|
|
|
|
plc4 \
|
2012-08-13 11:46:50 +02:00
|
|
|
smime3 \
|
2013-02-04 10:04:07 +01:00
|
|
|
ssl3 \
|
2011-08-11 13:10:14 +02:00
|
|
|
))
|
|
|
|
|
2012-08-13 06:57:51 +02:00
|
|
|
define gb_LinkTarget__use_nss3
|
2013-01-01 09:39:36 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),nss)
|
2012-08-13 06:57:51 +02:00
|
|
|
$(call gb_LinkTarget_set_include,$(1),\
|
|
|
|
$$(INCLUDE) \
|
2013-04-01 12:47:16 +02:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,nss)/mozilla/dist/public/nss \
|
|
|
|
-I$(call gb_UnpackedTarball_get_dir,nss)/mozilla/dist/out/include \
|
2012-08-13 06:57:51 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
|
|
|
nspr4 \
|
|
|
|
nss3 \
|
|
|
|
smime3 \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-08-11 12:47:00 +01:00
|
|
|
define gb_LinkTarget__use_plc4
|
2013-01-01 09:39:36 -05:00
|
|
|
$(call gb_LinkTarget_use_package,$(1),nss)
|
2012-04-07 23:22:08 +02:00
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
2011-08-11 13:10:14 +02:00
|
|
|
plc4 \
|
|
|
|
)
|
2011-08-11 12:47:00 +01:00
|
|
|
|
2011-08-11 13:10:14 +02:00
|
|
|
endef
|
|
|
|
|
2013-02-04 10:04:07 +01:00
|
|
|
define gb_LinkTarget__use_ssl3
|
|
|
|
$(call gb_LinkTarget_use_package,$(1),nss)
|
|
|
|
$(call gb_LinkTarget_use_libraries,$(1),\
|
|
|
|
ssl3 \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-02-28 12:05:07 +00:00
|
|
|
define gb_ExternalProject__use_nss3
|
|
|
|
$(call gb_ExternalProject_use_package,$(1),nss)
|
|
|
|
$(call gb_ExternalProject_use_libraries,$(1),\
|
|
|
|
nspr4 \
|
|
|
|
nss3 \
|
|
|
|
smime3 \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-08-11 13:10:14 +02:00
|
|
|
endif
|
2012-08-13 09:19:35 +03:00
|
|
|
endif # DESKTOP
|
2011-08-11 13:10:14 +02:00
|
|
|
|
2011-09-15 14:01:27 +02:00
|
|
|
### Jars ############################################################
|
|
|
|
|
2012-08-15 20:24:59 +02:00
|
|
|
ifeq ($(SYSTEM_HSQLDB),YES)
|
|
|
|
|
|
|
|
define gb_Jar__use_hsqldb
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(HSQLDB_JAR))
|
|
|
|
endef
|
2012-08-17 11:47:29 +02:00
|
|
|
define gb_JunitTest__use_hsqldb
|
|
|
|
$(call gb_JunitTest_use_system_jar,$(1),$(HSQLDB_JAR))
|
|
|
|
endef
|
2012-08-15 20:24:59 +02:00
|
|
|
|
|
|
|
else # !SYSTEM_HSQLDB
|
|
|
|
|
2012-08-17 11:02:49 +02:00
|
|
|
$(eval $(call gb_Helper_register_jars,OOO,\
|
|
|
|
hsqldb \
|
|
|
|
))
|
|
|
|
|
2012-08-15 20:24:59 +02:00
|
|
|
define gb_Jar__use_hsqldb
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),hsqldb)
|
2012-08-15 20:24:59 +02:00
|
|
|
endef
|
2012-08-17 11:47:29 +02:00
|
|
|
define gb_JunitTest__use_hsqldb
|
|
|
|
$(call gb_JunitTest_use_jar,$(1),hsqldb)
|
|
|
|
endef
|
2012-08-15 20:24:59 +02:00
|
|
|
|
|
|
|
endif # SYSTEM_HSQLDB
|
|
|
|
|
2011-09-15 14:01:27 +02:00
|
|
|
|
2011-10-04 09:44:48 +02:00
|
|
|
ifeq ($(SYSTEM_BSH),YES)
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_bsh
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(BSH_JAR))
|
2011-10-04 09:44:48 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_BSH
|
|
|
|
|
2012-08-17 11:02:49 +02:00
|
|
|
$(eval $(call gb_Helper_register_jars,OOO,\
|
|
|
|
bsh \
|
|
|
|
))
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_bsh
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),bsh)
|
2011-10-04 09:44:48 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_BSH
|
|
|
|
|
2011-09-15 14:01:27 +02:00
|
|
|
|
2012-05-06 12:49:33 +02:00
|
|
|
ifeq ($(SYSTEM_RHINO),YES)
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_rhino
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(RHINO_JAR))
|
2012-05-06 12:49:33 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_RHINO
|
|
|
|
|
2012-08-17 11:02:49 +02:00
|
|
|
$(eval $(call gb_Helper_register_jars,OOO,\
|
|
|
|
js \
|
|
|
|
))
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_rhino
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),js)
|
2012-05-06 12:49:33 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_RHINO
|
|
|
|
|
2012-04-07 10:07:35 +02:00
|
|
|
ifeq ($(SYSTEM_APACHE_COMMONS),YES)
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_commons-codec
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(COMMONS_CODEC_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
gb_ExternalProject__use_commons-codec :=
|
2012-04-07 10:07:35 +02:00
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_commons-httpclient
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(COMMONS_HTTPCLIENT_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
gb_ExternalProject__use_commons-httpclient :=
|
2012-04-07 10:07:35 +02:00
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_commons-lang
|
|
|
|
$(call gb_Jar_usadd_linked_libse_system_jar,$(1),$(COMMONS_LANG_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
gb_ExternalProject__use_commons-lang :=
|
2012-04-07 10:07:35 +02:00
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_commons-logging
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(COMMONS_LOGGING_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
gb_ExternalProject__use_commons-logging :=
|
2012-04-07 10:07:35 +02:00
|
|
|
|
|
|
|
else # !SYSTEM_APACHE_COMMONS
|
|
|
|
|
2012-08-17 12:43:37 +02:00
|
|
|
$(eval $(call gb_Helper_register_jars,OXT,\
|
2013-03-26 21:39:42 +01:00
|
|
|
commons-codec-1.6 \
|
2012-08-17 11:02:49 +02:00
|
|
|
commons-httpclient-3.1 \
|
2013-03-26 21:49:53 +01:00
|
|
|
commons-lang-2.4 \
|
2012-08-17 11:02:49 +02:00
|
|
|
commons-logging-1.1.1 \
|
|
|
|
))
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_commons-codec
|
2013-03-26 21:39:42 +01:00
|
|
|
$(call gb_Jar_use_jar,$(1),commons-codec-1.6)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
define gb_ExternalProject__use_commons-codec
|
|
|
|
$(call gb_ExternalProject_use_external_project,$(1),apache_commons_codec)
|
|
|
|
endef
|
2012-04-07 10:07:35 +02:00
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_commons-httpclient
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),commons-httpclient-3.1)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
define gb_ExternalProject__use_commons-httpclient
|
|
|
|
$(call gb_ExternalProject_use_external_project,$(1),apache_commons_httpclient)
|
|
|
|
endef
|
2012-04-07 10:07:35 +02:00
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_commons-lang
|
2013-03-26 21:52:35 +01:00
|
|
|
$(call gb_Jar_use_jar,$(1),commons-lang-2.4)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
define gb_ExternalProject__use_commons-lang
|
|
|
|
$(call gb_ExternalProject_use_external_project,$(1),apache_commons_lang)
|
|
|
|
endef
|
2012-04-07 10:07:35 +02:00
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_commons-logging
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),commons-logging-1.1.1)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
2012-10-05 21:17:25 +02:00
|
|
|
define gb_ExternalProject__use_commons-logging
|
|
|
|
$(call gb_ExternalProject_use_external_project,$(1),apache_commons_logging)
|
|
|
|
endef
|
2012-04-07 10:07:35 +02:00
|
|
|
|
|
|
|
endif # SYSTEM_APACHE_COMMONS
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(SYSTEM_JFREEREPORT),YES)
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_flow-engine
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(JFREEREPORT_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_flute
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(FLUTE_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libbase
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(LIBBASE_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libfonts
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(LIBFONTS_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libformula
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(LIBFORMULA_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_liblayout
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(LIBLAYOUT_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libloader
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(LIBLOADER_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_librepository
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(LIBREPOSITORY_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libserializer
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(LIBSERIALIZER_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libxml
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(LIBXML_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_sac
|
|
|
|
$(call gb_Jar_use_system_jar,$(1),$(SAC_JAR))
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
else # !SYSTEM_JFREEREPORT
|
|
|
|
|
2012-08-17 12:43:37 +02:00
|
|
|
$(eval $(call gb_Helper_register_jars,OXT,\
|
2012-08-17 11:02:49 +02:00
|
|
|
flow-engine-0.9.4 \
|
|
|
|
flute-1.1.6 \
|
|
|
|
libbase-1.1.6 \
|
|
|
|
libfonts-1.1.6 \
|
|
|
|
libformula-1.1.7 \
|
|
|
|
liblayout-0.2.10 \
|
|
|
|
libloader-1.1.6 \
|
|
|
|
librepository-1.1.6 \
|
|
|
|
libserializer-1.1.6 \
|
|
|
|
libxml-1.1.7 \
|
|
|
|
sac \
|
|
|
|
))
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_flow-engine
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),flow-engine-0.9.4)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_flute
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),flute-1.1.6)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libbase
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),libbase-1.1.6)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libfonts
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),libfonts-1.1.6)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libformula
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),libformula-1.1.7)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_liblayout
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),liblayout-0.2.10)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libloader
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),libloader-1.1.6)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_librepository
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),librepository-1.1.6)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libserializer
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),libserializer-1.1.6)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_libxml
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),libxml-1.1.7)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
2012-08-15 17:41:25 +02:00
|
|
|
define gb_Jar__use_sac
|
2012-08-17 11:02:49 +02:00
|
|
|
$(call gb_Jar_use_jar,$(1),sac)
|
2012-04-07 10:07:35 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_JFREEREPORT
|
|
|
|
|
2012-12-02 10:51:37 +01:00
|
|
|
|
|
|
|
# Executables
|
|
|
|
|
2012-12-30 12:27:04 +01:00
|
|
|
# FIXME: the library target should be for build too
|
|
|
|
define gb_Executable__register_bestreversemap
|
|
|
|
$(call gb_Executable_add_runtime_dependencies,bestreversemap,\
|
|
|
|
$(if $(filter-out ANDROID,$(OS)),$(call gb_Library_get_target,sal_textenc)) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2012-12-30 13:11:43 +01:00
|
|
|
# TODO depending on the whole URE might be overkill, but I do not have a
|
|
|
|
# Windows machine to debug it...
|
|
|
|
# FIXME: the library target should be for build too
|
|
|
|
define gb_Executable__register_climaker
|
|
|
|
$(call gb_Executable_add_runtime_dependencies,climaker,\
|
|
|
|
$(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
|
|
|
|
$(call gb_Package_get_target_for_build,cppuhelper_unorc) \
|
|
|
|
$(call gb_Rdb_get_outdir_target_for_build,ure/services) \
|
2013-04-24 15:11:39 +03:00
|
|
|
$(call gb_UnoApi_get_target,udkapi) \
|
2013-05-07 20:41:41 +02:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2013-05-16 09:17:57 +02:00
|
|
|
# Better duplication with gb_Gallery__UNO_COMPONENTS than nothing.
|
|
|
|
# This is used to determine what we need for 'build' platform.
|
2013-05-23 09:31:48 +02:00
|
|
|
define gb_Executable__register_gengal_impl
|
|
|
|
$(call gb_Executable_add_runtime_dependencies,$(1),\
|
2013-05-16 09:17:57 +02:00
|
|
|
$(foreach component, \
|
|
|
|
comphelper/util/comphelp \
|
|
|
|
configmgr/source/configmgr \
|
|
|
|
fileaccess/source/fileacc \
|
|
|
|
framework/util/fwk \
|
|
|
|
i18npool/util/i18npool \
|
|
|
|
package/source/xstor/xstor \
|
|
|
|
package/util/package2 \
|
|
|
|
sfx2/util/sfx \
|
|
|
|
svx/util/svx \
|
|
|
|
svx/util/svxcore \
|
|
|
|
ucb/source/core/ucb1 \
|
|
|
|
ucb/source/ucp/file/ucpfile1 \
|
|
|
|
unoxml/source/service/unoxml \
|
|
|
|
,$(call gb_ComponentTarget_get_outdir_target_for_build,$(component))) \
|
2013-05-07 20:41:41 +02:00
|
|
|
$(call gb_AllLangResTarget_get_target,ofa) \
|
|
|
|
$(call gb_Configuration_get_target,registry) \
|
|
|
|
$(call gb_Configuration_get_target,fcfg_langpack) \
|
|
|
|
$(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
|
2013-05-16 14:38:39 +02:00
|
|
|
$(if $(filter-out MACOSX WNT,$(OS_FOR_BUILD)), \
|
2013-05-15 10:30:18 +01:00
|
|
|
$(call gb_Library_get_target,vclplug_svp) \
|
|
|
|
) \
|
2013-05-07 20:41:41 +02:00
|
|
|
$(call gb_Package_get_target_for_build,cppuhelper_unorc) \
|
|
|
|
$(call gb_Rdb_get_outdir_target_for_build,ure/services) \
|
|
|
|
$(call gb_UnoApi_get_target,offapi) \
|
|
|
|
$(call gb_UnoApi_get_target,udkapi) \
|
2012-12-30 13:11:43 +01:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2013-05-23 09:31:48 +02:00
|
|
|
ifeq ($(OS),WNT)
|
|
|
|
gb_Executable__register_gengal = $(call gb_Executable__register_gengal_impl,gengal)
|
|
|
|
else
|
|
|
|
gb_Executable__register_gengal.bin = $(call gb_Executable__register_gengal_impl,gengal.bin)
|
|
|
|
endif
|
|
|
|
|
2012-12-30 12:27:04 +01:00
|
|
|
ifneq ($(SYSTEM_ICU),YES)
|
|
|
|
|
|
|
|
define gb_Executable__register_gendict
|
|
|
|
$(call gb_Executable_add_runtime_dependencies,gendict,\
|
|
|
|
$(call gb_Package_get_target_for_build,icu) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-12-30 13:11:43 +01:00
|
|
|
define gb_Executable__register_idlc
|
|
|
|
$(call gb_Executable_add_runtime_dependencies,idlc,\
|
|
|
|
$(call gb_ExternalExecutable_get_dependencies,ucpp) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2012-12-30 12:27:04 +01:00
|
|
|
define gb_Executable__register_localize
|
|
|
|
$(call gb_Executable_add_runtime_dependencies,localize,\
|
|
|
|
$(foreach exec,cfgex helpex propex transex3 treex uiex ulfex xrmex,\
|
|
|
|
$(call gb_Executable_get_runtime_dependencies,$(exec)) \
|
|
|
|
) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2013-04-24 10:42:40 +02:00
|
|
|
# The dependencies on ure/services.rdb and udkapi.rdb are implicitly required
|
2012-12-30 12:27:04 +01:00
|
|
|
# due to the settings for URE_SERVICES and URE_TYPES in cppuhelper/source/unorc:
|
|
|
|
# FIXME: the library target should be for build too
|
|
|
|
define gb_Executable__register_saxparser
|
|
|
|
$(call gb_Executable_add_runtime_dependencies,saxparser,\
|
2013-03-08 14:14:46 +01:00
|
|
|
$(call gb_ComponentTarget_get_outdir_target,sax/source/expatwrap/expwrap) \
|
2012-12-30 12:27:04 +01:00
|
|
|
$(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
|
|
|
|
$(call gb_Package_get_target_for_build,cppuhelper_unorc) \
|
|
|
|
$(call gb_Rdb_get_outdir_target_for_build,ure/services) \
|
2013-04-24 15:11:39 +03:00
|
|
|
$(call gb_UnoApi_get_target,udkapi) \
|
2012-12-30 12:27:04 +01:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2013-04-24 10:42:40 +02:00
|
|
|
# NOTE: the dependencies on ure/services.rdb and udkapi.rdb are implicitly
|
2012-12-30 12:27:04 +01:00
|
|
|
# required due to the settings for URE_SERVICES and URE_TYPES in
|
|
|
|
# cppuhelper/source/unorc
|
|
|
|
# FIXME: the library target should be for build too
|
|
|
|
define gb_Executable__register_uno
|
|
|
|
$(call gb_Executable_add_runtime_dependencies,uno,\
|
|
|
|
$(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
|
|
|
|
$(call gb_Package_get_target_for_build,cppuhelper_unorc) \
|
|
|
|
$(call gb_Rdb_get_outdir_target_for_build,ure/services) \
|
2013-04-24 15:11:39 +03:00
|
|
|
$(call gb_UnoApi_get_target,udkapi) \
|
2012-12-30 12:27:04 +01:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
# External executables
|
|
|
|
|
2012-12-02 10:51:37 +01:00
|
|
|
ifneq ($(SYSTEM_LIBXML_FOR_BUILD),YES)
|
|
|
|
|
|
|
|
gb_ExternalExecutable__register_xmllint :=
|
|
|
|
|
|
|
|
else # ! SYSTEM_LIBXML_FOR_BUILD
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_xmllint
|
2012-12-29 10:00:49 +01:00
|
|
|
$(call gb_ExternalExecutable_set_internal,xmllint)
|
2012-12-02 10:51:37 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_LIBXML_FOR_BUILD
|
|
|
|
|
|
|
|
ifeq ($(SYSTEM_LIBXSLT_FOR_BUILD),YES)
|
|
|
|
|
|
|
|
gb_ExternalExecutable__register_xsltproc :=
|
|
|
|
|
|
|
|
else # ! SYSTEM_LIBXSLT_FOR_BUILD
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_xsltproc
|
2012-12-29 10:00:49 +01:00
|
|
|
$(call gb_ExternalExecutable_set_internal,xsltproc)
|
2013-02-06 17:59:18 -05:00
|
|
|
$(call gb_ExternalExecutable_add_dependencies,xsltproc,$(call gb_Package_get_target,xslt))
|
2012-12-02 10:51:37 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_LIBXSLT_FOR_BUILD
|
|
|
|
|
|
|
|
ifneq (,$(SYSTEM_UCPP))
|
|
|
|
|
|
|
|
gb_ExternalExecutable__register_ucpp :=
|
|
|
|
|
|
|
|
else # ! SYSTEM_UCPP
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_ucpp
|
2012-12-29 10:00:49 +01:00
|
|
|
$(call gb_ExternalExecutable_set_internal,ucpp)
|
2012-12-02 10:51:37 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # SYSTEM_UCPP
|
|
|
|
|
2013-03-05 22:03:38 +01:00
|
|
|
ifeq (,$(PYTHON_FOR_BUILD))
|
2012-12-02 10:51:37 +01:00
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_python
|
2013-03-19 17:27:01 +01:00
|
|
|
ifeq ($(OS),MACOSX)
|
|
|
|
|
|
|
|
# use set_external, to avoid having the command added as prerequisite for the
|
|
|
|
# targets that make use of it. (Otherwise make will choke as it doesn't have a
|
|
|
|
# matching rule to build that specific file)
|
|
|
|
$(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))
|
|
|
|
# the Zip ensures that internal python has been built (cannot use the Package
|
|
|
|
# target, as that is not used on Mac)
|
2013-05-16 13:36:24 +02:00
|
|
|
$(call gb_ExternalExecutable_add_dependencies,python,$(call gb_GeneratedPackage_get_target_for_build,python3))
|
2013-03-19 17:27:01 +01:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2013-04-21 14:34:50 +02:00
|
|
|
$(call gb_ExternalExecutable_set_internal,python,$(INSTDIR)/program/$(if $(filter WNT,$(OS)),python-core-$(PYTHON_VERSION)/bin/python.exe,python.bin))
|
|
|
|
$(call gb_ExternalExecutable_set_precommand,python,$(gb_Python_PRECOMMAND))
|
2013-03-19 17:27:01 +01:00
|
|
|
$(call gb_ExternalExecutable_add_dependencies,python,$(call gb_Package_get_target_for_build,python3))
|
|
|
|
|
|
|
|
endif
|
2012-12-02 10:51:37 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-03-05 22:03:38 +01:00
|
|
|
else
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_python
|
|
|
|
$(call gb_ExternalExecutable_set_external,python,$(PYTHON_FOR_BUILD))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif # PYTHON_FOR_BUILD
|
2012-12-02 10:51:37 +01:00
|
|
|
|
2012-12-29 12:56:24 +01:00
|
|
|
ifneq ($(SYSTEM_GENBRK),)
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_genbrk
|
|
|
|
$(call gb_ExternalExecutable_set_external,genbrk,$(SYSTEM_GENBRK))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # ! SYSTEM_GENBRK
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_genbrk
|
|
|
|
$(call gb_ExternalExecutable_set_internal,genbrk)
|
|
|
|
$(call gb_ExternalExecutable_add_dependencies,genbrk,\
|
|
|
|
$(call gb_Package_get_target_for_build,icu) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(SYSTEM_GENCCODE),)
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_genccode
|
|
|
|
$(call gb_ExternalExecutable_set_external,genccode,$(SYSTEM_GENCCODE))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # ! SYSTEM_GENCCODE
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_genccode
|
|
|
|
$(call gb_ExternalExecutable_set_internal,genccode)
|
|
|
|
$(call gb_ExternalExecutable_add_dependencies,genccode,\
|
|
|
|
$(call gb_Package_get_target_for_build,icu) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(SYSTEM_GENCMN),)
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_gencmn
|
|
|
|
$(call gb_ExternalExecutable_set_external,gencmn,$(SYSTEM_GENCMN))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
else # ! SYSTEM_GENCMN
|
|
|
|
|
|
|
|
define gb_ExternalExecutable__register_gencmn
|
|
|
|
$(call gb_ExternalExecutable_set_internal,gencmn)
|
|
|
|
$(call gb_ExternalExecutable_add_dependencies,gencmn,\
|
|
|
|
$(call gb_Package_get_target_for_build,icu) \
|
|
|
|
)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2011-04-01 20:49:35 +00:00
|
|
|
# vim: set noet sw=4 ts=4:
|