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:
authorJean-Luc Peurière <jlp@nerim.net>2006-03-11 16:33:52 +0300
committerJean-Luc Peurière <jlp@nerim.net>2006-03-11 16:33:52 +0300
commitf36e5fc1f42759b6385765168eb0bd86a9846c12 (patch)
treed86e90db3064687e253ec0c9119f05a0fc2e3889 /config
parent595b4158ba5b0b865c9c1e65123eb1da7edc0dd7 (diff)
changes in darwin config.py to reflect Nathan changes & better defaults.
Important note : for gcc3 linking you may have to remove -fexceptions from LINKFLAGS but this is mandatory for gcc4
Diffstat (limited to 'config')
-rw-r--r--config/darwin-config.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/config/darwin-config.py b/config/darwin-config.py
index 5274de7af23..b2b0b74435c 100644
--- a/config/darwin-config.py
+++ b/config/darwin-config.py
@@ -61,7 +61,7 @@ BF_FTGL_INC = '${BF_FTGL}/include'
BF_FTGL_LIB = 'extern_ftgl'
WITH_BF_GAMEENGINE='true'
-WITH_BF_PLAYER='false'
+WITH_BF_PLAYER='true'
WITH_BF_ODE = 'false'
BF_ODE = LCGDIR + '/ode'
@@ -100,7 +100,7 @@ BF_FREETYPE_INC = '${BF_FREETYPE}/include ${BF_FREETYPE}/include/freetype2'
BF_FREETYPE_LIB = 'freetype'
BF_FREETYPE_LIBPATH = '${BF_FREETYPE}/lib'
-WITH_BF_QUICKTIME = 'false' # -DWITH_QUICKTIME
+WITH_BF_QUICKTIME = 'true' # -DWITH_QUICKTIME
# Mesa Libs should go here if your using them as well....
WITH_BF_STATICOPENGL = 'true'
@@ -116,9 +116,10 @@ BF_OPENGL_LINKFLAGS = '-framework OpenGL'
CFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
-CPPFLAGS = ['-DXP_UNIX']
+CPPFLAGS = []
CCFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
-PLATFORM_LINKFLAGS = '-framework CoreServices -framework Foundation -framework IOKit -framework AppKit -framework Carbon -framework AGL -framework AudioUnit -framework AudioToolbox -framework CoreAudio -framework QuickTime'
+CXXFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
+PLATFORM_LINKFLAGS = '-fexceptions -framework CoreServices -framework Foundation -framework IOKit -framework AppKit -framework Carbon -framework AGL -framework AudioUnit -framework AudioToolbox -framework CoreAudio -framework QuickTime'
REL_CFLAGS = ['-O2']
REL_CCFLAGS = ['-O2']
##BF_DEPEND = 'true'