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

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

Added src/msvc to 1.0.

git-svn-id: file:///home/survex-svn/survex/trunk@2495 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

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