Fix label on declaration
[survex.git] / src / msvc / config.h.in
blob936477a114bfa714b2ed5ef66e119106585cc6a0
1 /* config.h.in. Process with miniam.pl to produce config.h */
3 /* Define to `unsigned' if <sys/types.h> doesn't define. */
4 /* #undef size_t */
6 /* Define if your <sys/time.h> declares struct tm. */
7 #undef TM_IN_SYS_TIME
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
13 /* Define if the X Window System is missing or not being used. */
14 #define X_DISPLAY_MISSING
16 /* copyright message */
17 #define COPYRIGHT_MSG "@COPYRIGHT_MSG@"
19 /* Copyright Message for Aven */
20 #define AVEN_COPYRIGHT_MSG "@AVEN_COPYRIGHT_MSG@"
22 #if _MSC_VER >= 1600
23 # include <stdint.h>
24 #else
25 /* signed 16 bit integer type */
26 typedef __int16 int16_t;
28 /* unsigned 16 bit integer type */
29 typedef unsigned __int16 uint16_t;
31 /* signed 32 bit integer type */
32 typedef __int32 int32_t;
34 /* unsigned 32 bit integer type */
35 typedef unsigned __int32 uint32_t;
36 #endif
38 /* Define if you have the mktime function. */
39 #define HAVE_MKTIME 1
41 /* Define if you have the perror function. */
42 #define HAVE_PERROR 1
44 /* Define if you have the popen function. */
45 #define HAVE_POPEN 1
47 /* Define if you have the <setjmp.h> header file. */
48 #define HAVE_SETJMP_H 1
50 /* Define if you have the strdup function. */
51 #define HAVE_STRDUP 1
53 /* Define if you have the strerror function. */
54 #define HAVE_STRERROR 1
56 /* Define if you have the strtod function. */
57 #define HAVE_STRTOD 1
59 /* Define if you have the strtol function. */
60 #define HAVE_STRTOL 1
62 /* Define to 1 if you have the `hypot' function. */
63 #define HAVE_HYPOT 1
65 /* Define if you have the <limits.h> header file. */
66 #define HAVE_LIMITS_H 1
68 /* Define if you have the <string.h> header file. */
69 #define HAVE_STRING_H 1
71 /* Define if you have the m library (-lm). */
72 #undef HAVE_LIBM
74 /* Name of package */
75 #define PACKAGE "@PACKAGE@"
77 /* Version number of package */
78 #define VERSION "@VERSION@"
80 /* Name of package (capitalised) */
81 #define PRETTYPACKAGE "@PRETTYPACKAGE@"
83 /* Version number of package (comma-separated) */
84 #define COMMAVERSION @COMMAVERSION@