# HG changeset patch # User Olaf Wintermann # Date 1502031745 -7200 # Node ID 8e7ef067594653e29ce2023156d4d9afaae65891 # Parent 0e36bb75a732298c795b870ebc263cc305a5afc4 removes debug compiler option diff -r 0e36bb75a732 -r 8e7ef0675946 README --- 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: diff -r 0e36bb75a732 -r 8e7ef0675946 bsd.mk --- 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 diff -r 0e36bb75a732 -r 8e7ef0675946 clang.mk --- 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 diff -r 0e36bb75a732 -r 8e7ef0675946 dav/version.h --- 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 */ diff -r 0e36bb75a732 -r 8e7ef0675946 gcc.mk --- 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 diff -r 0e36bb75a732 -r 8e7ef0675946 mingw.mk --- 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 diff -r 0e36bb75a732 -r 8e7ef0675946 osx.mk --- 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 diff -r 0e36bb75a732 -r 8e7ef0675946 suncc.mk --- 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