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

debug-ci-sanitisersfaster-cavernlogwalls-datawalls-data-hanging-as-warning
Last change on this file since f2dc643e was a901cea, checked in by Olly Betts <olly@…>, 2 months ago

Eliminate all uses of strcasecmp()

There weren't many uses and most can be done more efficiently.

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