9,6 → 9,12 |
/* ColorManagement */ |
#undef HAVE_CMS |
|
/* Define if you have the CoreAudio API */ |
#undef HAVE_COREAUDIO |
|
/* Define to 1 if you have the <crt_externs.h> header file. */ |
#undef HAVE_CRT_EXTERNS_H |
|
/* Defines if your system has the crypt function */ |
#undef HAVE_CRYPT |
|
15,6 → 21,9 |
/* Cups */ |
#undef HAVE_CUPS |
|
/* Define to 1 if you have the <dlfcn.h> header file. */ |
#undef HAVE_DLFCN_H |
|
/* Defines if your system has the libfreetype library */ |
#undef HAVE_FREETYPE |
|
39,9 → 48,8 |
/* Define to 1 if you have the <memory.h> header file. */ |
#undef HAVE_MEMORY_H |
|
/* Define to 1 if you have the <pthread/linuxthreads/pthread.h> header file. |
*/ |
#undef HAVE_PTHREAD_LINUXTHREADS_PTHREAD_H |
/* Define if your system needs _NSGetEnviron to set up the environment */ |
#undef HAVE_NSGETENVIRON |
|
/* Define if you have the development files for python */ |
#undef HAVE_PYTHON |
52,6 → 60,9 |
/* Define if you have the res_init function */ |
#undef HAVE_RES_INIT |
|
/* Define to 1 if you have the `snprintf' function. */ |
#undef HAVE_SNPRINTF |
|
/* Define to 1 if you have the <stdint.h> header file. */ |
#undef HAVE_STDINT_H |
|
64,6 → 75,21 |
/* Define to 1 if you have the <string.h> header file. */ |
#undef HAVE_STRING_H |
|
/* Define if you have strlcat */ |
#undef HAVE_STRLCAT |
|
/* Define if you have the strlcat prototype */ |
#undef HAVE_STRLCAT_PROTO |
|
/* Define if you have strlcpy */ |
#undef HAVE_STRLCPY |
|
/* Define if you have the strlcpy prototype */ |
#undef HAVE_STRLCPY_PROTO |
|
/* Define to 1 if you have the <sys/bitypes.h> header file. */ |
#undef HAVE_SYS_BITYPES_H |
|
/* Define to 1 if you have the <sys/stat.h> header file. */ |
#undef HAVE_SYS_STAT_H |
|
70,9 → 96,6 |
/* Define to 1 if you have the <sys/types.h> header file. */ |
#undef HAVE_SYS_TYPES_H |
|
/* C++ compiler supports template repository */ |
#undef HAVE_TEMPLATE_REPOSITORY |
|
/* Tifflib */ |
#undef HAVE_TIFF |
|
79,8 → 102,8 |
/* Define to 1 if you have the <unistd.h> header file. */ |
#undef HAVE_UNISTD_H |
|
/* Define if you want Xinerama support */ |
#undef HAVE_XINERAMA |
/* Define to 1 if you have the `vsnprintf' function. */ |
#undef HAVE_VSNPRINTF |
|
/* Defines if your system has the libxml2 library */ |
#undef HAVE_XML |
88,6 → 111,9 |
/* Defines if your system has the libxml2 library6 */ |
#undef HAVE_XML26 |
|
/* Suffix for lib directories */ |
#undef KDELIBSUFF |
|
/* Name of package */ |
#undef PACKAGE |
|
109,9 → 135,6 |
/* Dataprefix */ |
#undef PREL |
|
/* The size of a `char', as computed by sizeof. */ |
#undef SIZEOF_CHAR |
|
/* The size of a `char *', as computed by sizeof. */ |
#undef SIZEOF_CHAR_P |
|
121,6 → 144,15 |
/* The size of a `long', as computed by sizeof. */ |
#undef SIZEOF_LONG |
|
/* The size of a `short', as computed by sizeof. */ |
#undef SIZEOF_SHORT |
|
/* The size of a `size_t', as computed by sizeof. */ |
#undef SIZEOF_SIZE_T |
|
/* The size of a `unsigned long', as computed by sizeof. */ |
#undef SIZEOF_UNSIGNED_LONG |
|
/* Define to 1 if you have the ANSI C header files. */ |
#undef STDC_HEADERS |
|
131,6 → 163,88 |
first (like Motorola and SPARC, unlike Intel and VAX). */ |
#undef WORDS_BIGENDIAN |
|
/* |
* jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system |
* headers and I'm too lazy to write a configure test as long as only |
* unixware is related |
*/ |
#ifdef _UNIXWARE |
#define HAVE_BOOLEAN |
#endif |
|
|
|
/* |
* AIX defines FD_SET in terms of bzero, but fails to include <strings.h> |
* that defines bzero. |
*/ |
|
#if defined(_AIX) |
#include <strings.h> |
#endif |
|
|
|
#if defined(HAVE_NSGETENVIRON) && defined(HAVE_CRT_EXTERNS_H) |
# include <sys/time.h> |
# include <crt_externs.h> |
# define environ (*_NSGetEnviron()) |
#endif |
|
|
|
#if !defined(HAVE_STRLCAT_PROTO) |
#ifdef __cplusplus |
extern "C" { |
#endif |
unsigned long strlcat(char*, const char*, unsigned long); |
#ifdef __cplusplus |
} |
#endif |
#endif |
|
|
|
#if !defined(HAVE_STRLCPY_PROTO) |
#ifdef __cplusplus |
extern "C" { |
#endif |
unsigned long strlcpy(char*, const char*, unsigned long); |
#ifdef __cplusplus |
} |
#endif |
#endif |
|
|
|
/* |
* On HP-UX, the declaration of vsnprintf() is needed every time ! |
*/ |
|
#if !defined(HAVE_VSNPRINTF) || defined(hpux) |
#if __STDC__ |
#include <stdarg.h> |
#include <stdlib.h> |
#else |
#include <varargs.h> |
#endif |
#ifdef __cplusplus |
extern "C" |
#endif |
int vsnprintf(char *str, size_t n, char const *fmt, va_list ap); |
#ifdef __cplusplus |
extern "C" |
#endif |
int snprintf(char *str, size_t n, char const *fmt, ...); |
#endif |
|
|
|
#if defined(__SVR4) && !defined(__svr4__) |
#define __svr4__ 1 |
#endif |
|
|
/* Compatibility define */ |
#undef ksize_t |
|