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