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