]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/openssl
openssl: Update to version 1.1.1s
[people/pmueller/ipfire-2.x.git] / lfs / openssl
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2022 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.1.1s
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 CFLAGS += -DPURIFY -Wa,--noexecstack
37
38 export RPM_OPT_FLAGS = $(CFLAGS)
39
40 CONFIGURE_OPTIONS = \
41 --prefix=/usr \
42 --openssldir=/etc/ssl \
43 shared \
44 zlib-dynamic \
45 enable-camellia \
46 enable-seed \
47 enable-rfc3779 \
48 no-idea \
49 no-mdc2 \
50 no-rc5 \
51 no-srp \
52 no-aria \
53 $(OPENSSL_ARCH)
54
55 ifeq "$(IS_64BIT)" "1"
56 OPENSSL_ARCH = linux-generic64
57 else
58 OPENSSL_ARCH = linux-generic32
59 endif
60
61 ifeq "$(BUILD_ARCH)" "aarch64"
62 OPENSSL_ARCH = linux-aarch64
63 endif
64
65 ifeq "$(BUILD_ARCH)" "x86_64"
66 OPENSSL_ARCH = linux-x86_64
67 endif
68
69 ###############################################################################
70 # Top-level Rules
71 ###############################################################################
72
73 objects = $(DL_FILE)
74
75 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
76
77 $(DL_FILE)_BLAKE2 = ecd19eaf84dbc80448b51651abe52a89cc0052f024537959c4ebe61528988f235d661244fce6967159a876dd038c817bad19df742e828ca1cbae97ce6a4124bb
78
79 install : $(TARGET)
80
81 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
82
83 download :$(patsubst %,$(DIR_DL)/%,$(objects))
84
85 b2 : $(subst %,%_BLAKE2,$(objects))
86
87 ###############################################################################
88 # Downloading, checking, b2sum
89 ###############################################################################
90
91 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
92 @$(CHECK)
93
94 $(patsubst %,$(DIR_DL)/%,$(objects)) :
95 @$(LOAD)
96
97 $(subst %,%_BLAKE2,$(objects)) :
98 @$(B2SUM)
99
100 ###############################################################################
101 # Installation Details
102 ###############################################################################
103
104 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
105 @$(PREBUILD)
106 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
107 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.1.1d-default-cipherlist.patch
108
109 # Apply our CFLAGS
110 cd $(DIR_APP) && sed -i Configure \
111 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
112
113 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
114 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
115
116 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS) \
117 $(CFLAGS) $(LDFLAGS)
118
119 cd $(DIR_APP) && make depend
120 cd $(DIR_APP) && make $(MAKETUNING)
121
122 # Install everything
123 cd $(DIR_APP) && make install
124 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
125
126 # Install RFC 7919 defined standard group ffdhe4096
127 install -m 0644 $(DIR_SRC)/config/ssl/ffdhe4096.pem /etc/ssl
128
129 @rm -rf $(DIR_APP)
130 @$(POSTBUILD)