File: config.h

package info (click to toggle)
glhack 1.2-4
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 26,744 kB
  • sloc: ansic: 208,571; cpp: 13,139; yacc: 2,005; makefile: 1,155; lex: 377; sh: 121; awk: 89; sed: 11
file content (42 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* config.h
 *
 * Currently this must be edited by hand.
 * In the future, may be automatically generated.
 */

/* name of package */
#define PACKAGE        "edtile"
#define PACKAGE_TITLE  "EdTile"

/* version number of package */
#define VERSION      "0.2.5"
#define VERSION_HEX  0x025

/* platform */
#define LINUX 1
#undef WIN32

/* endianness */
#undef CPU_BIG_ENDIAN

/* disable debugging code ? */
#undef NDEBUG

/* whether we're using the FLTK toolkit */
#define USE_FLTK 1

/* whether we're using SDL */
#undef USE_SDL

/* whether we're using GL */
#undef USE_GL

/* whether we're using the PNG library */
#undef USE_PNG

/* whether we're using the JPEG library */
#undef USE_JPEG

/* do we have 64-bit integers ? */
#define HAVE_INT64