From abe6a17bbc65524d8e917d18762c0fcf5f5e28b2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Krist=C3=B3f=20Katus?= Date: Thu, 25 Aug 2011 15:45:41 +0200 Subject: [PATCH] Missing config.h.in.cmake file. --- config.h.in.cmake | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 67 insertions(+), 0 deletions(-) create mode 100644 config.h.in.cmake diff --git a/config.h.in.cmake b/config.h.in.cmake new file mode 100644 index 0000000..d2a8768 --- /dev/null +++ b/config.h.in.cmake @@ -0,0 +1,67 @@ +/* asyncio_config.hpp.in.cmake: configure input file for cmake */ + +/* define if the Boost library is available */ +#cmakedefine HAVE_BOOST + +/* define if the Boost::Serialization library is available */ +#cmakedefine HAVE_BOOST_SERIALIZATION + +/* define if the Boost::Unit_Test_Framework library is available */ +#cmakedefine HAVE_BOOST_UNIT_TEST_FRAMEWORK + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#cmakedefine01 HAVE_UNISTD_H + +/* Name of package */ +#define PACKAGE "${PROJECT_NAME}" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "${PROJECT_NAME}" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "${PROJECT_NAME} ${VERSION}" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "${PROJECT_NAME}" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "${VERSION}" + +/* Define to 1 if you have the ANSI C header files. */ +#cmakedefine01 STDC_HEADERS + +/* Version number of package */ +#define VERSION "${VERSION}" + +/* Version number of used protocol (integer, increase if incompatible) */ +#define PROTOCOL_VERSION ${PROTOCOL_VERSION} -- 1.7.1