]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/openssl
openssl: Enable all assembly optimisations build SSE2 optimised version
[ipfire-2.x.git] / lfs / openssl
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2015 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.0.2a
28
29 THISAPP = openssl-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 ifeq "$(SSE2)" "1"
35 TARGET = $(DIR_INFO)/$(THISAPP)-sse2
36 else
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 endif
39
40 CFLAGS += -DPURIFY
41 export RPM_OPT_FLAGS = $(CFLAGS)
42
43 CONFIGURE_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
59
60 ifeq "$(MACHINE)" "i586"
61 CONFIGURE_OPTIONS += linux-elf
62
63 ifneq "$(SSE2)" "1"
64 CONFIGURE_OPTIONS += no-sse2
65 endif
66 endif
67
68 ifeq "$(MACHINE)" "armv5tel"
69 CONFIGURE_OPIONS += linux-generic32
70 endif
71
72 ###############################################################################
73 # Top-level Rules
74 ###############################################################################
75
76 objects = $(DL_FILE)
77
78 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
79
80 $(DL_FILE)_MD5 = a06c547dac9044161a477211049f60ef
81
82 install : $(TARGET)
83
84 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
85
86 download :$(patsubst %,$(DIR_DL)/%,$(objects))
87
88 md5 : $(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)
110 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.0-beta5-enginesdir.patch
111 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a-rpmbuild.patch
112 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1m-weak-ciphers.patch
113 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-disable-sslv2-sslv3.patch
114
115 # Apply our CFLAGS
116 cd $(DIR_APP) && sed -i Configure \
117 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
118
119 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
120 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
121
122 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS)
123
124 cd $(DIR_APP) && make depend
125 cd $(DIR_APP) && make
126
127 ifeq "$(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
131 else
132 # Install everything.
133 cd $(DIR_APP) && make install
134 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
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
143 endif
144
145 @rm -rf $(DIR_APP)
146 @$(POSTBUILD)