diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 44 |
1 files changed, 38 insertions, 6 deletions
diff --git a/config.h.in b/config.h.in index 626a3929..78d8bb0d 100644 --- a/config.h.in +++ b/config.h.in @@ -1,5 +1,8 @@ /* config.h.in. Generated from configure.in by autoheader. */ +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + /* Define to 1 if you have the <Carbon/Carbon.h> header file. */ #undef HAVE_CARBON_CARBON_H @@ -68,9 +71,6 @@ /* Defines if your system has the fontconfig and freetype libraries */ #undef HAVE_KARBONTEXT -/* Define to 1 if you have the <tdespell2/broker.h> header file. */ -#undef HAVE_KSPELL2_BROKER_H - /* Defines if your system has the libart library */ #undef HAVE_LIBART @@ -89,6 +89,9 @@ /* Define if you have libtiff */ #undef HAVE_LIBTIFF +/* Defines if your system has libpwd greater than or equal to v0.9.0 */ +#undef HAVE_LIBWPD_090 + /* Define if you have libz */ #undef HAVE_LIBZ @@ -150,6 +153,9 @@ /* Define to 1 if you have the `rewinddir' function. */ #undef HAVE_REWINDDIR +/* Defines if your system has Ruby 1.9.x */ +#undef HAVE_RUBY_1_9 + /* Define if you have a STL implementation by SGI */ #undef HAVE_SGI_STL @@ -200,6 +206,9 @@ /* Define to 1 if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H +/* Define to 1 if you have the <tdespell2/broker.h> header file. */ +#undef HAVE_TDESPELL2_BROKER_H + /* Define to 1 if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H @@ -227,6 +236,10 @@ /* The correct header */ #undef LCMS_HEADER +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + /* Name of package */ #undef PACKAGE @@ -242,6 +255,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -275,9 +291,17 @@ /* Defined if compiling without arts */ #undef WITHOUT_ARTS -/* Define to 1 if your processor stores words with the most significant byte - first (like Motorola and SPARC, unlike Intel and VAX). */ -#undef WORDS_BIGENDIAN +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +# undef WORDS_BIGENDIAN +# endif +#endif /* Defines the executable of xmllint */ #undef XMLLINT @@ -311,6 +335,11 @@ #endif +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS @@ -379,6 +408,9 @@ int snprintf(char *str, size_t n, char const *fmt, ...); #endif +/* define to 1 if -fvisibility is supported */ +#undef __KDE_HAVE_GCC_VISIBILITY + #if defined(__SVR4) && !defined(__svr4__) #define __svr4__ 1 |