wok view pingus/stuff/pingus-0.7.2_gcc4.u @ rev 5053

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