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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-11-06 03:28:26 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-11-06 03:28:26 +0300
commitf3d1be5638d48429592fdefc2ebb32d9e1110800 (patch)
tree9ce4247852ea596a93bac900df594d61175f1d7e /config
parent76320b76add081805206ea257ee9f9cf5edb11a8 (diff)
* While making changes to btools.py and Blender.py, I completely forgot about the name changes.
Here they are. Platform managers, double check that the compiler flag options still work.
Diffstat (limited to 'config')
-rw-r--r--config/darwin-config.py4
-rw-r--r--config/linux2-config.py4
-rw-r--r--config/linuxcross-config.py2
-rw-r--r--config/openbsd3-config.py4
-rw-r--r--config/sunos5-config.py4
-rw-r--r--config/win32-mingw-config.py4
6 files changed, 11 insertions, 11 deletions
diff --git a/config/darwin-config.py b/config/darwin-config.py
index 53e45f5233c..7c118b78861 100644
--- a/config/darwin-config.py
+++ b/config/darwin-config.py
@@ -260,11 +260,11 @@ CC_WARN = ['-Wall', '-Wno-long-double']
##LOPTS = --dynamic
##DYNLDFLAGS = -shared $(LDFLAGS)
-BF_PROFILE_FLAGS = ['-pg', '-g ']
+BF_PROFILE_CCFLAGS = ['-pg', '-g ']
BF_PROFILE = False
BF_DEBUG = False
-BF_DEBUG_FLAGS = ['-g']
+BF_DEBUG_CCFLAGS = ['-g']
BF_BUILDDIR='../build/darwin'
BF_INSTALLDIR='../install/darwin'
diff --git a/config/linux2-config.py b/config/linux2-config.py
index e890d264682..19b62dd2395 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -197,11 +197,11 @@ LLIBS = 'util c m dl pthread stdc++'
##LOPTS = --dynamic
##DYNLDFLAGS = -shared $(LDFLAGS)
-BF_PROFILE_FLAGS = ['-pg','-g']
BF_PROFILE = False
+BF_PROFILE_CCFLAGS = ['-pg','-g']
BF_DEBUG = False
-BF_DEBUG_FLAGS = ['-g']
+BF_DEBUG_CCFLAGS = ['-g']
BF_BUILDDIR = '../build/linux2'
BF_INSTALLDIR='../install/linux2'
diff --git a/config/linuxcross-config.py b/config/linuxcross-config.py
index 251f53a90e2..4c5f4859a6c 100644
--- a/config/linuxcross-config.py
+++ b/config/linuxcross-config.py
@@ -144,7 +144,7 @@ CC_WARN = [ '-Wall' ]
LLIBS = [ '-ldxguid', '-lgdi32', '-lmsvcrt', '-lwinmm', '-lmingw32', '-lm', '-lws2_32', '-lz'] #'-lutil', '-lc', '-lm', '-ldl', '-lpthread' ]
BF_DEBUG = False
-BF_DEBUG_FLAGS= []
+BF_DEBUG_CCFLAGS= []
BF_BUILDDIR = '../build/linuxcross'
BF_INSTALLDIR='../install/linuxcross'
diff --git a/config/openbsd3-config.py b/config/openbsd3-config.py
index 9313cbc211f..cd46d11867e 100644
--- a/config/openbsd3-config.py
+++ b/config/openbsd3-config.py
@@ -155,11 +155,11 @@ LLIBS = 'm stdc++ pthread util'
##LOPTS = --dynamic
##DYNLDFLAGS = -shared $(LDFLAGS)
-BF_PROFILE_FLAGS = ['-pg', '-g']
+BF_PROFILE_CCFLAGS = ['-pg', '-g']
BF_PROFILE = False
BF_DEBUG = False
-BF_DEBUG_FLAGS = ['-g']
+BF_DEBUG_CCFLAGS = ['-g']
BF_BUILDDIR='../build/openbsd3'
BF_INSTALLDIR='../install/openbsd3'
diff --git a/config/sunos5-config.py b/config/sunos5-config.py
index 7b1295da941..4e7e99bc884 100644
--- a/config/sunos5-config.py
+++ b/config/sunos5-config.py
@@ -169,11 +169,11 @@ LLIBS = 'c m dl pthread stdc++'
##LOPTS = --dynamic
##DYNLDFLAGS = -shared $(LDFLAGS)
-BF_PROFILE_FLAGS = ['-pg','-g']
+BF_PROFILE_CCFLAGS = ['-pg','-g']
BF_PROFILE = False
BF_DEBUG = False
-BF_DEBUG_FLAGS = []
+BF_DEBUG_CCFLAGS = []
BF_BUILDDIR = '../build/sunos5'
BF_INSTALLDIR='../install/sunos5'
diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py
index 19e9d1918c6..15bfce80f89 100644
--- a/config/win32-mingw-config.py
+++ b/config/win32-mingw-config.py
@@ -160,9 +160,9 @@ CC_WARN = [ '-Wall' ]
LLIBS = ['-lshell32', '-lshfolder', '-lgdi32', '-lmsvcrt', '-lwinmm', '-lmingw32', '-lm', '-lws2_32', '-lz', '-lstdc++']
BF_DEBUG = False
-BF_DEBUG_FLAGS= ['-g']
+BF_DEBUG_CCFLAGS= ['-g']
-BF_PROFILE_FLAGS = ['-pg','-g']
+BF_PROFILE_CCFLAGS = ['-pg','-g']
BF_PROFILE = False
BF_BUILDDIR = '..\\build\\win32-mingw'