]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/openssl
Merge branch 'openssl-11' into next
[people/pmueller/ipfire-2.x.git] / lfs / openssl
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2018 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.1.0g
28
29 THISAPP = openssl-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 TARGET = $(DIR_INFO)/$(THISAPP)$(KCFG)
35
36 CFLAGS += -DPURIFY -Wa,--noexecstack
37
38 # Enable SSE2 for this build
39 ifeq "$(KCFG)" "-sse2"
40 CFLAGS+= -march=i686 -mmmx -msse -msse2 -mfpmath=sse
41 endif
42
43 export RPM_OPT_FLAGS = $(CFLAGS)
44
45 CONFIGURE_OPTIONS = \
46 --prefix=/usr \
47 --openssldir=/etc/ssl \
48 shared \
49 zlib-dynamic \
50 enable-camellia \
51 enable-md2 \
52 enable-seed \
53 enable-rfc3779 \
54 enable-ssl3 \
55 enable-ssl3-method \
56 no-idea \
57 no-mdc2 \
58 no-rc5 \
59 no-srp \
60 $(OPENSSL_ARCH)
61
62 ifeq "$(IS_64BIT)" "1"
63 OPENSSL_ARCH = linux-generic64
64 else
65 OPENSSL_ARCH = linux-generic32
66 endif
67
68 ifeq "$(BUILD_ARCH)" "aarch64"
69 OPENSSL_ARCH = linux-aarch64
70 endif
71
72 ifeq "$(BUILD_ARCH)" "x86_64"
73 OPENSSL_ARCH = linux-x86_64
74 endif
75
76 ifeq "$(BUILD_ARCH)" "i586"
77 OPENSSL_ARCH = linux-elf
78
79 ifneq "$(KCFG)" "-sse2"
80 OPENSSL_ARCH += no-sse2
81 endif
82 endif
83
84 ###############################################################################
85 # Top-level Rules
86 ###############################################################################
87
88 objects = $(DL_FILE)
89
90 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
91
92 $(DL_FILE)_MD5 = ba5f1b8b835b88cadbce9b35ed9531a6
93
94 install : $(TARGET)
95
96 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
97
98 download :$(patsubst %,$(DIR_DL)/%,$(objects))
99
100 md5 : $(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)
122 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.1.0-disable-ssl3.patch
123
124 # Apply our CFLAGS
125 cd $(DIR_APP) && sed -i Configure \
126 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
127
128 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
129 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
130
131 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS) \
132 $(CFLAGS) $(LDFLAGS)
133
134 cd $(DIR_APP) && make depend
135 cd $(DIR_APP) && make
136
137 ifeq "$(KCFG)" "-sse2"
138 -mkdir -pv /usr/lib/sse2
139 cd $(DIR_APP) && install -m 755 \
140 libcrypto.so.1.1 /usr/lib/sse2
141 else
142 # Install everything.
143 cd $(DIR_APP) && make install
144 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
145 endif
146
147 @rm -rf $(DIR_APP)
148 @$(POSTBUILD)