diff options
Diffstat (limited to 'Build/source/libs/teckit/config.h.in')
-rw-r--r-- | Build/source/libs/teckit/config.h.in | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/Build/source/libs/teckit/config.h.in b/Build/source/libs/teckit/config.h.in index 7f144d01006..5e23fcfbb79 100644 --- a/Build/source/libs/teckit/config.h.in +++ b/Build/source/libs/teckit/config.h.in @@ -1,15 +1,12 @@ /* config.h.in. Generated from configure.ac by autoheader. */ -/* Define to 1 if you have the <dlfcn.h> header file. */ -#undef HAVE_DLFCN_H +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H -/* Define to 1 if you have the `expat' library (-lexpat). */ -#undef HAVE_LIBEXPAT - -/* Define to 1 if you have the `z' library (-lz). */ +/* Define if you have zlib. */ #undef HAVE_LIBZ /* Define to 1 if you have the <memory.h> header file. */ @@ -63,6 +60,14 @@ /* Version number of package */ #undef VERSION -/* 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 |