/* config.h.in */ #ifndef __CONFIG_H__ #define __CONFIG_H__ 1 /* Define if you have the C99 integer types */ #cmakedefine HAVE_C99_INTTYPES /* Define to 1 if you have the header file. */ #cmakedefine01 HAVE_DLFCN_H /* Define to 1 if you have the `endhostent' function. */ #cmakedefine HAVE_ENDHOSTENT /* Define to 1 if you have the `ftime' function. */ #cmakedefine01 HAVE_FTIME /* Define to 1 if you have the `getaddrinfo' function. */ #cmakedefine HAVE_GETADDRINFO /* Define if you have the getnameinfo function */ #cmakedefine HAVE_GETNAMEINFO /* Define to 1 if you have the `gettimeofday' function. */ #cmakedefine HAVE_GETTIMEOFDAY /* Define to 1 if you have the `inet_aton' function. */ #cmakedefine HAVE_INET_ATON /* Define to 1 if you have the `inet_pton' function. */ #cmakedefine HAVE_INET_PTON /* Define to 1 if you have the header file. */ #cmakedefine HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_MEMORY_H /* Define if you have the nanosleep function */ #cmakedefine HAVE_NANOSLEEP /* Define if you have libogg installed */ #cmakedefine HAVE_OGG /* Define if you have libopenssl. */ #cmakedefine HAVE_OPENSSL /* Define if you have POSIX threads libraries and header files. */ #cmakedefine HAVE_PTHREAD /* Define to 1 if you have the `pthread_spin_lock' function. */ #cmakedefine HAVE_PTHREAD_SPIN_LOCK /* Define if you have the sethostent function */ #cmakedefine HAVE_SETHOSTENT /* Define to 1 if the system has the type `socklen_t'. */ #cmakedefine HAVE_SOCKLEN_T /* Define if you want speex streams supported */ #cmakedefine HAVE_SPEEX /* Define to 1 if you have the header file. */ #cmakedefine HAVE_STDINT_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_STRING_H /* Define to 1 if `ss_family' is a member of `struct sockaddr_storage'. */ #cmakedefine HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY /* Define to 1 if you have the header file. */ #cmakedefine HAVE_SYS_SELECT_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_SYS_SOCKET_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_SYS_TIMEB_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #cmakedefine HAVE_SYS_UIO_H /* Define if you want theora streams supported */ #cmakedefine HAVE_THEORA /* Define to 1 if you have the header file. */ #cmakedefine HAVE_UNISTD_H /* Define if you have winsock2.h on MINGW */ #cmakedefine HAVE_WINSOCK2_H /* Define to 1 if you have the `writev' function. */ #cmakedefine HAVE_WRITEV /* Shout library major version */ #cmakedefine LIBSHOUT_MAJOR @LIBSHOUT_MAJOR@ /* Shout library patch version */ #cmakedefine LIBSHOUT_MICRO @LIBSHOUT_MICRO@ /* Shout library minor version */ #cmakedefine LIBSHOUT_MINOR @LIBSHOUT_MINOR@ /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #cmakedefine LT_OBJDIR /* Define if you don't want to use the thread library */ #cmakedefine NO_THREAD (!@SHOUT_THREADSAFE@) /* Name of package */ #cmakedefine PACKAGE "@PACKAGE@" /* Define to the address where bug reports for this package should be sent. */ #cmakedefine PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@" /* Define to the full name of this package. */ #cmakedefine PACKAGE_NAME "@PACKAGE_NAME@" /* Define to the full name and version of this package. */ #cmakedefine PACKAGE_STRING "@PACKAGE_STRING@" /* Define to the one symbol short name of this package. */ #cmakedefine PACKAGE_TARNAME "@PACKAGE_TARNAME@" /* Define to the home page for this package. */ #cmakedefine PACKAGE_URL "@PACKAGE_URL@" /* Define to the version of this package. */ #cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@" /* Define to necessary symbol if this constant uses a non-standard name on your system. */ #undef PTHREAD_CREATE_JOINABLE /* The size of `int', as computed by sizeof. */ #cmakedefine SIZEOF_INT @SIZEOF_INT@ /* The size of `long', as computed by sizeof. */ #cmakedefine SIZEOF_LONG @SIZEOF_LONG@ /* The size of `long long', as computed by sizeof. */ #cmakedefine SIZEOF_LONG_LONG @SIZEOF_LONG_LONG@ /* The size of `short', as computed by sizeof. */ #cmakedefine SIZEOF_SHORT @SIZEOF_SHORT@ /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 /* Define to 1 if you can safely include both and . */ #undef TIME_WITH_SYS_TIME #ifndef HAVE_C99_INTTYPES # if SIZEOF_SHORT == 4 typedef unsigned short uint32_t; # elif SIZEOF_INT == 4 typedef unsigned int uint32_t; # elif SIZEOF_LONG == 4 typedef unsigned long uint32_t; # endif # if SIZEOF_INT == 8 typedef unsigned int uint64_t; # elif SIZEOF_LONG == 8 typedef unsigned long uint64_t; # elif SIZEOF_LONG_LONG == 8 typedef unsigned long long uint64_t; # endif #endif #define VERSION PACKAGE_VERSION #ifndef HAVE_SOCKLEN_T typedef int socklen_t; #endif /* name mangling to protect code we share with other libraries */ #define _mangle(proc) _shout_ ## proc /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif /* define if va_copy is not available */ #undef va_copy #ifdef _MSC_VER #define strncasecmp _strnicmp #define strcasecmp _stricmp #endif #endif