]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/openssl
openssl: Update to version 1.1
[people/pmueller/ipfire-2.x.git] / lfs / openssl
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
11b5e5cb 4# Copyright (C) 2007-2018 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
5a9bbaa9 27VER = 1.1.0g
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
38# Enable SSE2 for this build
39ifeq "$(KCFG)" "-sse2"
40 CFLAGS+= -march=i686 -mmmx -msse -msse2 -mfpmath=sse
7fe56695
AF
41endif
42
37de68c9
MT
43export RPM_OPT_FLAGS = $(CFLAGS)
44
45CONFIGURE_OPTIONS = \
46 --prefix=/usr \
47 --openssldir=/etc/ssl \
37de68c9
MT
48 shared \
49 zlib-dynamic \
50 enable-camellia \
51 enable-md2 \
52 enable-seed \
37de68c9 53 enable-rfc3779 \
5a9bbaa9
MT
54 enable-ssl3 \
55 enable-ssl3-method \
56 no-engine \
37de68c9
MT
57 no-idea \
58 no-mdc2 \
59 no-rc5 \
60 no-srp \
bff88a48 61 $(OPENSSL_ARCH)
cd1a2927 62
bff88a48
MT
63ifeq "$(IS_64BIT)" "1"
64 OPENSSL_ARCH = linux-generic64
65else
66 OPENSSL_ARCH = linux-generic32
6e696bee
MT
67endif
68
bff88a48
MT
69ifeq "$(BUILD_ARCH)" "aarch64"
70 OPENSSL_ARCH = linux-aarch64
37de68c9 71endif
bff88a48
MT
72
73ifeq "$(BUILD_ARCH)" "x86_64"
74 OPENSSL_ARCH = linux-x86_64
0f90adc0
EK
75endif
76
bff88a48
MT
77ifeq "$(BUILD_ARCH)" "i586"
78 OPENSSL_ARCH = linux-elf
79
80 ifneq "$(KCFG)" "-sse2"
81 OPENSSL_ARCH += no-sse2
82 endif
0f90adc0
EK
83endif
84
cd1a2927
MT
85###############################################################################
86# Top-level Rules
87###############################################################################
88
89objects = $(DL_FILE)
90
91$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
92
5a9bbaa9 93$(DL_FILE)_MD5 = ba5f1b8b835b88cadbce9b35ed9531a6
cd1a2927
MT
94
95install : $(TARGET)
96
97check : $(patsubst %,$(DIR_CHK)/%,$(objects))
98
99download :$(patsubst %,$(DIR_DL)/%,$(objects))
100
101md5 : $(subst %,%_MD5,$(objects))
102
103###############################################################################
104# Downloading, checking, md5sum
105###############################################################################
106
107$(patsubst %,$(DIR_CHK)/%,$(objects)) :
108 @$(CHECK)
109
110$(patsubst %,$(DIR_DL)/%,$(objects)) :
111 @$(LOAD)
112
113$(subst %,%_MD5,$(objects)) :
114 @$(MD5)
115
116###############################################################################
117# Installation Details
118###############################################################################
119
120$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
121 @$(PREBUILD)
122 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
5a9bbaa9 123 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.1.0-disable-ssl3.patch
c7762365 124
a0297133
MT
125 # Apply our CFLAGS
126 cd $(DIR_APP) && sed -i Configure \
127 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
128
0f90adc0
EK
129 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
130 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
131
37de68c9 132 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS)
0f90adc0
EK
133
134 cd $(DIR_APP) && make depend
135 cd $(DIR_APP) && make
136
f3c79385 137ifeq "$(KCFG)" "-sse2"
37de68c9
MT
138 -mkdir -pv /usr/lib/sse2
139 cd $(DIR_APP) && install -m 755 \
5a9bbaa9 140 libcrypto.so.1.1 /usr/lib/sse2
37de68c9 141else
0f90adc0
EK
142 # Install everything.
143 cd $(DIR_APP) && make install
cd1a2927 144 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
37de68c9 145endif
0f90adc0 146
cd1a2927
MT
147 @rm -rf $(DIR_APP)
148 @$(POSTBUILD)