]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/openssl
Package openssl-compat (1.0.2.n)
[ipfire-2.x.git] / lfs / openssl
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
11b5e5cb 4# Copyright (C) 2007-2018 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
5a9bbaa9 27VER = 1.1.0g
cd1a2927
MT
28
29THISAPP = openssl-$(VER)
30DL_FILE = $(THISAPP).tar.gz
50f96334 31DL_FROM = $(URL_IPFIRE)
cd1a2927 32DIR_APP = $(DIR_SRC)/$(THISAPP)
37de68c9 33
f3c79385 34TARGET = $(DIR_INFO)/$(THISAPP)$(KCFG)
37de68c9 35
5a9bbaa9
MT
36CFLAGS += -DPURIFY -Wa,--noexecstack
37
38# Enable SSE2 for this build
39ifeq "$(KCFG)" "-sse2"
40 CFLAGS+= -march=i686 -mmmx -msse -msse2 -mfpmath=sse
7fe56695
AF
41endif
42
37de68c9
MT
43export RPM_OPT_FLAGS = $(CFLAGS)
44
45CONFIGURE_OPTIONS = \
46 --prefix=/usr \
47 --openssldir=/etc/ssl \
37de68c9
MT
48 shared \
49 zlib-dynamic \
50 enable-camellia \
51 enable-md2 \
52 enable-seed \
37de68c9 53 enable-rfc3779 \
5a9bbaa9
MT
54 enable-ssl3 \
55 enable-ssl3-method \
37de68c9
MT
56 no-idea \
57 no-mdc2 \
58 no-rc5 \
59 no-srp \
bff88a48 60 $(OPENSSL_ARCH)
cd1a2927 61
bff88a48
MT
62ifeq "$(IS_64BIT)" "1"
63 OPENSSL_ARCH = linux-generic64
64else
65 OPENSSL_ARCH = linux-generic32
6e696bee
MT
66endif
67
bff88a48
MT
68ifeq "$(BUILD_ARCH)" "aarch64"
69 OPENSSL_ARCH = linux-aarch64
37de68c9 70endif
bff88a48
MT
71
72ifeq "$(BUILD_ARCH)" "x86_64"
73 OPENSSL_ARCH = linux-x86_64
0f90adc0
EK
74endif
75
bff88a48
MT
76ifeq "$(BUILD_ARCH)" "i586"
77 OPENSSL_ARCH = linux-elf
78
79 ifneq "$(KCFG)" "-sse2"
80 OPENSSL_ARCH += no-sse2
81 endif
0f90adc0
EK
82endif
83
cd1a2927
MT
84###############################################################################
85# Top-level Rules
86###############################################################################
87
88objects = $(DL_FILE)
89
90$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
91
5a9bbaa9 92$(DL_FILE)_MD5 = ba5f1b8b835b88cadbce9b35ed9531a6
cd1a2927
MT
93
94install : $(TARGET)
95
96check : $(patsubst %,$(DIR_CHK)/%,$(objects))
97
98download :$(patsubst %,$(DIR_DL)/%,$(objects))
99
100md5 : $(subst %,%_MD5,$(objects))
101
102###############################################################################
103# Downloading, checking, md5sum
104###############################################################################
105
106$(patsubst %,$(DIR_CHK)/%,$(objects)) :
107 @$(CHECK)
108
109$(patsubst %,$(DIR_DL)/%,$(objects)) :
110 @$(LOAD)
111
112$(subst %,%_MD5,$(objects)) :
113 @$(MD5)
114
115###############################################################################
116# Installation Details
117###############################################################################
118
119$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
120 @$(PREBUILD)
121 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
5a9bbaa9 122 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.1.0-disable-ssl3.patch
c7762365 123
a0297133
MT
124 # Apply our CFLAGS
125 cd $(DIR_APP) && sed -i Configure \
126 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
127
0f90adc0
EK
128 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
129 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
130
37de68c9 131 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS)
0f90adc0
EK
132
133 cd $(DIR_APP) && make depend
134 cd $(DIR_APP) && make
135
f3c79385 136ifeq "$(KCFG)" "-sse2"
37de68c9
MT
137 -mkdir -pv /usr/lib/sse2
138 cd $(DIR_APP) && install -m 755 \
5a9bbaa9 139 libcrypto.so.1.1 /usr/lib/sse2
37de68c9 140else
0f90adc0
EK
141 # Install everything.
142 cd $(DIR_APP) && make install
cd1a2927 143 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
37de68c9 144endif
0f90adc0 145
cd1a2927
MT
146 @rm -rf $(DIR_APP)
147 @$(POSTBUILD)