rev |
line source |
erjo@4718
|
1 --- pingus-0.7.2-ori/SConstruct Tue Oct 30 10:23:37 2007
|
erjo@4718
|
2 +++ pingus-0.7.2/SConstruct Tue Jan 5 13:09:07 2010
|
erjo@4718
|
3 @@ -333,7 +333,7 @@
|
erjo@4718
|
4 SpaceListOption = _SpaceListOptionClass()
|
erjo@4718
|
5
|
erjo@4718
|
6 def DefineOptions(filename, args):
|
erjo@4718
|
7 - opts = Options(filename, args)
|
erjo@4718
|
8 + opts = Variables(filename, args)
|
erjo@4718
|
9 opts.Add('CC', 'C Compiler', 'gcc')
|
erjo@4718
|
10 opts.Add('CXX', 'C++ Compiler', 'g++')
|
erjo@4718
|
11 # opts.Add('debug', 'Build with debugging options', 0)
|
erjo@4718
|
12 @@ -347,11 +347,11 @@
|
erjo@4718
|
13 opts.Add('CCFLAGS', 'C Compiler flags', [])
|
erjo@4718
|
14 opts.Add('LINKFLAGS', 'Linker Compiler flags', [])
|
erjo@4718
|
15
|
erjo@4718
|
16 - opts.Add(BoolOption('with_xinput', 'Build with Xinput support', False))
|
erjo@4718
|
17 - opts.Add(BoolOption('with_linuxusbmouse', 'Build with Linux USB mouse support', True))
|
erjo@4718
|
18 - opts.Add(BoolOption('with_linuxevdev', 'Build with Linux evdev support', True))
|
erjo@4718
|
19 - opts.Add(BoolOption('with_wiimote', 'Build with Wiimote support', False))
|
erjo@4718
|
20 - opts.Add(BoolOption('ignore_errors', 'Ignore any fatal configuration errors', False))
|
erjo@4718
|
21 + opts.Add(BoolVariable('with_xinput', 'Build with Xinput support', False))
|
erjo@4718
|
22 + opts.Add(BoolVariable('with_linuxusbmouse', 'Build with Linux USB mouse support', True))
|
erjo@4718
|
23 + opts.Add(BoolVariable('with_linuxevdev', 'Build with Linux evdev support', True))
|
erjo@4718
|
24 + opts.Add(BoolVariable('with_wiimote', 'Build with Wiimote support', False))
|
erjo@4718
|
25 + opts.Add(BoolVariable('ignore_errors', 'Ignore any fatal configuration errors', False))
|
erjo@4718
|
26 opts.Add('optional_sources', 'Additional source files', [])
|
erjo@4718
|
27 return opts
|
erjo@4718
|
28
|
erjo@4718
|
29 --- pingus-0.7.2-ori/src/input/evdev_device.cpp Mon Oct 1 19:24:54 2007
|
erjo@4718
|
30 +++ pingus-0.7.2/src/input/evdev_device.cpp Tue Jan 5 13:10:57 2010
|
erjo@4718
|
31 @@ -24,6 +24,8 @@
|
erjo@4718
|
32 #include <unistd.h>
|
erjo@4718
|
33 #include <stdexcept>
|
erjo@4718
|
34 #include <iostream>
|
erjo@4718
|
35 +#include <cstdio>
|
erjo@4718
|
36 +#include <cstring>
|
erjo@4718
|
37 #include <errno.h>
|
erjo@4718
|
38
|
erjo@4718
|
39 #include "evdev_device.hpp"
|
erjo@4718
|
40 --- pingus-0.7.2-ori/src/tinygettext/po_file_reader.cpp Thu Oct 18 19:54:01 2007
|
erjo@4718
|
41 +++ pingus-0.7.2/src/tinygettext/po_file_reader.cpp Tue Jan 5 13:10:31 2010
|
erjo@4718
|
42 @@ -24,6 +24,7 @@
|
erjo@4718
|
43 #include <sstream>
|
erjo@4718
|
44 #include <stdexcept>
|
erjo@4718
|
45 #include <string.h>
|
erjo@4718
|
46 +#include <cstdio>
|
erjo@4718
|
47 #include "iconv.hpp"
|
erjo@4718
|
48 #include "po_file_reader.hpp"
|
erjo@4718
|
49
|