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>2006-11-02 08:17:46 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-11-02 08:17:46 +0300
commitcdd474869226eef3e4142535efda9b5934604fc0 (patch)
treede0d6475ec7eb77575f555c0acf403f496608e81 /intern/ghost/SConscript
parent0dbac3ab6922b04cc9b61148906af0d99b26cdf1 (diff)
* add freebsd3 to X list
Diffstat (limited to 'intern/ghost/SConscript')
-rw-r--r--intern/ghost/SConscript10
1 files changed, 1 insertions, 9 deletions
diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript
index d143f16fc0c..9002dca21e8 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -10,7 +10,7 @@ sources = env.Glob('intern/*.cpp')
pf = ['GHOST_DisplayManager', 'GHOST_System', 'GHOST_Window']
-if window_system == 'linux2':
+if window_system in ('linux2', 'openbsd3', 'sunos5', 'freebsd6'):
for f in pf:
sources.remove('intern' + os.sep + f + 'Win32.cpp')
sources.remove('intern' + os.sep + f + 'Carbon.cpp')
@@ -22,14 +22,6 @@ elif window_system == 'darwin':
for f in pf:
sources.remove('intern' + os.sep + f + 'Win32.cpp')
sources.remove('intern' + os.sep + f + 'X11.cpp')
-elif window_system == 'openbsd3':
- for f in pf:
- sources.remove('intern' + os.sep + f + 'Win32.cpp')
- sources.remove('intern' + os.sep + f + 'Carbon.cpp')
-elif window_system == 'sunos5':
- for f in pf:
- sources.remove('intern' + os.sep + f + 'Win32.cpp')
- sources.remove('intern' + os.sep + f + 'Carbon.cpp')
else:
print "Unknown window system specified."
Exit()