]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/openssl
openssl: Drop SSE2-optimized version
[people/pmueller/ipfire-2.x.git] / lfs / openssl
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
8bf1c9f6 4# Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
1bffb208 27VER = 1.1.1j
cd1a2927
MT
28
29THISAPP = openssl-$(VER)
30DL_FILE = $(THISAPP).tar.gz
50f96334 31DL_FROM = $(URL_IPFIRE)
cd1a2927 32DIR_APP = $(DIR_SRC)/$(THISAPP)
37de68c9 33
f3c79385 34TARGET = $(DIR_INFO)/$(THISAPP)$(KCFG)
37de68c9 35
5a9bbaa9
MT
36CFLAGS += -DPURIFY -Wa,--noexecstack
37
37de68c9
MT
38export RPM_OPT_FLAGS = $(CFLAGS)
39
40CONFIGURE_OPTIONS = \
41 --prefix=/usr \
42 --openssldir=/etc/ssl \
37de68c9
MT
43 shared \
44 zlib-dynamic \
45 enable-camellia \
37de68c9 46 enable-seed \
37de68c9
MT
47 enable-rfc3779 \
48 no-idea \
49 no-mdc2 \
50 no-rc5 \
51 no-srp \
32ba4314 52 no-aria \
bff88a48 53 $(OPENSSL_ARCH)
cd1a2927 54
bff88a48
MT
55ifeq "$(IS_64BIT)" "1"
56 OPENSSL_ARCH = linux-generic64
57else
58 OPENSSL_ARCH = linux-generic32
6e696bee
MT
59endif
60
bff88a48
MT
61ifeq "$(BUILD_ARCH)" "aarch64"
62 OPENSSL_ARCH = linux-aarch64
37de68c9 63endif
bff88a48
MT
64
65ifeq "$(BUILD_ARCH)" "x86_64"
66 OPENSSL_ARCH = linux-x86_64
0f90adc0
EK
67endif
68
bff88a48 69ifeq "$(BUILD_ARCH)" "i586"
44558ee1 70 OPENSSL_ARCH = linux-elf no-sse2
0f90adc0
EK
71endif
72
cd1a2927
MT
73###############################################################################
74# Top-level Rules
75###############################################################################
76
77objects = $(DL_FILE)
78
79$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
80
1bffb208 81$(DL_FILE)_MD5 = cccaa064ed860a2b4d1303811bf5c682
cd1a2927
MT
82
83install : $(TARGET)
84
85check : $(patsubst %,$(DIR_CHK)/%,$(objects))
86
87download :$(patsubst %,$(DIR_DL)/%,$(objects))
88
89md5 : $(subst %,%_MD5,$(objects))
90
91###############################################################################
92# Downloading, checking, md5sum
93###############################################################################
94
95$(patsubst %,$(DIR_CHK)/%,$(objects)) :
96 @$(CHECK)
97
98$(patsubst %,$(DIR_DL)/%,$(objects)) :
99 @$(LOAD)
100
101$(subst %,%_MD5,$(objects)) :
102 @$(MD5)
103
104###############################################################################
105# Installation Details
106###############################################################################
107
108$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
109 @$(PREBUILD)
110 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
e153efaf 111 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.1.1d-default-cipherlist.patch
c7762365 112
a0297133
MT
113 # Apply our CFLAGS
114 cd $(DIR_APP) && sed -i Configure \
115 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
116
0f90adc0
EK
117 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
118 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
119
59d77d2e
MT
120 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS) \
121 $(CFLAGS) $(LDFLAGS)
0f90adc0
EK
122
123 cd $(DIR_APP) && make depend
23164efb 124 cd $(DIR_APP) && make $(MAKETUNING)
0f90adc0 125
44558ee1 126 # Install everything
0f90adc0 127 cd $(DIR_APP) && make install
cd1a2927 128 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
0f90adc0 129
cd1a2927
MT
130 @rm -rf $(DIR_APP)
131 @$(POSTBUILD)