diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/config.h.in b/config.h.in index e45ed5d..83d8902 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 @@ -96,6 +99,10 @@ /* Define a safe value for MAXPATHLEN */ #undef KDEMAXPATHLEN +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + /* Name of package */ #undef PACKAGE @@ -111,6 +118,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 @@ -141,9 +151,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 /* * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system @@ -233,6 +251,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 |