]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/openssl
openssl: Enable all assembly optimisations build SSE2 optimised version
[ipfire-2.x.git] / lfs / openssl
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
2805275e 4# Copyright (C) 2007-2015 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
2805275e 27VER = 1.0.2a
cd1a2927
MT
28
29THISAPP = openssl-$(VER)
30DL_FILE = $(THISAPP).tar.gz
50f96334 31DL_FROM = $(URL_IPFIRE)
cd1a2927 32DIR_APP = $(DIR_SRC)/$(THISAPP)
37de68c9
MT
33
34ifeq "$(SSE2)" "1"
35 TARGET = $(DIR_INFO)/$(THISAPP)-sse2
36else
37 TARGET = $(DIR_INFO)/$(THISAPP)
38endif
39
40CFLAGS += -DPURIFY
41export RPM_OPT_FLAGS = $(CFLAGS)
42
43CONFIGURE_OPTIONS = \
44 --prefix=/usr \
45 --openssldir=/etc/ssl \
46 --enginesdir=/usr/lib/openssl/engines \
47 shared \
48 zlib-dynamic \
49 enable-camellia \
50 enable-md2 \
51 enable-seed \
52 enable-tlsext \
53 enable-rfc3779 \
54 no-idea \
55 no-mdc2 \
56 no-rc5 \
57 no-srp \
58 -DSSL_FORBID_ENULL
cd1a2927 59
0f90adc0 60ifeq "$(MACHINE)" "i586"
37de68c9
MT
61 CONFIGURE_OPTIONS += linux-elf
62
63ifneq "$(SSE2)" "1"
64 CONFIGURE_OPTIONS += no-sse2
65endif
0f90adc0
EK
66endif
67
68ifeq "$(MACHINE)" "armv5tel"
37de68c9 69 CONFIGURE_OPIONS += linux-generic32
0f90adc0
EK
70endif
71
cd1a2927
MT
72###############################################################################
73# Top-level Rules
74###############################################################################
75
76objects = $(DL_FILE)
77
78$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
79
2805275e 80$(DL_FILE)_MD5 = a06c547dac9044161a477211049f60ef
cd1a2927
MT
81
82install : $(TARGET)
83
84check : $(patsubst %,$(DIR_CHK)/%,$(objects))
85
86download :$(patsubst %,$(DIR_DL)/%,$(objects))
87
88md5 : $(subst %,%_MD5,$(objects))
89
90###############################################################################
91# Downloading, checking, md5sum
92###############################################################################
93
94$(patsubst %,$(DIR_CHK)/%,$(objects)) :
95 @$(CHECK)
96
97$(patsubst %,$(DIR_DL)/%,$(objects)) :
98 @$(LOAD)
99
100$(subst %,%_MD5,$(objects)) :
101 @$(MD5)
102
103###############################################################################
104# Installation Details
105###############################################################################
106
107$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
108 @$(PREBUILD)
109 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
0f90adc0 110 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.0-beta5-enginesdir.patch
1245aa72 111 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a-rpmbuild.patch
a0297133 112 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1m-weak-ciphers.patch
d0bd5afe 113 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-disable-sslv2-sslv3.patch
0f90adc0 114
a0297133
MT
115 # Apply our CFLAGS
116 cd $(DIR_APP) && sed -i Configure \
117 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
118
0f90adc0
EK
119 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
120 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
121
37de68c9 122 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS)
0f90adc0
EK
123
124 cd $(DIR_APP) && make depend
125 cd $(DIR_APP) && make
126
37de68c9
MT
127ifeq "$(SSE2)" "1"
128 -mkdir -pv /usr/lib/sse2
129 cd $(DIR_APP) && install -m 755 \
130 libcrypto.so.10 libssl.so.10 /usr/lib/sse2
131else
0f90adc0
EK
132 # Install everything.
133 cd $(DIR_APP) && make install
cd1a2927 134 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
0f90adc0
EK
135
136 # Remove man pages.
137 -rm -vfr /etc/ssl/man
138
139 # Move engines to the right place.
140 -mkdir -pv /usr/lib/openssl
141 rm -vfr /usr/lib/openssl/engines
142 mv -v /usr/lib/engines /usr/lib/openssl
37de68c9 143endif
0f90adc0 144
cd1a2927
MT
145 @rm -rf $(DIR_APP)
146 @$(POSTBUILD)