1 diff -ruN libupnp-1.2.1-orig/ixml/src/Makefile libupnp-1.2.1-1/ixml/src/Makefile
2 --- libupnp-1.2.1-orig/ixml/src/Makefile 2003-01-14 23:06:12.000000000 +0100
3 +++ libupnp-1.2.1-1/ixml/src/Makefile 2005-05-15 19:32:46.000000000 +0200
15 DEBUG_FLAGS = -O -g -DDEBUG
17 - DEBUG_FLAGS = -Os -DNDEBUG
18 + DEBUG_FLAGS = $(OPT_FLAGS) -DNDEBUG
19 STRIPU = $(STRIP) $(OBJ_DIR)/$(TARGET_OUTPUT)
22 diff -ruN libupnp-1.2.1-orig/threadutil/src/Makefile libupnp-1.2.1-1/threadutil/src/Makefile
23 --- libupnp-1.2.1-orig/threadutil/src/Makefile 2003-01-14 23:06:12.000000000 +0100
24 +++ libupnp-1.2.1-1/threadutil/src/Makefile 2005-05-15 19:32:33.000000000 +0200
35 OBJ_DIR = obj/debug/$(DIR_PATH)
36 CLEAN_PATH=debug/$(DIR_PATH)
38 -DEBUG_FLAGS += -Os -DNO_DEBUG -DNDEBUG
39 +DEBUG_FLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
40 LOCALDIR +=../bin/$(DIR_PATH)
41 TARGET_OUTPUT = libthreadutil.so
42 OBJ_DIR = obj/$(DIR_PATH)
43 diff -ruN libupnp-1.2.1-orig/upnp/src/api/makefile libupnp-1.2.1-1/upnp/src/api/makefile
44 --- libupnp-1.2.1-orig/upnp/src/api/makefile 2003-01-14 23:06:13.000000000 +0100
45 +++ libupnp-1.2.1-1/upnp/src/api/makefile 2005-05-15 19:33:04.000000000 +0200
56 OBJ_DIR = obj/debug/$(DIR_PATH)
57 UPNP_LIB_DIR = ../lib/debug/$(DIR_PATH)
59 -CFLAGS += -Os -DNDEBUG
60 +CFLAGS += $(OPT_FLAGS) -DNDEBUG
61 OBJ_DIR = obj/$(DIR_PATH)
62 UPNP_LIB_DIR = ../lib/$(DIR_PATH)
64 diff -ruN libupnp-1.2.1-orig/upnp/src/gena/Makefile libupnp-1.2.1-1/upnp/src/gena/Makefile
65 --- libupnp-1.2.1-orig/upnp/src/gena/Makefile 2003-01-14 23:06:13.000000000 +0100
66 +++ libupnp-1.2.1-1/upnp/src/gena/Makefile 2005-05-15 19:33:32.000000000 +0200
77 OBJ_DIR = obj/debug/$(DIR_PATH)
78 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
80 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
81 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
82 OBJ_DIR = obj/$(DIR_PATH)
83 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
85 diff -ruN libupnp-1.2.1-orig/upnp/src/genlib/client_table/Makefile libupnp-1.2.1-1/upnp/src/genlib/client_table/Makefile
86 --- libupnp-1.2.1-orig/upnp/src/genlib/client_table/Makefile 2003-01-14 23:06:13.000000000 +0100
87 +++ libupnp-1.2.1-1/upnp/src/genlib/client_table/Makefile 2005-05-15 19:33:41.000000000 +0200
99 OBJ_DIR = obj/$(DIR_PATH)
100 UPNP_LIB_DIR = ../../lib/$(DIR_PATH)
101 -CFLAGS += -Os -D_REENTRANT -DNO_DEBUG -DNDEBUG
102 +CFLAGS += $(OPT_FLAGS) -D_REENTRANT -DNO_DEBUG -DNDEBUG
105 TARGET_OUTPUT = $(UPNP_LIB_DIR)client_table.o
106 diff -ruN libupnp-1.2.1-orig/upnp/src/genlib/miniserver/Makefile libupnp-1.2.1-1/upnp/src/genlib/miniserver/Makefile
107 --- libupnp-1.2.1-orig/upnp/src/genlib/miniserver/Makefile 2003-01-14 23:06:13.000000000 +0100
108 +++ libupnp-1.2.1-1/upnp/src/genlib/miniserver/Makefile 2005-05-15 19:33:56.000000000 +0200
119 OBJ_DIR = obj/debug/$(DIR_PATH)
120 UPNP_LIB_DIR = ../../lib/debug/$(DIR_PATH)
122 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
123 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
124 OBJ_DIR = obj/$(DIR_PATH)
125 UPNP_LIB_DIR = ../../lib/$(DIR_PATH)
127 diff -ruN libupnp-1.2.1-orig/upnp/src/genlib/net/Makefile libupnp-1.2.1-1/upnp/src/genlib/net/Makefile
128 --- libupnp-1.2.1-orig/upnp/src/genlib/net/Makefile 2003-01-14 23:06:13.000000000 +0100
129 +++ libupnp-1.2.1-1/upnp/src/genlib/net/Makefile 2005-05-15 19:34:07.000000000 +0200
137 UPNP_INC_DIR = -I../../inc -I../../../inc -I ../../../../threadutil/src/win32 \
138 -I ../../../../threadutil/src -I ../../../../ixml/inc
140 OBJ_DIR = obj/debug/$(DIR_PATH)
141 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
143 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
144 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
145 OBJ_DIR = obj/$(DIR_PATH)
146 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
148 diff -ruN libupnp-1.2.1-orig/upnp/src/genlib/net/http/Makefile libupnp-1.2.1-1/upnp/src/genlib/net/http/Makefile
149 --- libupnp-1.2.1-orig/upnp/src/genlib/net/http/Makefile 2003-01-14 23:06:13.000000000 +0100
150 +++ libupnp-1.2.1-1/upnp/src/genlib/net/http/Makefile 2005-05-15 19:34:18.000000000 +0200
157 UPNP_INC_DIR = -I ../../../../inc -I ../../../inc \
158 -I ../../../../../threadutil/src/win32 \
159 -I ../../../../../threadutil/src -I ../../../../../ixml/inc
161 OBJ_DIR = obj/debug/$(DIR_PATH)
162 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
164 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
165 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
166 OBJ_DIR = obj/$(DIR_PATH)
167 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
169 diff -ruN libupnp-1.2.1-orig/upnp/src/genlib/net/uri/makefile libupnp-1.2.1-1/upnp/src/genlib/net/uri/makefile
170 --- libupnp-1.2.1-orig/upnp/src/genlib/net/uri/makefile 2003-01-14 23:06:13.000000000 +0100
171 +++ libupnp-1.2.1-1/upnp/src/genlib/net/uri/makefile 2005-05-15 19:35:22.000000000 +0200
182 OBJ_DIR = obj/debug/$(DIR_PATH)
183 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
185 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
186 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
187 OBJ_DIR = obj/$(DIR_PATH)
188 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
190 diff -ruN libupnp-1.2.1-orig/upnp/src/genlib/service_table/Makefile libupnp-1.2.1-1/upnp/src/genlib/service_table/Makefile
191 --- libupnp-1.2.1-orig/upnp/src/genlib/service_table/Makefile 2003-01-14 23:06:14.000000000 +0100
192 +++ libupnp-1.2.1-1/upnp/src/genlib/service_table/Makefile 2005-05-15 19:35:33.000000000 +0200
203 OBJ_DIR = obj/debug/$(DIR_PATH)
204 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
206 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
207 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
208 OBJ_DIR = obj/$(DIR_PATH)
209 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
211 diff -ruN libupnp-1.2.1-orig/upnp/src/genlib/util/Makefile libupnp-1.2.1-1/upnp/src/genlib/util/Makefile
212 --- libupnp-1.2.1-orig/upnp/src/genlib/util/Makefile 2003-01-14 23:06:14.000000000 +0100
213 +++ libupnp-1.2.1-1/upnp/src/genlib/util/Makefile 2005-05-15 19:35:44.000000000 +0200
224 OBJ_DIR = obj/debug/$(DIR_PATH)
225 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
227 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
228 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
229 OBJ_DIR = obj/$(DIR_PATH)
230 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
232 diff -ruN libupnp-1.2.1-orig/upnp/src/soap/makefile libupnp-1.2.1-1/upnp/src/soap/makefile
233 --- libupnp-1.2.1-orig/upnp/src/soap/makefile 2003-01-14 23:06:14.000000000 +0100
234 +++ libupnp-1.2.1-1/upnp/src/soap/makefile 2005-05-15 19:35:55.000000000 +0200
245 OBJ_DIR = obj/debug/$(DIR_PATH)
246 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
248 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
249 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
250 OBJ_DIR = obj/$(DIR_PATH)
251 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
253 diff -ruN libupnp-1.2.1-orig/upnp/src/ssdp/makefile libupnp-1.2.1-1/upnp/src/ssdp/makefile
254 --- libupnp-1.2.1-orig/upnp/src/ssdp/makefile 2003-01-14 23:06:14.000000000 +0100
255 +++ libupnp-1.2.1-1/upnp/src/ssdp/makefile 2005-05-15 19:36:04.000000000 +0200
266 OBJ_DIR = obj/debug/$(DIR_PATH)
267 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
269 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
270 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
271 OBJ_DIR = obj/$(DIR_PATH)
272 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
274 diff -ruN libupnp-1.2.1-orig/upnp/src/urlconfig/Makefile libupnp-1.2.1-1/upnp/src/urlconfig/Makefile
275 --- libupnp-1.2.1-orig/upnp/src/urlconfig/Makefile 2003-01-14 23:06:14.000000000 +0100
276 +++ libupnp-1.2.1-1/upnp/src/urlconfig/Makefile 2005-05-15 19:36:30.000000000 +0200
287 OBJ_DIR = obj/debug/$(DIR_PATH)
288 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
290 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
291 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
292 OBJ_DIR = obj/$(DIR_PATH)
293 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)
295 diff -ruN libupnp-1.2.1-orig/upnp/src/uuid/Makefile libupnp-1.2.1-1/upnp/src/uuid/Makefile
296 --- libupnp-1.2.1-orig/upnp/src/uuid/Makefile 2003-01-14 23:06:14.000000000 +0100
297 +++ libupnp-1.2.1-1/upnp/src/uuid/Makefile 2005-05-15 19:36:53.000000000 +0200
308 OBJ_DIR = obj/debug/$(DIR_PATH)
309 UPNP_LIB_DIR = $(LIBS)/debug/$(DIR_PATH)
311 -CFLAGS += -Os -DNO_DEBUG -DNDEBUG
312 +CFLAGS += $(OPT_FLAGS) -DNO_DEBUG -DNDEBUG
313 OBJ_DIR = obj/$(DIR_PATH)
314 UPNP_LIB_DIR = $(LIBS)/$(DIR_PATH)