pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] r3996 - trunk/pingus


From: grumbel at BerliOS
Subject: [Pingus-CVS] r3996 - trunk/pingus
Date: Mon, 27 Apr 2009 19:58:13 +0200

Author: grumbel
Date: 2009-04-27 19:58:13 +0200 (Mon, 27 Apr 2009)
New Revision: 3996

Modified:
   trunk/pingus/SConstruct
Log:
Replaced Options with Variables

Modified: trunk/pingus/SConstruct
===================================================================
--- trunk/pingus/SConstruct     2009-04-10 05:24:10 UTC (rev 3995)
+++ trunk/pingus/SConstruct     2009-04-27 17:58:13 UTC (rev 3996)
@@ -302,7 +302,7 @@
 SpaceListOption = _SpaceListOptionClass()
 
 def DefineOptions(filename, args):
-   opts = Options(filename, args)
+   opts = Variables(filename, args)
    opts.Add('CC', 'C Compiler', 'gcc')
    opts.Add('CXX', 'C++ Compiler', 'g++')
 #   opts.Add('debug', 'Build with debugging options', 0)
@@ -317,12 +317,12 @@
    opts.Add('CXXFLAGS',   'C++ Compiler flags', [])
    opts.Add('LINKFLAGS',  'Linker Compiler flags', [])
 
-   opts.Add(BoolOption('with_opengl',        'Build with OpenGL support', 
True))
-   opts.Add(BoolOption('with_xinput',        'Build with Xinput support', 
False))
-   opts.Add(BoolOption('with_linuxusbmouse', 'Build with Linux USB mouse 
support', True))
-   opts.Add(BoolOption('with_linuxevdev',    'Build with Linux evdev support', 
True))
-   opts.Add(BoolOption('with_wiimote',       'Build with Wiimote support', 
False))
-   opts.Add(BoolOption('ignore_errors',      'Ignore any fatal configuration 
errors', False))
+   opts.Add(BoolVariable('with_opengl',        'Build with OpenGL support', 
True))
+   opts.Add(BoolVariable('with_xinput',        'Build with Xinput support', 
False))
+   opts.Add(BoolVariable('with_linuxusbmouse', 'Build with Linux USB mouse 
support', True))
+   opts.Add(BoolVariable('with_linuxevdev',    'Build with Linux evdev 
support', True))
+   opts.Add(BoolVariable('with_wiimote',       'Build with Wiimote support', 
False))
+   opts.Add(BoolVariable('ignore_errors',      'Ignore any fatal configuration 
errors', False))
    opts.Add('optional_sources', 'Additional source files', [])
    return opts
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]