]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/openssl-compat
collectd: Fix typo in "derive"
[ipfire-2.x.git] / lfs / openssl-compat
CommitLineData
0f90adc0
EK
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
cce37f04 4# Copyright (C) 2007-2014 IPFire Team <info@ipfire.org> #
0f90adc0
EK
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
9ffd1b35 27VER = 0.9.8zf
0f90adc0
EK
28
29THISAPP = openssl-$(VER)
30DL_FILE = $(THISAPP).tar.gz
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34
35###############################################################################
36# Top-level Rules
37###############################################################################
38
39objects = $(DL_FILE)
40
41$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
42
9ffd1b35 43$(DL_FILE)_MD5 = c69a4a679233f7df189e1ad6659511ec
0f90adc0
EK
44
45install : $(TARGET)
46
47check : $(patsubst %,$(DIR_CHK)/%,$(objects))
48
49download :$(patsubst %,$(DIR_DL)/%,$(objects))
50
51md5 : $(subst %,%_MD5,$(objects))
52
53###############################################################################
54# Downloading, checking, md5sum
55###############################################################################
56
57$(patsubst %,$(DIR_CHK)/%,$(objects)) :
58 @$(CHECK)
59
60$(patsubst %,$(DIR_DL)/%,$(objects)) :
61 @$(LOAD)
62
63$(subst %,%_MD5,$(objects)) :
64 @$(MD5)
65
66###############################################################################
67# Installation Details
68###############################################################################
69
70$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
71 @$(PREBUILD)
72 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
73
3b902535 74 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-disable-sslv2-sslv3.patch
f7165e5a 75
a0297133
MT
76 # Apply our CFLAGS
77 cd $(DIR_APP) && sed -i Configure \
78 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
79
0f90adc0
EK
80 cd $(DIR_APP) && sed -i -e 's/mcpu/march/' config
81 cd $(DIR_APP) && sed -i -e 's/-O3/-O2/' -e 's/-march=i486/-march=i586/' Configure
82
83 # Support for engines is disabled, because the shared objects from the
84 # new version of openssl cannot be loaded by the old one.
85
86 cd $(DIR_APP) && ./Configure \
87 --prefix=/usr \
88 --openssldir=/etc/ssl \
89 shared linux-elf \
90 zlib-dynamic \
91 no-engines \
f7165e5a 92 no-asm 386 \
a0297133 93 -DSSL_FORBID_ENULL
0f90adc0
EK
94
95 cd $(DIR_APP) && make depend
96 cd $(DIR_APP) && make
97
98 cd $(DIR_APP) && install -v -m 755 libcrypto.so.0.9.8 /usr/lib
99 cd $(DIR_APP) && install -v -m 755 libssl.so.0.9.8 /usr/lib
100
101 @rm -rf $(DIR_APP)
102 @$(POSTBUILD)