Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-07-07 19:26:02 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-07-07 19:26:02 +0400
commitf65c15cd5a269b0a95171e5168dfd6795265cdf6 (patch)
tree29f31b779f938020a4137bb1e3d060a93435a78e /config
parentefb58cdab9315175079b3288046addb160882258 (diff)
Fix #22772: remove unnecessary -fpascal-strings flag on OS X, only
some debug code in webplugin needed it.
Diffstat (limited to 'config')
-rw-r--r--config/darwin-config.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/darwin-config.py b/config/darwin-config.py
index f6d9ca97a19..1423e8fb392 100644
--- a/config/darwin-config.py
+++ b/config/darwin-config.py
@@ -279,9 +279,9 @@ else:
CFLAGS = ['-pipe','-funsigned-char']+ARCH_FLAGS
-CPPFLAGS = ['-fpascal-strings']+ARCH_FLAGS
-CCFLAGS = ['-pipe','-funsigned-char','-fpascal-strings']+ARCH_FLAGS
-CXXFLAGS = ['-pipe','-funsigned-char', '-fpascal-strings']+ARCH_FLAGS
+CPPFLAGS = []+ARCH_FLAGS
+CCFLAGS = ['-pipe','-funsigned-char']+ARCH_FLAGS
+CXXFLAGS = ['-pipe','-funsigned-char']+ARCH_FLAGS
if WITH_GHOST_COCOA==True:
PLATFORM_LINKFLAGS = ['-fexceptions','-framework','CoreServices','-framework','Foundation','-framework','IOKit','-framework','AppKit','-framework','Cocoa','-framework','Carbon','-framework','AudioUnit','-framework','AudioToolbox','-framework','CoreAudio','-framework','OpenAL']+ARCH_FLAGS