]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/openssl
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / lfs / openssl
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
da4e2fc6 4# Copyright (C) 2007-2024 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
54387ef1 27VER = 3.2.1
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 "$(BUILD_ARCH)" "aarch64"
56 OPENSSL_ARCH = linux-aarch64
37de68c9 57endif
bff88a48 58
da4e2fc6
AF
59ifeq "$(BUILD_ARCH)" "riscv64"
60 OPENSSL_ARCH = linux64-riscv64
61endif
62
bff88a48
MT
63ifeq "$(BUILD_ARCH)" "x86_64"
64 OPENSSL_ARCH = linux-x86_64
0f90adc0
EK
65endif
66
cd1a2927
MT
67###############################################################################
68# Top-level Rules
69###############################################################################
70
71objects = $(DL_FILE)
72
73$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
74
54387ef1 75$(DL_FILE)_BLAKE2 = 960222e0305166160e5ab000e29650b92063bf726551ee9ad46060166d99738d1e3a5b86fd28b14c8f4fb3a72f5aa70850defb87c02990acff3dbcbdac40b347
cd1a2927
MT
76
77install : $(TARGET)
78
79check : $(patsubst %,$(DIR_CHK)/%,$(objects))
80
81download :$(patsubst %,$(DIR_DL)/%,$(objects))
82
9a7e4d85 83b2 : $(subst %,%_BLAKE2,$(objects))
cd1a2927
MT
84
85###############################################################################
9a7e4d85 86# Downloading, checking, b2sum
cd1a2927
MT
87###############################################################################
88
89$(patsubst %,$(DIR_CHK)/%,$(objects)) :
90 @$(CHECK)
91
92$(patsubst %,$(DIR_DL)/%,$(objects)) :
93 @$(LOAD)
94
9a7e4d85
PM
95$(subst %,%_BLAKE2,$(objects)) :
96 @$(B2SUM)
cd1a2927
MT
97
98###############################################################################
99# Installation Details
100###############################################################################
101
102$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
103 @$(PREBUILD)
104 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
c7762365 105
a0297133
MT
106 # Apply our CFLAGS
107 cd $(DIR_APP) && sed -i Configure \
108 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
109
0f90adc0
EK
110 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
111 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
112
59d77d2e
MT
113 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS) \
114 $(CFLAGS) $(LDFLAGS)
0f90adc0
EK
115
116 cd $(DIR_APP) && make depend
23164efb 117 cd $(DIR_APP) && make $(MAKETUNING)
0f90adc0 118
44558ee1 119 # Install everything
0f90adc0 120 cd $(DIR_APP) && make install
cd1a2927 121 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
0f90adc0 122
35494eac
PM
123 # Install RFC 7919 defined standard group ffdhe4096
124 install -m 0644 $(DIR_SRC)/config/ssl/ffdhe4096.pem /etc/ssl
125
cd1a2927
MT
126 @rm -rf $(DIR_APP)
127 @$(POSTBUILD)