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