]> 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-2020 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.1k
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 ifeq "$(BUILD_ARCH)" "i586"
70 OPENSSL_ARCH = linux-elf no-sse2
71 endif
72
73 ###############################################################################
74 # Top-level Rules
75 ###############################################################################
76
77 objects = $(DL_FILE)
78
79 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
80
81 $(DL_FILE)_MD5 = c4e7d95f782b08116afa27b30393dd27
82
83 install : $(TARGET)
84
85 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
86
87 download :$(patsubst %,$(DIR_DL)/%,$(objects))
88
89 md5 : $(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)
111 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.1.1d-default-cipherlist.patch
112
113 # Apply our CFLAGS
114 cd $(DIR_APP) && sed -i Configure \
115 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
116
117 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
118 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
119
120 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS) \
121 $(CFLAGS) $(LDFLAGS)
122
123 cd $(DIR_APP) && make depend
124 cd $(DIR_APP) && make $(MAKETUNING)
125
126 # Install everything
127 cd $(DIR_APP) && make install
128 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
129
130 @rm -rf $(DIR_APP)
131 @$(POSTBUILD)