]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/openssl
toolchain: update to gcc-7.3.0 and enable retpolines on x86_64 and i586
[ipfire-2.x.git] / lfs / openssl
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
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 #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 1.0.2n
28
29 THISAPP = openssl-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 TARGET = $(DIR_INFO)/$(THISAPP)$(KCFG)
35
36 ifneq "$(KCFG)" "-sse2"
37 CFLAGS += -DPURIFY
38 else
39 CFLAGS =-O2 -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fPIC
40 CFLAGS+= -mindirect-branch=thunk -mfunction-return=thunk
41 CFLAGS+= -fstack-protector-all --param=ssp-buffer-size=4
42 CFLAGS+= -march=i686 -mmmx -msse -msse2 -mfpmath=sse
43 CFLAGS+= -fomit-frame-pointer -DPURIFY
44 CXXFLAGS="${CFLAGS}"
45 endif
46
47 export RPM_OPT_FLAGS = $(CFLAGS)
48
49 CONFIGURE_OPTIONS = \
50 --prefix=/usr \
51 --openssldir=/etc/ssl \
52 --enginesdir=/usr/lib/openssl/engines \
53 shared \
54 zlib-dynamic \
55 enable-camellia \
56 enable-md2 \
57 disable-ssl2 \
58 enable-seed \
59 enable-tlsext \
60 enable-rfc3779 \
61 no-idea \
62 no-mdc2 \
63 no-rc5 \
64 no-srp \
65 -DSSL_FORBID_ENULL \
66 $(OPENSSL_ARCH)
67
68 ifeq "$(IS_64BIT)" "1"
69 OPENSSL_ARCH = linux-generic64
70 else
71 OPENSSL_ARCH = linux-generic32
72 endif
73
74 ifeq "$(BUILD_ARCH)" "aarch64"
75 OPENSSL_ARCH = linux-aarch64
76 endif
77
78 ifeq "$(BUILD_ARCH)" "x86_64"
79 OPENSSL_ARCH = linux-x86_64
80 endif
81
82 ifeq "$(BUILD_ARCH)" "i586"
83 OPENSSL_ARCH = linux-elf
84
85 ifneq "$(KCFG)" "-sse2"
86 OPENSSL_ARCH += no-sse2
87 endif
88 endif
89
90 ###############################################################################
91 # Top-level Rules
92 ###############################################################################
93
94 objects = $(DL_FILE)
95
96 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
97
98 $(DL_FILE)_MD5 = 13bdc1b1d1ff39b6fd42a255e74676a4
99
100 install : $(TARGET)
101
102 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
103
104 download :$(patsubst %,$(DIR_DL)/%,$(objects))
105
106 md5 : $(subst %,%_MD5,$(objects))
107
108 ###############################################################################
109 # Downloading, checking, md5sum
110 ###############################################################################
111
112 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
113 @$(CHECK)
114
115 $(patsubst %,$(DIR_DL)/%,$(objects)) :
116 @$(LOAD)
117
118 $(subst %,%_MD5,$(objects)) :
119 @$(MD5)
120
121 ###############################################################################
122 # Installation Details
123 ###############################################################################
124
125 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
126 @$(PREBUILD)
127 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
128 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.0-beta5-enginesdir.patch
129 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a-rpmbuild.patch
130 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2h-weak-ciphers.patch
131 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2g-disable-sslv2v3.patch
132
133 # i586 specific patches
134 ifeq "$(BUILD_ARCH)" "i586"
135 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a_auto_enable_padlock.patch
136 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a_disable_ssse3_for_amd.patch
137 endif
138
139 # With openssl 1.0.2e, pod2mantest is missing
140 echo -e "#!/bin/bash\necho \$$(which pod2man)" > $(DIR_APP)/util/pod2mantest
141 chmod a+x $(DIR_APP)/util/pod2mantest
142
143 # Apply our CFLAGS
144 cd $(DIR_APP) && sed -i Configure \
145 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
146
147 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
148 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
149
150 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS)
151
152 cd $(DIR_APP) && make depend
153 cd $(DIR_APP) && make
154
155 ifeq "$(KCFG)" "-sse2"
156 -mkdir -pv /usr/lib/sse2
157 cd $(DIR_APP) && install -m 755 \
158 libcrypto.so.10 /usr/lib/sse2
159 else
160 # Install everything.
161 cd $(DIR_APP) && make install
162 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
163
164 # Remove man pages.
165 -rm -vfr /etc/ssl/man
166
167 # Move engines to the right place.
168 -mkdir -pv /usr/lib/openssl
169 rm -vfr /usr/lib/openssl/engines
170 mv -v /usr/lib/engines /usr/lib/openssl
171 endif
172
173 @rm -rf $(DIR_APP)
174 @$(POSTBUILD)