1
2#include "VERSION.h"
3
4#undef BUILD_NUM
5
6/* Define if you have the <X11/SM/SMlib.h> header file.  */
7#undef HAVE_X11_SM_SMLIB_H
8
9/* Name of package */
10#undef PACKAGE
11
12/* OS */
13#undef OS
14
15/* OS */
16#undef OS_CYGWIN
17#undef OS_MINGW
18#undef OS_MACOSX
19#undef OS_SOLARIS
20#undef OS_FREEBSD
21#undef OS_OPENBSD
22#undef OS_LINUX
23#undef OS_UNKNOWN
24
25#if defined(OS_SOLARIS) || defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_LINUX) || defined(OS_MACOSX)
26#define OS_UNIX 1
27#endif
28
29#if defined(_WIN32)
30#define OS_WIN32 1
31#endif
32
33/* distribution (for Linux) */
34#undef DISTRO
35
36/* prefix dir    */
37#undef PREFIX
38
39#define MANIFEST_MARKER "# files: "
40
41#undef RCS_DIR
42#undef RCS_FILE_NAME
43#undef RCSDIFF_FILE_NAME
44#undef RLOG_FILE_NAME
45#undef CI_FILE_NAME
46#undef CO_FILE_NAME
47
48#undef HAVE_LOCALE_H
49#undef HAVE_GETOPT_H
50#undef HAVE_SETLOCALE
51#undef HAVE_SETENV
52#undef HAVE_PUTENV
53#undef HAVE_SIGNAL
54#undef HAVE_SIGNAL_H
55
56#undef HAVE_PTY_H
57#undef HAVE_LIBUTIL_H
58#undef HAVE_UTIL_H
59#undef HAVE_UNISTD_H
60
61#ifdef HAVE_GETOPT_H
62#  define HAVE_DECL_GETOPT  HAVE_GETOPT_H
63#endif
64
65#undef HAVE_STRUCT_TM_TM_ZONE
66#undef TM_IN_SYS_TIME
67
68#undef HAVE_FORKPTY
69#undef HAVE_CFMAKERAW
70
71/*
72 *  This is needed for Solaris
73 */
74#undef __PRAGMA_REDEFINE_EXTNAME
75
76#undef HAVE_CATGETS
77#undef HAVE_GETTEXT
78#undef HAVE_LC_MESSAGES
79#undef HAVE_STPCPY
80#undef HAVE_LIBSM
81#undef HAVE_MEMPCPY
82#undef HAVE_STRCHR
83
84#undef HAVE_ANTLR_RUNTIME
85
86#undef HAVE_QTDBUS
87
88#undef HAVE_CPPUNIT
89
90/*
91 *  on some platforms (OpenBSD) the second parameter to dlopen is different
92 */
93#undef DLOPEN_MODE
94
95#if 0
96#ifdef __cplusplus
97using namespace std;
98/*
99  #ifndef __STD
100  #define __STD std
101  #endif
102*/
103#endif
104#endif
105
106#ifdef _WIN32
107
108#define SNPRINTF  _snprintf
109#define VSNPRINTF _vsnprintf
110
111#define WINVER 0x0502
112
113#define PACKAGE_LOCALE_DIR ""
114#define PACKAGE_DATA_DIR   ""
115#define PACKAGE_SOURCE_DIR ""
116
117/*
118 * Normally this macro defines directory where system-wide QT
119 * translations are installed. We do not use it on win32 since
120 * we can't assume user has QT installed on their machine.
121 */
122#define QTTRANSLATIONSDIR "."
123
124
125#else
126
127#undef PACKAGE_LOCALE_DIR
128#undef PACKAGE_DATA_DIR
129#undef PACKAGE_SOURCE_DIR
130
131#define SNPRINTF  snprintf
132#define VSNPRINTF vsnprintf
133
134#endif
135
136
137