2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-08-02 02:50:36 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-08-02 02:50:36 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-08-02 02:50:36 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,xsec_xmlsec))
|
|
|
|
|
|
|
|
ifeq ($(OS),WNT)
|
|
|
|
$(eval $(call gb_Library_set_componentfile,xsec_xmlsec,xmlsecurity/util/xsec_xmlsec.windows))
|
|
|
|
else
|
|
|
|
$(eval $(call gb_Library_set_componentfile,xsec_xmlsec,xmlsecurity/util/xsec_xmlsec))
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,xsec_xmlsec,\
|
|
|
|
$$(INCLUDE) \
|
2012-03-05 19:02:10 +01:00
|
|
|
-I$(SRCDIR)/xmlsecurity/inc \
|
2017-05-21 14:28:57 +02:00
|
|
|
-I$(SRCDIR)/xmlsecurity/source/gpg \
|
2012-03-05 19:02:10 +01:00
|
|
|
-I$(SRCDIR)/xmlsecurity/source/xmlsec \
|
2012-11-29 20:50:15 -05:00
|
|
|
-I$(call gb_UnpackedTarball_get_dir,xmlsec/include) \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
|
|
|
|
2013-05-07 14:23:10 +02:00
|
|
|
$(eval $(call gb_Library_use_custom_headers,xsec_xmlsec,\
|
|
|
|
officecfg/registry \
|
|
|
|
))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,xsec_xmlsec))
|
2011-08-02 02:50:36 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_defs,xsec_xmlsec,\
|
|
|
|
-DXMLSEC_NO_XSLT \
|
2016-12-15 09:09:35 +01:00
|
|
|
-DXSECXMLSEC_DLLIMPLEMENTATION \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
|
|
|
|
2014-06-04 09:02:37 +02:00
|
|
|
$(eval $(call gb_Library_set_precompiled_header,xsec_xmlsec,$(SRCDIR)/xmlsecurity/inc/pch/precompiled_xsec_xmlsec))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,xsec_xmlsec,\
|
2011-08-02 02:50:36 +02:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
svl \
|
|
|
|
tl \
|
|
|
|
xo \
|
|
|
|
))
|
|
|
|
|
2017-06-21 21:59:11 +02:00
|
|
|
ifeq ($(SYSTEM_XMLSEC),)
|
2012-11-29 20:50:15 -05:00
|
|
|
$(eval $(call gb_Library_use_packages,xsec_xmlsec,\
|
|
|
|
xmlsec \
|
|
|
|
))
|
2017-06-21 21:59:11 +02:00
|
|
|
endif
|
|
|
|
|
2011-08-02 02:50:36 +02:00
|
|
|
$(eval $(call gb_Library_use_externals,xsec_xmlsec,\
|
2013-01-26 21:19:13 +01:00
|
|
|
boost_headers \
|
2011-08-02 02:50:36 +02:00
|
|
|
libxml2 \
|
2017-06-21 21:59:11 +02:00
|
|
|
xmlsec \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
2017-05-21 14:28:57 +02:00
|
|
|
ifneq ($(filter-out WNT MACOSX ANDROID IOS,$(OS)),)
|
|
|
|
$(eval $(call gb_Library_use_externals,xsec_xmlsec,\
|
|
|
|
gpgmepp \
|
|
|
|
))
|
|
|
|
endif
|
2011-08-02 02:50:36 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\
|
|
|
|
xmlsecurity/source/xmlsec/biginteger \
|
2016-07-28 10:13:45 +01:00
|
|
|
xmlsecurity/source/xmlsec/certificateextension_certextn \
|
2011-08-02 02:50:36 +02:00
|
|
|
xmlsecurity/source/xmlsec/errorcallback \
|
|
|
|
xmlsecurity/source/xmlsec/saxhelper \
|
2012-12-06 23:02:08 +01:00
|
|
|
xmlsecurity/source/xmlsec/serialnumberadapter \
|
2011-08-02 02:50:36 +02:00
|
|
|
xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl \
|
|
|
|
xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl \
|
2017-06-20 14:49:10 +02:00
|
|
|
xmlsecurity/source/xmlsec/xmlsec_init \
|
2011-08-02 02:50:36 +02:00
|
|
|
xmlsecurity/source/xmlsec/xmlstreamio \
|
|
|
|
xmlsecurity/source/xmlsec/xsec_xmlsec \
|
|
|
|
xmlsecurity/source/xmlsec/nss/ciphercontext \
|
|
|
|
xmlsecurity/source/xmlsec/nss/digestcontext \
|
|
|
|
xmlsecurity/source/xmlsec/nss/nssinitializer \
|
|
|
|
xmlsecurity/source/xmlsec/nss/xsec_nss \
|
|
|
|
))
|
|
|
|
|
2017-05-21 14:28:57 +02:00
|
|
|
ifneq ($(filter-out WNT MACOSX ANDROID IOS,$(OS)),)
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\
|
|
|
|
xmlsecurity/source/gpg/CertificateImpl \
|
|
|
|
xmlsecurity/source/gpg/CipherContext \
|
|
|
|
xmlsecurity/source/gpg/DigestContext \
|
|
|
|
xmlsecurity/source/gpg/SecurityEnvironment \
|
|
|
|
xmlsecurity/source/gpg/SEInitializer \
|
|
|
|
xmlsecurity/source/gpg/XMLEncryption \
|
|
|
|
xmlsecurity/source/gpg/XMLSecurityContext \
|
|
|
|
xmlsecurity/source/gpg/xmlsignature_gpgimpl \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
Remove MinGW support
In OOo times, there'd originally been efforts to allow building on Windows with
MinGW. Later, in LO times, this has been shifted to an attempt of cross-
compiling for Windows on Linux. That attempt can be considered abandoned, and
the relevant code rotting.
Due to this heritage, there are now three kinds of MinGW-specific code in LO:
* Code from the original OOo native Windows effort that is no longer relevant
for the LO cross-compilation effort, but has never been removed properly.
* Code from the original OOo native Windows effort that is re-purposed for the
LO cross-compilation effort.
* Code that has been added specifially for the LO cross-compilation effort.
All three kinds of code are removed.
(An unrelated, remaining use of MinGW is for --enable-build-unowinreg, utilizing
--with-mingw-cross-compiler, MINGWCXX, and MINGWSTRIP.)
Change-Id: I49daad8669b4cbe49fa923050c4a4a6ff7dda568
Reviewed-on: https://gerrit.libreoffice.org/34127
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2017-02-10 14:05:21 +01:00
|
|
|
ifeq ($(OS),WNT)
|
2011-08-02 02:50:36 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_defs,xsec_xmlsec,\
|
|
|
|
-DXMLSEC_CRYPTO_MSCRYPTO \
|
|
|
|
))
|
|
|
|
|
2013-10-01 00:06:38 +02:00
|
|
|
$(eval $(call gb_Library_add_libs,xsec_xmlsec,\
|
|
|
|
$(call gb_UnpackedTarball_get_dir,xmlsec)/win32/binaries/libxmlsec-mscrypto.lib \
|
|
|
|
$(call gb_UnpackedTarball_get_dir,xmlsec)/win32/binaries/libxmlsec.lib \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
|
|
|
|
2012-09-28 15:31:46 +02:00
|
|
|
$(eval $(call gb_Library_use_system_win32_libs,xsec_xmlsec,\
|
2011-08-16 11:56:06 +01:00
|
|
|
crypt32 \
|
2011-08-02 02:50:36 +02:00
|
|
|
advapi32 \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\
|
2017-07-20 09:14:30 +02:00
|
|
|
xmlsecurity/source/xmlsec/mscrypt/akmngr \
|
2011-08-02 02:50:36 +02:00
|
|
|
xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl \
|
|
|
|
xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl \
|
|
|
|
xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl \
|
|
|
|
xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl \
|
|
|
|
xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl \
|
|
|
|
xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl \
|
|
|
|
xmlsecurity/source/xmlsec/mscrypt/xsec_mscrypt \
|
|
|
|
))
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_defs,xsec_xmlsec,\
|
|
|
|
-DXMLSEC_CRYPTO_NSS \
|
|
|
|
))
|
|
|
|
|
Remove MinGW support
In OOo times, there'd originally been efforts to allow building on Windows with
MinGW. Later, in LO times, this has been shifted to an attempt of cross-
compiling for Windows on Linux. That attempt can be considered abandoned, and
the relevant code rotting.
Due to this heritage, there are now three kinds of MinGW-specific code in LO:
* Code from the original OOo native Windows effort that is no longer relevant
for the LO cross-compilation effort, but has never been removed properly.
* Code from the original OOo native Windows effort that is re-purposed for the
LO cross-compilation effort.
* Code that has been added specifially for the LO cross-compilation effort.
All three kinds of code are removed.
(An unrelated, remaining use of MinGW is for --enable-build-unowinreg, utilizing
--with-mingw-cross-compiler, MINGWCXX, and MINGWSTRIP.)
Change-Id: I49daad8669b4cbe49fa923050c4a4a6ff7dda568
Reviewed-on: https://gerrit.libreoffice.org/34127
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2017-02-10 14:05:21 +01:00
|
|
|
ifeq ($(OS),ANDROID)
|
2013-10-01 00:06:38 +02:00
|
|
|
$(eval $(call gb_Library_add_libs,xsec_xmlsec,\
|
|
|
|
$(call gb_UnpackedTarball_get_dir,xmlsec)/src/openssl/.libs/libxmlsec1-openssl.a \
|
|
|
|
$(call gb_UnpackedTarball_get_dir,xmlsec)/src/.libs/libxmlsec1.a \
|
2012-08-29 09:48:00 +02:00
|
|
|
))
|
|
|
|
else
|
2017-06-21 21:59:11 +02:00
|
|
|
|
|
|
|
ifeq ($(SYSTEM_XMLSEC),)
|
2013-09-19 19:28:36 +02:00
|
|
|
$(eval $(call gb_Library_add_libs,xsec_xmlsec,\
|
|
|
|
$(call gb_UnpackedTarball_get_dir,xmlsec)/src/nss/.libs/libxmlsec1-nss.a \
|
|
|
|
$(call gb_UnpackedTarball_get_dir,xmlsec)/src/.libs/libxmlsec1.a \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
2012-08-29 09:48:00 +02:00
|
|
|
endif
|
2011-08-02 02:50:36 +02:00
|
|
|
|
2017-06-21 21:59:11 +02:00
|
|
|
endif
|
|
|
|
|
2011-08-11 13:10:14 +02:00
|
|
|
$(eval $(call gb_Library_use_externals,xsec_xmlsec,\
|
2011-08-02 02:50:36 +02:00
|
|
|
plc4 \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\
|
|
|
|
xmlsecurity/source/xmlsec/nss/sanextension_nssimpl \
|
|
|
|
xmlsecurity/source/xmlsec/nss/secerror \
|
|
|
|
xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl \
|
|
|
|
xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl \
|
|
|
|
xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl \
|
|
|
|
xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl \
|
|
|
|
xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl \
|
|
|
|
))
|
|
|
|
|
Remove MinGW support
In OOo times, there'd originally been efforts to allow building on Windows with
MinGW. Later, in LO times, this has been shifted to an attempt of cross-
compiling for Windows on Linux. That attempt can be considered abandoned, and
the relevant code rotting.
Due to this heritage, there are now three kinds of MinGW-specific code in LO:
* Code from the original OOo native Windows effort that is no longer relevant
for the LO cross-compilation effort, but has never been removed properly.
* Code from the original OOo native Windows effort that is re-purposed for the
LO cross-compilation effort.
* Code that has been added specifially for the LO cross-compilation effort.
All three kinds of code are removed.
(An unrelated, remaining use of MinGW is for --enable-build-unowinreg, utilizing
--with-mingw-cross-compiler, MINGWCXX, and MINGWSTRIP.)
Change-Id: I49daad8669b4cbe49fa923050c4a4a6ff7dda568
Reviewed-on: https://gerrit.libreoffice.org/34127
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2017-02-10 14:05:21 +01:00
|
|
|
endif
|
2011-08-02 02:50:36 +02:00
|
|
|
|
2017-05-31 12:14:00 +02:00
|
|
|
# nss3 after static libs to appease --as-needed linkers
|
|
|
|
$(eval $(call gb_Library_use_externals,xsec_xmlsec,\
|
|
|
|
nss3 \
|
|
|
|
))
|
|
|
|
|
2011-08-02 02:50:36 +02:00
|
|
|
ifeq ($(OS),SOLARIS)
|
2012-09-28 12:25:50 +02:00
|
|
|
$(eval $(call gb_Library_add_libs,xsec_xmlsec,\
|
|
|
|
-ldl \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|