|
Revision 1508, 2.7 kB
(checked in by larsbj, 8 years ago)
|
update from HEAD
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
#ifndef _CONFIG_H |
|---|
| 16 |
#define _CONFIG_H |
|---|
| 17 |
|
|---|
| 18 |
@TOP@ |
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
#undef ENABLE_NLS |
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
#undef FORMS_H_LOCATION |
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
#undef HAVE_LC_MESSAGES |
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
#undef HAVE_CATGETS |
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
#undef HAVE_GETTEXT |
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
#undef HAVE_STPCPY |
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
#undef XPM_H_LOCATION |
|---|
| 42 |
|
|---|
| 43 |
#undef HAVE_LIBSM |
|---|
| 44 |
|
|---|
| 45 |
#undef USE_PSPELL |
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
#undef HAVE_DECL_MKSTEMP |
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
#undef HAVE_DECL_SNPRINTF |
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
#undef HAVE_DECL_VSNPRINTF |
|---|
| 55 |
|
|---|
| 56 |
@BOTTOM@ |
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
#ifndef HAVE_STRCHR |
|---|
| 62 |
#define strchr(a,b) index(a,b) |
|---|
| 63 |
#endif |
|---|
| 64 |
|
|---|
| 65 |
#ifndef HAVE_MEMMOVE |
|---|
| 66 |
#define memmove(a, b, c) bcopy(b, a, c) |
|---|
| 67 |
#endif |
|---|
| 68 |
|
|---|
| 69 |
#ifndef HAVE_STRERROR |
|---|
| 70 |
#if defined (__cplusplus) |
|---|
| 71 |
extern "C" |
|---|
| 72 |
#endif |
|---|
| 73 |
char * strerror(int n); |
|---|
| 74 |
#endif |
|---|
| 75 |
|
|---|
| 76 |
#ifdef BROKEN_HEADERS |
|---|
| 77 |
#include "broken_headers.h" |
|---|
| 78 |
#endif |
|---|
| 79 |
|
|---|
| 80 |
#ifdef HAVE_MKSTEMP |
|---|
| 81 |
#ifndef HAVE_DECL_MKSTEMP |
|---|
| 82 |
#if defined (__cplusplus) |
|---|
| 83 |
extern "C" |
|---|
| 84 |
#endif |
|---|
| 85 |
int mkstemp(char*); |
|---|
| 86 |
#endif |
|---|
| 87 |
#endif |
|---|
| 88 |
|
|---|
| 89 |
|
|---|
| 90 |
#if defined inline && defined __cplusplus |
|---|
| 91 |
#undef inline |
|---|
| 92 |
#endif |
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
#if defined const && defined __cplusplus |
|---|
| 96 |
#undef const |
|---|
| 97 |
#endif |
|---|
| 98 |
|
|---|
| 99 |
|
|---|
| 100 |
#if defined(__sgi) || defined(__GNUC__) |
|---|
| 101 |
# ifdef __EXCEPTIONS |
|---|
| 102 |
# define USING_EXCEPTIONS |
|---|
| 103 |
# endif |
|---|
| 104 |
#endif |
|---|
| 105 |
|
|---|
| 106 |
#if defined(__USLC__) || defined(__SUNPRO_CC) || defined(__COMO__) || defined(__ICL) |
|---|
| 107 |
# define USING_EXCEPTIONS |
|---|
| 108 |
#endif |
|---|
| 109 |
|
|---|
| 110 |
#ifdef __EMX__ |
|---|
| 111 |
#include "os2_defines.h" |
|---|
| 112 |
#endif |
|---|
| 113 |
|
|---|
| 114 |
#ifdef VMS |
|---|
| 115 |
#include "vms_defines.h" |
|---|
| 116 |
#endif |
|---|
| 117 |
|
|---|
| 118 |
#if defined(__CYGWIN__) || defined( __CYGWIN32__) |
|---|
| 119 |
#include "nt_defines.h" |
|---|
| 120 |
#endif |
|---|
| 121 |
|
|---|
| 122 |
#endif |
|---|
| 123 |
|
|---|