~ubuntu-branches/debian/stretch/assaultcube-data/stretch

« back to all changes in this revision

Viewing changes to source/src/pch.h

  • Committer: Bazaar Package Importer
  • Author(s): Gonéri Le Bouder, Ansgar Burchardt, Gonéri Le Bouder
  • Date: 2010-04-02 23:37:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100402233755-kf74fxwlu634o6vg
Tags: 1.0.4+repack1-1
[ Ansgar Burchardt ]
* debian/control: fix typo in short description

[ Gonéri Le Bouder ]
* Upgrade to 1.0.4
* bump standards-version to 3.8.4
* Add Depends: ${misc:Depends} just to avoid a lintian warning
* Add a debian/source/format file for the same reason

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifdef __GNUC__
 
2
#ifdef _FORTIFY_SOURCE
 
3
#undef _FORTIFY_SOURCE
 
4
#endif
 
5
 
 
6
#define gamma __gamma
 
7
#endif
 
8
 
 
9
#include <math.h>
 
10
 
 
11
#ifdef __GNUC__
 
12
#undef gamma
 
13
#endif
 
14
 
 
15
#include <string.h>
 
16
#include <stdlib.h>
 
17
#include <stdio.h>
 
18
#include <stdarg.h>
 
19
#include <ctype.h>
 
20
#include <time.h>
 
21
#include <limits.h>
 
22
#ifdef __GNUC__
 
23
#include <new>
 
24
#include <signal.h>
 
25
#else
 
26
#include <new.h>
 
27
#endif
 
28
 
 
29
#ifdef WIN32
 
30
    #define WIN32_LEAN_AND_MEAN
 
31
    #include "windows.h"
 
32
    #include <tlhelp32.h>
 
33
    #ifndef __GNUC__
 
34
        #include <Dbghelp.h>
 
35
    #endif
 
36
    #define ZLIB_DLL
 
37
    #define _WINDOWS
 
38
#endif
 
39
 
 
40
#ifndef STANDALONE
 
41
#include <SDL.h>
 
42
#include <SDL_image.h>
 
43
 
 
44
#define GL_GLEXT_LEGACY
 
45
#define __glext_h__
 
46
#define NO_SDL_GLEXT
 
47
#include <SDL_opengl.h>
 
48
#undef __glext_h__
 
49
 
 
50
#include "GL/glext.h"
 
51
#endif
 
52
 
 
53
#include <zlib.h>
 
54
#include <enet/enet.h>
 
55