Files
thehub/libs/config/flowee-config.h.in
T

121 lines
3.6 KiB
C
Raw Permalink Normal View History

2018-02-10 14:59:45 +01:00
#ifndef FLOWEE_CONFIG_H
#define FLOWEE_CONFIG_H
/* Version Build */
#define CLIENT_VERSION_BUILD @CLIENT_VERSION_BUILD@
/* Version is release */
2018-10-30 10:38:50 +01:00
#cmakedefine01 CLIENT_VERSION_IS_RELEASE
2018-02-10 14:59:45 +01:00
/* Major version */
#define CLIENT_VERSION_MAJOR @CLIENT_VERSION_MAJOR@
/* Minor version */
#define CLIENT_VERSION_MINOR @CLIENT_VERSION_MINOR@
/* Build revision */
#define CLIENT_VERSION_REVISION @CLIENT_VERSION_REVISION@
2018-10-30 10:38:50 +01:00
#define HUB_SERIES @HUB_SERIES@
2018-02-10 14:59:45 +01:00
/* Copyright year */
#define COPYRIGHT_YEAR @COPYRIGHT_YEAR@
//////////////////////////////////////////
/* Define to 1 to enable ZMQ functions */
#cmakedefine ENABLE_ZMQ 1
/* Define to 1 if you have the <byteswap.h> header file. */
#cmakedefine HAVE_BYTESWAP_H 1
/* Define to 1 if you have the declaration of `be16toh', and to 0 if you don't. */
#cmakedefine HAVE_DECL_BE16TOH 1
/* Define to 1 if you have the declaration of `be32toh', and to 0 if you don't. */
#cmakedefine HAVE_DECL_BE32TOH 1
/* Define to 1 if you have the declaration of `be64toh', and to 0 if you don't. */
#cmakedefine HAVE_DECL_BE64TOH 1
/* Define to 1 if you have the declaration of `bswap_16', and to 0 if you don't. */
#cmakedefine HAVE_DECL_BSWAP_16 1
/* Define to 1 if you have the declaration of `bswap_32', and to 0 if you don't. */
#cmakedefine HAVE_DECL_BSWAP_32 1
/* Define to 1 if you have the declaration of `bswap_64', and to 0 if you don't. */
#cmakedefine HAVE_DECL_BSWAP_64 1
/* Define to 1 if you have the declaration of `htobe16', and to 0 if you don't. */
#cmakedefine HAVE_DECL_HTOBE16 1
/* Define to 1 if you have the declaration of `htobe32', and to 0 if you don't. */
#cmakedefine HAVE_DECL_HTOBE32 1
/* Define to 1 if you have the declaration of `htobe64', and to 0 if you don't. */
#cmakedefine HAVE_DECL_HTOBE64 1
/* Define to 1 if you have the declaration of `htole16', and to 0 if you don't. */
#cmakedefine HAVE_DECL_HTOLE16 1
/* Define to 1 if you have the declaration of `htole32', and to 0 if you don't. */
#cmakedefine HAVE_DECL_HTOLE32 1
/* Define to 1 if you have the declaration of `htole64', and to 0 if you don't. */
#cmakedefine HAVE_DECL_HTOLE64 1
/* Define to 1 if you have the declaration of `le16toh', and to 0 if you don't. */
#cmakedefine HAVE_DECL_LE16TOH 1
/* Define to 1 if you have the declaration of `le32toh', and to 0 if you don't. */
#cmakedefine HAVE_DECL_LE32TOH 1
/* Define to 1 if you have the declaration of `le64toh', and to 0 if you don't. */
#cmakedefine HAVE_DECL_LE64TOH 1
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you don't. */
#define HAVE_DECL_STRNLEN @HAVE_DECL_STRNLEN@
/* Define to 1 if you have the <endian.h> header file. */
#cmakedefine HAVE_ENDIAN_H 1
/* Define this symbol if you have MSG_NOSIGNAL */
#define HAVE_MSG_NOSIGNAL 1
/* Define to 1 if you have the <sys/endian.h> header file. */
#cmakedefine HAVE_SYS_ENDIAN_H
/* Define to 1 if you have the <sys/prctl.h> header file. */
#cmakedefine HAVE_SYS_PRCTL_H 1
/* Define to 1 if you have the <sys/select.h> header file. */
#cmakedefine HAVE_SYS_SELECT_H 1
/* Define to 1 if strerror_r returns char *. */
#cmakedefine STRERROR_R_CHAR_P 1
/* UPnP support not compiled if undefined, otherwise value (0 or 1) determines default state */
2018-03-20 12:39:00 +01:00
#cmakedefine USE_UPNP 1
2018-02-10 14:59:45 +01:00
/* QtNetwork library is available */
2022-08-20 18:24:55 +02:00
#cmakedefine Qt6Network_FOUND 1
2018-02-10 14:59:45 +01:00
/* 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
#cmakedefine WORDS_BIGENDIAN @CMAKE_WORDS_BIGENDIAN@
# endif
#endif
2019-10-10 20:51:34 +02:00
#cmakedefine HAVE_DECL___BUILTIN_POPCOUNT 1
2018-02-10 14:59:45 +01:00
#endif