source: git/src/msvc/config.h.in

walls-data
Last change on this file was c1e13d4, checked in by Olly Betts <olly@…>, 7 weeks ago

Clean up unused defines

  • Property mode set to 100644
File size: 2.0 KB
Line 
1/* config.h.in.  Process with miniam.pl to produce config.h */
2
3/* Define to `unsigned' if <sys/types.h> doesn't define.  */
4/* #undef size_t */
5
6/* Define if your <sys/time.h> declares struct tm.  */
7#undef TM_IN_SYS_TIME
8
9/* Define if your processor stores words with the most significant
10   byte first (like Motorola and SPARC, unlike Intel and VAX).  */
11#undef WORDS_BIGENDIAN
12
13/* Define if the X Window System is missing or not being used.  */
14#define X_DISPLAY_MISSING
15
16/* copyright message */
17#define COPYRIGHT_MSG "@COPYRIGHT_MSG@"
18
19/* Copyright Message for Aven */
20#define AVEN_COPYRIGHT_MSG "@AVEN_COPYRIGHT_MSG@"
21
22#if _MSC_VER >= 1600
23# include <stdint.h>
24#else
25/* signed 16 bit integer type */
26typedef __int16 int16_t;
27
28/* unsigned 16 bit integer type */
29typedef unsigned __int16 uint16_t;
30
31/* signed 32 bit integer type */
32typedef __int32 int32_t;
33
34/* unsigned 32 bit integer type */
35typedef unsigned __int32 uint32_t;
36#endif
37
38/* Define if you have the mktime function.  */
39#define HAVE_MKTIME 1
40
41/* Define if you have the perror function.  */
42#define HAVE_PERROR 1
43
44/* Define if you have the popen function.  */
45#define HAVE_POPEN 1
46
47/* Define if you have the <setjmp.h> header file.  */
48#define HAVE_SETJMP_H 1
49
50/* Define if you have the strdup function.  */
51#define HAVE_STRDUP 1
52
53/* Define if you have the strerror function.  */
54#define HAVE_STRERROR 1
55
56/* Define if you have the strtod function.  */
57#define HAVE_STRTOD 1
58
59/* Define if you have the strtol function.  */
60#define HAVE_STRTOL 1
61
62/* Define to 1 if you have the `hypot' function. */
63#define HAVE_HYPOT 1
64
65/* Define if you have the <limits.h> header file.  */
66#define HAVE_LIMITS_H 1
67
68/* Define if you have the <string.h> header file.  */
69#define HAVE_STRING_H 1
70
71/* Define if you have the m library (-lm).  */
72#undef HAVE_LIBM
73
74/* Name of package */
75#define PACKAGE "@PACKAGE@"
76
77/* Version number of package */
78#define VERSION "@VERSION@"
79
80/* Name of package (capitalised) */
81#define PRETTYPACKAGE "@PRETTYPACKAGE@"
82
83/* Version number of package (comma-separated) */
84#define COMMAVERSION @COMMAVERSION@
85
Note: See TracBrowser for help on using the repository browser.