1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval
$(call gb_UnpackedTarball_UnpackedTarball
,openssl
))
12 $(eval
$(call gb_UnpackedTarball_set_tarball
,openssl
,$(OPENSSL_TARBALL
),,openssl
))
14 # break symlinks after extracting tarball
15 # note: escape \; because LO patched make 3.82 cuts off the command otherwise
16 ifeq ($(OS_FOR_BUILD
),WNT
)
17 $(eval
$(call gb_UnpackedTarball_set_pre_action
,openssl
,\
18 cd
include/openssl
&& \
19 for header in
`find . -type l` \
; do \
20 cp
--remove-destination
`readlink $$$$header` $$$$header \
; \
24 $(eval
$(call gb_UnpackedTarball_add_patches
,openssl
,\
25 external
/openssl
/openssllnx.patch \
26 external
/openssl
/opensslmingw.patch \
27 external
/openssl
/opensslwnt.patch \
28 external
/openssl
/openssl-1.0
.1g-msvc2012-winxp.patch
.1 \
29 external
/openssl
/openssl-1.0
.1h-win64.patch
.1 \
30 external
/openssl
/opensslsol.patch \
31 external
/openssl
/opensslios.patch \
32 external
/openssl
/opensslosxppc.patch \
33 external
/openssl
/openssl-3650-masm.patch
.1 \
36 # vim: set noet sw=4 ts=4: