~ubuntu-branches/debian/sid/kxstitch/sid

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): eric pareja
  • Date: 2005-02-19 12:37:22 UTC
  • Revision ID: james.westby@ubuntu.com-20050219123722-kt3ru1nqvllietee
Tags: upstream-0.6
ImportĀ upstreamĀ versionĀ 0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* config.h.in.  Generated from configure.in by autoheader.  */
 
2
 
 
3
/* Define if you have the CoreAudio API */
 
4
#undef HAVE_COREAUDIO
 
5
 
 
6
/* Define to 1 if you have the <crt_externs.h> header file. */
 
7
#undef HAVE_CRT_EXTERNS_H
 
8
 
 
9
/* Defines if your system has the crypt function */
 
10
#undef HAVE_CRYPT
 
11
 
 
12
/* Define to 1 if you have the <dlfcn.h> header file. */
 
13
#undef HAVE_DLFCN_H
 
14
 
 
15
/* Define to 1 if you have the <inttypes.h> header file. */
 
16
#undef HAVE_INTTYPES_H
 
17
 
 
18
/* Define if you have libjpeg */
 
19
#undef HAVE_LIBJPEG
 
20
 
 
21
/* Define if you have libpng */
 
22
#undef HAVE_LIBPNG
 
23
 
 
24
/* Define if you have a working libpthread (will enable threaded code) */
 
25
#undef HAVE_LIBPTHREAD
 
26
 
 
27
/* Define if you have libz */
 
28
#undef HAVE_LIBZ
 
29
 
 
30
/* Define to 1 if you have the <memory.h> header file. */
 
31
#undef HAVE_MEMORY_H
 
32
 
 
33
/* Define if your system needs _NSGetEnviron to set up the environment */
 
34
#undef HAVE_NSGETENVIRON
 
35
 
 
36
/* Define to 1 if you have the <pthread/linuxthreads/pthread.h> header file.
 
37
   */
 
38
#undef HAVE_PTHREAD_LINUXTHREADS_PTHREAD_H
 
39
 
 
40
/* Define if you have res_init */
 
41
#undef HAVE_RES_INIT
 
42
 
 
43
/* Define if you have the res_init prototype */
 
44
#undef HAVE_RES_INIT_PROTO
 
45
 
 
46
/* Define to 1 if you have the `snprintf' function. */
 
47
#undef HAVE_SNPRINTF
 
48
 
 
49
/* Define to 1 if you have the <stdint.h> header file. */
 
50
#undef HAVE_STDINT_H
 
51
 
 
52
/* Define to 1 if you have the <stdlib.h> header file. */
 
53
#undef HAVE_STDLIB_H
 
54
 
 
55
/* Define to 1 if you have the <strings.h> header file. */
 
56
#undef HAVE_STRINGS_H
 
57
 
 
58
/* Define to 1 if you have the <string.h> header file. */
 
59
#undef HAVE_STRING_H
 
60
 
 
61
/* Define to 1 if you have the <sys/stat.h> header file. */
 
62
#undef HAVE_SYS_STAT_H
 
63
 
 
64
/* Define to 1 if you have the <sys/types.h> header file. */
 
65
#undef HAVE_SYS_TYPES_H
 
66
 
 
67
/* C++ compiler supports template repository */
 
68
#undef HAVE_TEMPLATE_REPOSITORY
 
69
 
 
70
/* Define to 1 if you have the <unistd.h> header file. */
 
71
#undef HAVE_UNISTD_H
 
72
 
 
73
/* Define to 1 if you have the `vsnprintf' function. */
 
74
#undef HAVE_VSNPRINTF
 
75
 
 
76
/* Define if you want Xinerama support */
 
77
#undef HAVE_XINERAMA
 
78
 
 
79
/* Suffix for lib directories */
 
80
#undef KDELIBSUFF
 
81
 
 
82
/* Name of package */
 
83
#undef PACKAGE
 
84
 
 
85
/* Define to the address where bug reports for this package should be sent. */
 
86
#undef PACKAGE_BUGREPORT
 
87
 
 
88
/* Define to the full name of this package. */
 
89
#undef PACKAGE_NAME
 
90
 
 
91
/* Define to the full name and version of this package. */
 
92
#undef PACKAGE_STRING
 
93
 
 
94
/* Define to the one symbol short name of this package. */
 
95
#undef PACKAGE_TARNAME
 
96
 
 
97
/* Define to the version of this package. */
 
98
#undef PACKAGE_VERSION
 
99
 
 
100
/* The size of a `char', as computed by sizeof. */
 
101
#undef SIZEOF_CHAR
 
102
 
 
103
/* The size of a `char *', as computed by sizeof. */
 
104
#undef SIZEOF_CHAR_P
 
105
 
 
106
/* The size of a `int', as computed by sizeof. */
 
107
#undef SIZEOF_INT
 
108
 
 
109
/* The size of a `long', as computed by sizeof. */
 
110
#undef SIZEOF_LONG
 
111
 
 
112
/* Define to 1 if you have the ANSI C header files. */
 
113
#undef STDC_HEADERS
 
114
 
 
115
/* Version number of package */
 
116
#undef VERSION
 
117
 
 
118
/*
 
119
 * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
 
120
 * headers and I'm too lazy to write a configure test as long as only
 
121
 * unixware is related
 
122
 */
 
123
#ifdef _UNIXWARE
 
124
#define HAVE_BOOLEAN
 
125
#endif
 
126
 
 
127
 
 
128
 
 
129
/*
 
130
 * AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
 
131
 * that defines bzero.
 
132
 */
 
133
 
 
134
#if defined(_AIX)
 
135
#include <strings.h>
 
136
#endif
 
137
 
 
138
 
 
139
 
 
140
#if !defined(HAVE_RES_INIT_PROTO)
 
141
#ifdef __cplusplus
 
142
extern "C"
 
143
#endif
 
144
int res_init (void);
 
145
#endif
 
146
 
 
147
 
 
148
 
 
149
/*
 
150
 * On HP-UX, the declaration of vsnprintf() is needed every time !
 
151
 */
 
152
 
 
153
#if !defined(HAVE_VSNPRINTF) || defined(hpux)
 
154
#if __STDC__
 
155
#include <stdarg.h>
 
156
#include <stdlib.h>
 
157
#else
 
158
#include <varargs.h>
 
159
#endif
 
160
#ifdef __cplusplus
 
161
extern "C"
 
162
#endif
 
163
int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
 
164
#ifdef __cplusplus
 
165
extern "C"
 
166
#endif
 
167
int snprintf(char *str, size_t n, char const *fmt, ...);
 
168
#endif
 
169
 
 
170
 
 
171
 
 
172
#if defined(__SVR4) && !defined(__svr4__)
 
173
#define __svr4__ 1
 
174
#endif
 
175
 
 
176
 
 
177
/* Compatibility define */
 
178
#undef ksize_t
 
179
 
 
180
/* Define the real type of socklen_t */
 
181
#undef socklen_t