about summary refs log tree commit diff
path: root/contrib/MacOSX/ngIRCd.xcodeproj/project.pbxproj
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2009-12-27 17:21:37 +0100
committerAlexander Barton <alex@barton.de>2009-12-27 17:21:37 +0100
commitc62c2d349b718ad71ccabd88a42abe1ee5801ee3 (patch)
tree1981bf3d806ac3454300022e35983880d125bb13 /contrib/MacOSX/ngIRCd.xcodeproj/project.pbxproj
parent60137a7139cbeb40bb75fa40148c01715436aad5 (diff)
downloadngircd-c62c2d349b718ad71ccabd88a42abe1ee5801ee3.tar.gz
ngircd-c62c2d349b718ad71ccabd88a42abe1ee5801ee3.zip
Xcode: fix "-Wuninitialized is not supported without -O"
Fix Apple Xcode warning "cc1: warning: -Wuninitialized is not supported
without -O" when using the "Debug" build target:

Detection of uninitialized automatic variable requires data flow analsys
that is only enabled during optimized compilation.
Diffstat (limited to 'contrib/MacOSX/ngIRCd.xcodeproj/project.pbxproj')
-rw-r--r--contrib/MacOSX/ngIRCd.xcodeproj/project.pbxproj2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/MacOSX/ngIRCd.xcodeproj/project.pbxproj b/contrib/MacOSX/ngIRCd.xcodeproj/project.pbxproj
index a7cc74f8..3d9dfe7f 100644
--- a/contrib/MacOSX/ngIRCd.xcodeproj/project.pbxproj
+++ b/contrib/MacOSX/ngIRCd.xcodeproj/project.pbxproj
@@ -758,7 +758,7 @@
 				GCC_WARN_SHADOW = YES;
 				GCC_WARN_SIGN_COMPARE = YES;
 				GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
-				GCC_WARN_UNINITIALIZED_AUTOS = YES;
+				GCC_WARN_UNINITIALIZED_AUTOS = NO;
 				GCC_WARN_UNKNOWN_PRAGMAS = YES;
 				GCC_WARN_UNUSED_FUNCTION = YES;
 				GCC_WARN_UNUSED_LABEL = YES;