source: git/src/msvc/config.h.in @ 14000ea

debug-ci-sanitisersfaster-cavernloglog-selectwalls-datawalls-data-hanging-as-warning
Last change on this file since 14000ea was 4d9aa09, checked in by Olly Betts <olly@…>, 3 months ago

Remove unused configure AC_FUNC_VPRINTF probe

We no longer use the result of this, and the autoconf manual documents
this macro as "obsolescent, as all current systems have ‘vprintf’."

  • Property mode set to 100644
File size: 2.4 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/* strcasecmp define for systems which call it something else */
42#define strcasecmp stricmp
43
44/* Define if you have the mktime function.  */
45#define HAVE_MKTIME 1
46
47/* Define if you have the perror function.  */
48#define HAVE_PERROR 1
49
50/* Define if you have the popen function.  */
51#define HAVE_POPEN 1
52
53/* Define if you have the <setjmp.h> header file.  */
54#define HAVE_SETJMP_H 1
55
56/* Define if you have the strdup function.  */
57#define HAVE_STRDUP 1
58
59/* Define if you have the strerror function.  */
60#define HAVE_STRERROR 1
61
62/* Define if you have the strtod function.  */
63#define HAVE_STRTOD 1
64
65/* Define if you have the strtol function.  */
66#define HAVE_STRTOL 1
67
68/* Define to 1 if you have the `hypot' function. */
69#define HAVE_HYPOT 1
70
71/* Define if you have the <limits.h> header file.  */
72#define HAVE_LIMITS_H 1
73
74/* Define if you have the <string.h> header file.  */
75#define HAVE_STRING_H 1
76
77/* Define if you have the m library (-lm).  */
78#undef HAVE_LIBM
79
80/* Use far in various declarations and definitions. */
81#undef HAVE_FAR_POINTERS
82
83/* Use img routines in a hosted way (i.e. they can use other survex code). */
84#define IMG_HOSTED 1
85
86/* Name of package */
87#define PACKAGE "@PACKAGE@"
88
89/* Version number of package */
90#define VERSION "@VERSION@"
91
92/* Name of package (capitalised) */
93#define PRETTYPACKAGE "@PRETTYPACKAGE@"
94
95/* Version number of package (comma-separated) */
96#define COMMAVERSION @COMMAVERSION@
97
Note: See TracBrowser for help on using the repository browser.