]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - lfs/openssl
Merge remote-tracking branch 'ms/ipsec-subnets' into next
[ipfire-2.x.git] / lfs / openssl
... / ...
CommitLineData
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
25include Config
26
27VER = 1.0.2d
28
29THISAPP = openssl-$(VER)
30DL_FILE = $(THISAPP).tar.gz
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34TARGET = $(DIR_INFO)/$(THISAPP)$(KCFG)
35
36ifneq "$(KCFG)" "-sse2"
37CFLAGS += -DPURIFY
38else
39CFLAGS =-O2 -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fPIC
40CFLAGS+= -fstack-protector-all --param=ssp-buffer-size=4
41CFLAGS+= -march=i686 -mmmx -msse -msse2 -mfpmath=sse
42CFLAGS+= -fomit-frame-pointer -DPURIFY
43CXXFLAGS="${CFLAGS}"
44endif
45
46export RPM_OPT_FLAGS = $(CFLAGS)
47
48CONFIGURE_OPTIONS = \
49 --prefix=/usr \
50 --openssldir=/etc/ssl \
51 --enginesdir=/usr/lib/openssl/engines \
52 shared \
53 zlib-dynamic \
54 enable-camellia \
55 enable-md2 \
56 enable-seed \
57 enable-tlsext \
58 enable-rfc3779 \
59 no-idea \
60 no-mdc2 \
61 no-rc5 \
62 no-srp \
63 -DSSL_FORBID_ENULL
64
65ifeq "$(MACHINE)" "x86_64"
66 CONFIGURE_OPTIONS += linux-x86_64
67endif
68
69ifeq "$(MACHINE)" "i586"
70 CONFIGURE_OPTIONS += linux-elf
71
72ifneq "$(KCFG)" "-sse2"
73 CONFIGURE_OPTIONS += no-sse2
74endif
75endif
76
77ifeq "$(MACHINE)" "armv5tel"
78 CONFIGURE_OPTIONS += linux-generic32
79endif
80
81###############################################################################
82# Top-level Rules
83###############################################################################
84
85objects = $(DL_FILE)
86
87$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
88
89$(DL_FILE)_MD5 = 38dd619b2e77cbac69b99f52a053d25a
90
91install : $(TARGET)
92
93check : $(patsubst %,$(DIR_CHK)/%,$(objects))
94
95download :$(patsubst %,$(DIR_DL)/%,$(objects))
96
97md5 : $(subst %,%_MD5,$(objects))
98
99###############################################################################
100# Downloading, checking, md5sum
101###############################################################################
102
103$(patsubst %,$(DIR_CHK)/%,$(objects)) :
104 @$(CHECK)
105
106$(patsubst %,$(DIR_DL)/%,$(objects)) :
107 @$(LOAD)
108
109$(subst %,%_MD5,$(objects)) :
110 @$(MD5)
111
112###############################################################################
113# Installation Details
114###############################################################################
115
116$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
117 @$(PREBUILD)
118 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
119 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.0-beta5-enginesdir.patch
120 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a-rpmbuild.patch
121 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1m-weak-ciphers.patch
122 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-disable-sslv2-sslv3.patch
123
124 # i586 specific patches
125ifeq "$(MACHINE)" "i586"
126 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a_auto_enable_padlock.patch
127 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a_disable_ssse3_for_amd.patch
128endif
129
130 # Apply our CFLAGS
131 cd $(DIR_APP) && sed -i Configure \
132 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
133
134 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
135 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
136
137 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS)
138
139 cd $(DIR_APP) && make depend
140 cd $(DIR_APP) && make
141
142ifeq "$(KCFG)" "-sse2"
143 -mkdir -pv /usr/lib/sse2
144 cd $(DIR_APP) && install -m 755 \
145 libcrypto.so.10 /usr/lib/sse2
146else
147 # Install everything.
148 cd $(DIR_APP) && make install
149 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
150
151 # Remove man pages.
152 -rm -vfr /etc/ssl/man
153
154 # Move engines to the right place.
155 -mkdir -pv /usr/lib/openssl
156 rm -vfr /usr/lib/openssl/engines
157 mv -v /usr/lib/engines /usr/lib/openssl
158endif
159
160 @rm -rf $(DIR_APP)
161 @$(POSTBUILD)