File: hardening.patch

package info (click to toggle)
uhexen2 1.5.9%2Bdfsg-1
  • links: PTS
  • area: contrib
  • in suites: bookworm, bullseye, buster
  • size: 17,808 kB
  • sloc: ansic: 193,283; asm: 32,862; makefile: 4,797; sh: 4,495; pascal: 273; objc: 245; cpp: 19
file content (252 lines) | stat: -rw-r--r-- 4,911 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
Description: patches to enable hardening on uhexen2
 simple fixes to enable hardened build
 Author: gustavo panizzo <gfa@zumbi.com.ar>
 Origin: vendor
 Forwarded: not-needed
 Last-Update: <2016-02-14>

--- a/hw_utils/hwrcon/Makefile
+++ b/hw_utils/hwrcon/Makefile
@@ -55,8 +55,8 @@ else
 CFLAGS += -g
 endif
 
-CPPFLAGS=
-LDFLAGS =
+CPPFLAGS +=
+LDFLAGS +=
 
 # compiler includes
 INCLUDES= -I. -I$(UHEXEN2_SHARED)
--- a/hw_utils/hwmquery/Makefile
+++ b/hw_utils/hwmquery/Makefile
@@ -54,8 +54,8 @@ else
 CFLAGS += -g
 endif
 
-CPPFLAGS=
-LDFLAGS =
+CPPFLAGS +=
+LDFLAGS +=
 
 # compiler includes
 INCLUDES= -I. -I$(UHEXEN2_SHARED)
--- a/hw_utils/hwmaster/Makefile
+++ b/hw_utils/hwmaster/Makefile
@@ -54,8 +54,8 @@ else
 CFLAGS += -g
 endif
 
-CPPFLAGS=
-LDFLAGS =
+CPPFLAGS +=
+LDFLAGS +=
 
 # compiler includes
 INCLUDES= -I. -I$(UHEXEN2_SHARED)
--- a/utils/bspinfo/Makefile
+++ b/utils/bspinfo/Makefile
@@ -48,7 +48,7 @@ CFLAGS += -g
 endif
 CFLAGS += -DDOUBLEVEC_T
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/jsh2color/Makefile
+++ b/utils/jsh2color/Makefile
@@ -48,7 +48,7 @@ CFLAGS += -g
 endif
 CFLAGS += -DDOUBLEVEC_T
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/genmodel/Makefile
+++ b/utils/genmodel/Makefile
@@ -47,7 +47,7 @@ else
 CFLAGS += -g
 endif
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/qbsp/Makefile
+++ b/utils/qbsp/Makefile
@@ -48,7 +48,7 @@ CFLAGS += -g
 endif
 CFLAGS += -DDOUBLEVEC_T
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/texutils/lmp2pcx/Makefile
+++ b/utils/texutils/lmp2pcx/Makefile
@@ -47,7 +47,7 @@ else
 CFLAGS += -g
 endif
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/texutils/bsp2wal/Makefile
+++ b/utils/texutils/bsp2wal/Makefile
@@ -47,7 +47,7 @@ else
 CFLAGS += -g
 endif
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/dcc/Makefile
+++ b/utils/dcc/Makefile
@@ -47,7 +47,7 @@ else
 CFLAGS += -g
 endif
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/vis/Makefile
+++ b/utils/vis/Makefile
@@ -48,7 +48,7 @@ CFLAGS += -g
 endif
 CFLAGS += -DDOUBLEVEC_T
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/pak/Makefile
+++ b/utils/pak/Makefile
@@ -48,7 +48,7 @@ else
 CFLAGS += -g
 endif
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/light/Makefile
+++ b/utils/light/Makefile
@@ -48,7 +48,7 @@ CFLAGS += -g
 endif
 CFLAGS += -DDOUBLEVEC_T
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/utils/qfiles/Makefile
+++ b/utils/qfiles/Makefile
@@ -47,7 +47,7 @@ else
 CFLAGS += -g
 endif
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/engine/hexen2/server/Makefile
+++ b/engine/hexen2/server/Makefile
@@ -77,8 +77,6 @@ CFLAGS += -O2 -DNDEBUG=1 -ffast-math
 CFLAGS += -fomit-frame-pointer
 endif
 
-CPPFLAGS=
-LDFLAGS =
 # linkage may be sensitive to order: add SYSLIBS after all others.
 SYSLIBS =
 
--- a/h2patch/Makefile
+++ b/h2patch/Makefile
@@ -18,14 +18,14 @@ endif
 LINKER = $(CC)
 
 CPUFLAGS=
-CFLAGS  = -Wall
+CFLAGS  += -Wall
 CFLAGS += $(CPUFLAGS)
 ifndef DEBUG
 CFLAGS += -O2 -DNDEBUG=1
 else
 CFLAGS += -g
 endif
-LDFLAGS =
+LDFLAGS +=
 
 XDELTA_DIR:= $(LIBS_DIR)/xdelta3
 XDFLAGS:= -DXD3_DEBUG=0
--- a/utils/hcc/Makefile
+++ b/utils/hcc/Makefile
@@ -47,7 +47,7 @@ else
 CFLAGS += -g
 endif
 
-LDFLAGS =
+LDFLAGS +=
 LDLIBS  =
 INCLUDES= -I. -I$(COMMONDIR) -I$(UHEXEN2_SHARED)
 
--- a/engine/hexenworld/client/Makefile.svga
+++ b/engine/hexenworld/client/Makefile.svga
@@ -89,8 +89,6 @@ CFLAGS += -O2 -DNDEBUG=1 -ffast-math
 CFLAGS += -fomit-frame-pointer
 endif
 
-CPPFLAGS=
-LDFLAGS =
 # linkage may be sensitive to order: add SYSLIBS after all others.
 SYSLIBS =
 
--- a/engine/hexen2/Makefile
+++ b/engine/hexen2/Makefile
@@ -208,8 +208,6 @@ CFLAGS += -O2 -DNDEBUG=1 -ffast-math
 CFLAGS += -fomit-frame-pointer
 endif
 
-CPPFLAGS=
-LDFLAGS =
 # linkage may be sensitive to order: add SYSLIBS after all others.
 SYSLIBS =
 
--- a/engine/hexenworld/client/Makefile
+++ b/engine/hexenworld/client/Makefile
@@ -167,8 +167,6 @@ CFLAGS += -O2 -DNDEBUG=1 -ffast-math
 CFLAGS += -fomit-frame-pointer
 endif
 
-CPPFLAGS=
-LDFLAGS =
 # linkage may be sensitive to order: add SYSLIBS after all others.
 SYSLIBS =
 
--- a/engine/hexenworld/server/Makefile
+++ b/engine/hexenworld/server/Makefile
@@ -70,8 +70,6 @@ CFLAGS += -O2 -DNDEBUG=1 -ffast-math
 CFLAGS += -fomit-frame-pointer
 endif
 
-CPPFLAGS=
-LDFLAGS =
 # linkage may be sensitive to order: add SYSLIBS after all others.
 SYSLIBS =