Clang does not support -fno-check-new (and it is the default for GCC anyway)

Change-Id: I7063439eb042f2abfafc06d48c4bccffd6c7762e
This commit is contained in:
Stephan Bergmann 2013-09-30 15:12:49 +02:00
parent d3c91ba5c2
commit 10cafea2bc
2 changed files with 12 additions and 0 deletions

View File

@ -15,6 +15,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,poppler,\
poppler/poppler-notests.patch.1 \
poppler/poppler-snprintf.patch.1 \
poppler/poppler-mac-fake.patch.1 \
poppler/poppler-nochecknew.patch.1 \
))
# vim: set noet sw=4 ts=4:

View File

@ -0,0 +1,11 @@
--- poppler-0.22.5/configure
+++ poppler-0.22.5/configure
@@ -24014,7 +24014,7 @@
fi
case "$enable_compile_warnings" in
no) ;;
- yes) CXXFLAGS="-Wall -Woverloaded-virtual -Wnon-virtual-dtor -Wcast-align -fno-exceptions -fno-check-new -fno-common $CXXFLAGS";
+ yes) CXXFLAGS="-Wall -Woverloaded-virtual -Wnon-virtual-dtor -Wcast-align -fno-exceptions -fno-common $CXXFLAGS";
CFLAGS="-Wall $CFLAGS" ;;
kde) CXXFLAGS="-Wnon-virtual-dtor -Wno-long-long -Wundef \
-D_XOPEN_SOURCE=600 -D_BSD_SOURCE -Wcast-align \