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:
authorNathan Letwory <nathan@letworyinteractive.com>2004-03-07 23:27:27 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2004-03-07 23:27:27 +0300
commitcd0b492ca13659b803f8d70beac87ff937b984c4 (patch)
treeefeed8dd212c76a995919d355d93c38daabd8747 /SConstruct
parent3114e5916c1831f6634b1f4f287844a430d5b21c (diff)
* Added linux-i386 to appease Mandrake 9 users
* Added stdc++ to the platform libs for linux2/linux-i386 for the same users
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 4ba418bf89d..4c6caf7363b 100644
--- a/SConstruct
+++ b/SConstruct
@@ -16,7 +16,7 @@ freetype_env = Environment ()
link_env = Environment ()
env = Environment ()
-if sys.platform == 'linux2':
+if sys.platform == 'linux2' or sys.platform == 'linux-i386':
use_international = 'false'
use_gameengine = 'false'
use_openal = 'false'
@@ -36,7 +36,7 @@ if sys.platform == 'linux2':
defines = []
warn_flags = ['-Wall', '-W']
window_system = 'X11'
- platform_libs = ['m', 'util']
+ platform_libs = ['m', 'util', 'stdc++']
platform_libpath = []
platform_linkflags = []
extra_includes = []