diff options
author | Timothy Pearson <[email protected]> | 2013-03-31 15:20:44 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-03-31 15:20:44 -0500 |
commit | 5f815c54aef5b57f62f50b0171c27138634b618c (patch) | |
tree | 2028d79472e4bd935da4c54aac28c3e6b8464178 /config.h.in | |
parent | d48018596fbf2f1f762780efbe88e9745cc9743e (diff) | |
download | k9copy-5f815c54aef5b57f62f50b0171c27138634b618c.tar.gz k9copy-5f815c54aef5b57f62f50b0171c27138634b618c.zip |
Fix FTBFS when built without HAL integration
Clean up spurious build files
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 48 |
1 files changed, 43 insertions, 5 deletions
diff --git a/config.h.in b/config.h.in index 03d3c27..959d138 100644 --- a/config.h.in +++ b/config.h.in @@ -15,6 +15,9 @@ /* HAL API version 0.4 */ #undef HAL_0_4 +/* Define to 1 if you have the <Carbon/Carbon.h> header file. */ +#undef HAVE_CARBON_CARBON_H + /* Define if you have the CoreAudio API */ #undef HAVE_COREAUDIO @@ -54,9 +57,12 @@ /* openGL support */ #undef HAVE_OPENGL -/* Define if you have the res_init function */ +/* Define if you have res_init */ #undef HAVE_RES_INIT +/* Define if you have the res_init prototype */ +#undef HAVE_RES_INIT_PROTO + /* Define if you have a STL implementation by SGI */ #undef HAVE_SGI_STL @@ -87,6 +93,9 @@ /* 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 @@ -105,6 +114,13 @@ /* Define a safe value for MAXPATHLEN */ #undef KDEMAXPATHLEN +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + +/* no */ +#undef NEEDS_AV_FREE_PACKET + /* new ffmpeg */ #undef NEW_FFMPEG @@ -129,6 +145,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 @@ -156,6 +175,9 @@ /* Version number of package */ #undef VERSION +/* Defined if compiling without arts */ +#undef WITHOUT_ARTS + /* 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 @@ -198,6 +220,18 @@ +#if !defined(HAVE_RES_INIT_PROTO) +#ifdef __cplusplus +extern "C" { +#endif +int res_init(void); +#ifdef __cplusplus +} +#endif +#endif + + + #if !defined(HAVE_STRLCAT_PROTO) #ifdef __cplusplus extern "C" { @@ -244,14 +278,18 @@ 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 #endif -/* Compatibility define */ -#undef ksize_t +/* type to use in place of socklen_t if not defined */ +#undef kde_socklen_t -/* Define the real type of socklen_t */ -#undef socklen_t +/* type to use in place of socklen_t if not defined (deprecated, use + kde_socklen_t) */ +#undef ksize_t |