removes debug compiler option

Sun, 06 Aug 2017 17:02:25 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 06 Aug 2017 17:02:25 +0200
changeset 284
8e7ef0675946
parent 283
0e36bb75a732
child 285
02d3e4b1245f

removes debug compiler option

README file | annotate | diff | comparison | revisions
bsd.mk file | annotate | diff | comparison | revisions
clang.mk file | annotate | diff | comparison | revisions
dav/version.h file | annotate | diff | comparison | revisions
gcc.mk file | annotate | diff | comparison | revisions
mingw.mk file | annotate | diff | comparison | revisions
osx.mk file | annotate | diff | comparison | revisions
suncc.mk file | annotate | diff | comparison | revisions
--- a/README	Sun Aug 06 14:41:20 2017 +0200
+++ b/README	Sun Aug 06 17:02:25 2017 +0200
@@ -68,7 +68,7 @@
 License
 -------
 
-Copyright 2016 Olaf Wintermann. All rights reserved.
+Copyright 2017 Olaf Wintermann. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/bsd.mk	Sun Aug 06 14:41:20 2017 +0200
+++ b/bsd.mk	Sun Aug 06 17:02:25 2017 +0200
@@ -31,7 +31,7 @@
 AR = ar
 RM = rm
 
-CFLAGS  = -g -c -D_FILE_OFFSET_BITS=64
+CFLAGS  = -O2 -c -D_FILE_OFFSET_BITS=64
 COFLAGS = -o
 LDFLAGS = 
 LOFLAGS = -o
--- a/clang.mk	Sun Aug 06 14:41:20 2017 +0200
+++ b/clang.mk	Sun Aug 06 17:02:25 2017 +0200
@@ -31,7 +31,7 @@
 AR = ar
 RM = rm
 
-CFLAGS  = -g -c -D_FILE_OFFSET_BITS=64
+CFLAGS  = -O2 -c -D_FILE_OFFSET_BITS=64
 COFLAGS = -o
 LDFLAGS = 
 LOFLAGS = -o
--- a/dav/version.h	Sun Aug 06 14:41:20 2017 +0200
+++ b/dav/version.h	Sun Aug 06 17:02:25 2017 +0200
@@ -29,7 +29,7 @@
 #ifndef VERSION_H
 #define VERSION_H
 
-#define DAV_VERSION "1.0.0 RC5"
+#define DAV_VERSION "1.0.0"
 
 #endif /* VERSION_H */
 
--- a/gcc.mk	Sun Aug 06 14:41:20 2017 +0200
+++ b/gcc.mk	Sun Aug 06 17:02:25 2017 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2016 Olaf Wintermann. All rights reserved.
+# Copyright 2017 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
@@ -31,7 +31,7 @@
 AR = ar
 RM = rm
 
-CFLAGS  = -std=gnu99 -g -c -D_FILE_OFFSET_BITS=64
+CFLAGS  = -std=gnu99 -O2 -c -D_FILE_OFFSET_BITS=64
 COFLAGS = -o
 LDFLAGS = 
 LOFLAGS = -o
--- a/mingw.mk	Sun Aug 06 14:41:20 2017 +0200
+++ b/mingw.mk	Sun Aug 06 17:02:25 2017 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2016 Olaf Wintermann. All rights reserved.
+# Copyright 2017 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
@@ -31,7 +31,7 @@
 AR = ar
 RM = rm
 
-CFLAGS  = -std=gnu99 -g -c 
+CFLAGS  = -std=gnu99 -O2 -c 
 COFLAGS = -o
 LDFLAGS = 
 LOFLAGS = -o
@@ -42,6 +42,6 @@
 LIB_EXT = .a
 APP_EXT = .exe
 
-DAV_CFLAGS = -I/usr/include/libxml2
-DAV_LDFLAGS = -lcurl  -lxml2 -lssl -lcrypto -lws2_32 -lgdi32 -lregex
+DAV_CFLAGS = `xml2-config --cflags`
+DAV_LDFLAGS = `xml2-config --libs` -lcurl -lssl -lcrypto -lws2_32 -lgdi32 -lregex
 
--- a/osx.mk	Sun Aug 06 14:41:20 2017 +0200
+++ b/osx.mk	Sun Aug 06 17:02:25 2017 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2016 Olaf Wintermann. All rights reserved.
+# Copyright 2017 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
@@ -31,7 +31,7 @@
 AR = ar
 RM = rm
 
-CFLAGS  = -g -c -Wno-deprecated -Wno-format
+CFLAGS  = -O2 -c -Wno-deprecated -Wno-format
 COFLAGS = -o
 LDFLAGS = 
 LOFLAGS = -o
--- a/suncc.mk	Sun Aug 06 14:41:20 2017 +0200
+++ b/suncc.mk	Sun Aug 06 17:02:25 2017 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2016 Olaf Wintermann. All rights reserved.
+# Copyright 2017 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
@@ -31,7 +31,7 @@
 AR = ar
 RM = rm
 
-CFLAGS  = -g -c -xc99 -D_FILE_OFFSET_BITS=64
+CFLAGS  = -O2 -c -xc99 -D_FILE_OFFSET_BITS=64
 COFLAGS = -o
 LDFLAGS = -lmd -lm
 LOFLAGS = -o

mercurial