]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/openssl
suricata: Change midstream policy to "pass-flow"
[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.1t
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 OPENSSL_ARCH = linux-generic64
56
57 ifeq "$(BUILD_ARCH)" "aarch64"
58 OPENSSL_ARCH = linux-aarch64
59 endif
60
61 ifeq "$(BUILD_ARCH)" "x86_64"
62 OPENSSL_ARCH = linux-x86_64
63 endif
64
65 ###############################################################################
66 # Top-level Rules
67 ###############################################################################
68
69 objects = $(DL_FILE)
70
71 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
72
73 $(DL_FILE)_BLAKE2 = 66d76ea0c05a4afc3104e22602cffc2373e857728625d31ab3244881cafa91c099a817a09def7746bce4133585bfc90b769f43527e77a81ed13e60a8c2fb4d8d
74
75 install : $(TARGET)
76
77 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
78
79 download :$(patsubst %,$(DIR_DL)/%,$(objects))
80
81 b2 : $(subst %,%_BLAKE2,$(objects))
82
83 ###############################################################################
84 # Downloading, checking, b2sum
85 ###############################################################################
86
87 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
88 @$(CHECK)
89
90 $(patsubst %,$(DIR_DL)/%,$(objects)) :
91 @$(LOAD)
92
93 $(subst %,%_BLAKE2,$(objects)) :
94 @$(B2SUM)
95
96 ###############################################################################
97 # Installation Details
98 ###############################################################################
99
100 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
101 @$(PREBUILD)
102 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
103 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.1.1d-default-cipherlist.patch
104
105 # Apply our CFLAGS
106 cd $(DIR_APP) && sed -i Configure \
107 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
108
109 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
110 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
111
112 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS) \
113 $(CFLAGS) $(LDFLAGS)
114
115 cd $(DIR_APP) && make depend
116 cd $(DIR_APP) && make $(MAKETUNING)
117
118 # Install everything
119 cd $(DIR_APP) && make install
120 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
121
122 # Install RFC 7919 defined standard group ffdhe4096
123 install -m 0644 $(DIR_SRC)/config/ssl/ffdhe4096.pem /etc/ssl
124
125 @rm -rf $(DIR_APP)
126 @$(POSTBUILD)