~ubuntu-branches/ubuntu/precise/pingus/precise

« back to all changes in this revision

Viewing changes to src/win32/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-02-28 19:44:25 UTC
  • mfrom: (4.1.4 hardy)
  • Revision ID: james.westby@ubuntu.com-20080228194425-e8ilohlijv02kgcf
Tags: 0.7.2-2
* Fix FTBFS with gcc-4.3 by adding the missing include in
  src/input/evdev_device.cpp (Closes: #462238):
   + debian/patches/20_fix_FTBFS_with_gcc-4.3.
* Rename former patch so that the filename reflects the order in which
  the patches are applied:
   - debian/patches/data_dir.patch
   + debian/patches/10_fix_data_directory.
* Bump Standards-Version from 3.7.2 to 3.7.3, no changes needed.
* Add a dh_desktop call in the arch-dep part of debian/rules.
* Adjust the “missing-dep-for-interpreter guile” override since lintian
  now lists an alternative for that dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include <assert.h>
5
5
 
6
6
#define PACKAGE "Pingus"
7
 
#define VERSION  "0.6.0"
 
7
#define VERSION  "0.7.2"
 
8
#define PACKAGE_STRING "Pingus 0.7.2"
8
9
#define MAJOR_VERSION 0
9
 
#define MINOR_VERSION 6
10
 
#define PATCH_VERSION 0
11
 
#define VERSION_STRING "0.6.0"
 
10
#define MINOR_VERSION 7
 
11
#define PATCH_VERSION 2
 
12
#define VERSION_STRING "0.7.2"
12
13
#define PINGUS_DATADIR "data"
13
 
#define LIBXML_2 1
 
14
#define ENABLE_NLS 1
 
15
 
 
16
/* 'real' config values */
 
17
#define HAVE_STDDEF_H 1
 
18
#define HAVE_STRING_H 1
 
19
#define HAVE_STDLIB_H 1
 
20
#define HAVE_ALLOCA 1
 
21
#define HAVE_GETCWD 1
 
22
#define HAVE_SETLOCALE 1
 
23
#define HAVE_STRDUP 1
 
24
#define HAVE_GETTEXT 1
 
25
#define ICONV_CONST const
 
26
 
 
27
/* MSVC specifics */
 
28
#if defined(_MSC_VER) && !defined(__cplusplus)
 
29
#define inline __inline
 
30
#endif
 
31
 
 
32
#define alloca _alloca
 
33
#define getcwd _getcwd
 
34
// ????
 
35
#define LOCALEDIR "."
 
36
#define LOCALE_ALIAS_PATH "."
 
37
 
 
38
typedef unsigned __int64 uintmax_t;
 
39
 
 
40
#ifndef M_PI
 
41
#define M_PI 3.14159265358979323846
 
42
#endif
 
43
 
 
44
#define PATH_MAX _MAX_PATH
14
45
 
15
46
#endif