source: git/src/msvc/config.h.in @ 0b25b30

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 0b25b30 was 0b25b30, checked in by Olly Betts <olly@…>, 10 years ago

src/msvc/config.h.in: Update to INT16_T to int16_t and INT32_T to
int32_t. AFAIK, building with MSVC hasn't been tested for a long
time, so it's likely more fixes will be needed.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/* config.h.in.  Process with miniam.pl to produce config.h */
2
3/* Define to empty if the keyword does not work.  */
4/* #undef const */
5
6/* Define if you don't have vprintf but do have _doprnt.  */
7#undef HAVE_DOPRNT
8
9/* Define if you have the strftime function.  */
10#define HAVE_STRFTIME 1
11
12/* Define if you have the vprintf function.  */
13#define HAVE_VPRINTF 1
14
15/* Define as the return type of signal handlers (int or void).  */
16#define RETSIGTYPE void
17
18/* Define to `unsigned' if <sys/types.h> doesn't define.  */
19/* #undef size_t */
20
21/* Define if you have the ANSI C header files.  */
22#define STDC_HEADERS
23
24/* Define if your <sys/time.h> declares struct tm.  */
25#undef TM_IN_SYS_TIME
26
27/* Define if your processor stores words with the most significant
28   byte first (like Motorola and SPARC, unlike Intel and VAX).  */
29#undef WORDS_BIGENDIAN
30
31/* Define if the X Window System is missing or not being used.  */
32#define X_DISPLAY_MISSING
33
34/* copyright message */
35#define COPYRIGHT_MSG "@COPYRIGHT_MSG@"
36
37/* Copyright Message for Aven */
38#define AVEN_COPYRIGHT_MSG "@AVEN_COPYRIGHT_MSG@"
39
40#if _MSC_VER >= 1600
41# include <stdint.h>
42#else
43/* signed 16 bit integer type */
44typedef __int16 int16_t;
45
46/* signed 32 bit integer type */
47typedef __int32 int32_t;
48#endif
49
50/* strcasecmp define for systems which call it something else */
51#define strcasecmp stricmp
52
53/* Define if you have the difftime function.  */
54#define HAVE_DIFFTIME 1
55
56/* Define if you have the mktime function.  */
57#define HAVE_MKTIME 1
58
59/* Define if you have the perror function.  */
60#define HAVE_PERROR 1
61
62/* Define if you have the popen function.  */
63#define HAVE_POPEN 1
64
65/* Define if you have the <setjmp.h> header file.  */
66#define HAVE_SETJMP_H 1
67
68/* Define if you have the signal function.  */
69#define HAVE_SIGNAL 1
70
71/* Define if you have the strdup function.  */
72#define HAVE_STRDUP 1
73
74/* Define if you have the strerror function.  */
75#define HAVE_STRERROR 1
76
77/* Define if you have the strtod function.  */
78#define HAVE_STRTOD 1
79
80/* Define if you have the strtol function.  */
81#define HAVE_STRTOL 1
82
83/* Define to 1 if you have the `hypot' function. */
84#define HAVE_HYPOT 1
85
86/* Define if you have the <limits.h> header file.  */
87#define HAVE_LIMITS_H 1
88
89/* Define if you have the <string.h> header file.  */
90#define HAVE_STRING_H 1
91
92/* Define if you have the m library (-lm).  */
93#undef HAVE_LIBM
94
95/* Use far in various declarations and definitions. */
96#undef HAVE_FAR_POINTERS
97
98/* Use img routines in a hosted way (i.e. they can use other survex code). */
99#define IMG_HOSTED 1
100
101/* Name of package */
102#define PACKAGE "@PACKAGE@"
103
104/* Version number of package */
105#define VERSION "@VERSION@"
106
107/* Name of package (capitalised) */
108#define PRETTYPACKAGE "@PRETTYPACKAGE@"
109
110/* Version number of package (comma-separated) */
111#define COMMAVERSION @COMMAVERSION@
112
Note: See TracBrowser for help on using the repository browser.