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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-11-19 14:49:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-19 14:49:42 +0300
commitb895b2e48f3910c2ff4b971ce57fc4fe48e2c24a (patch)
tree91dc494bd60613888839ad7194456ac00dbb9cc7 /config/linux2-config.py
parent55b328035505d6c94e64e2140f0eebbbd3da6615 (diff)
- remove CPPFLAG XP_UNIX from CMake, Scons and Irix make, checked our own code and /usr/include, its only used in our netscape plugin.
- CMake on unix default OpenMP to enabled. - Scons on linux default OpenMP to enabled. - copying python is slow, for scons only copy if the directory has not been created.
Diffstat (limited to 'config/linux2-config.py')
-rw-r--r--config/linux2-config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index dffc861fca8..3eccb913932 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -165,6 +165,8 @@ BF_EXPAT = '/usr'
BF_EXPAT_LIB = 'expat'
BF_EXPAT_LIBPATH = '/usr/lib'
+WITH_BF_OPENMP = True
+
##
CC = 'gcc'
CXX = 'g++'
@@ -173,7 +175,7 @@ CXX = 'g++'
CCFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
-CPPFLAGS = ['-DXP_UNIX']
+CPPFLAGS = []
CXXFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
REL_CFLAGS = ['-O2']
REL_CCFLAGS = ['-O2']