/usr/include/Wt/WConfig.h is in libwt-dev 3.1.10-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #ifndef WCONFIG_H
#define WCONFIG_H
// Version defines
#define WT_SERIES 0x3
#define WT_MAJOR 0x1
#define WT_MINOR 0x10
/*! \brief A constant that encodes the library version of %Wt
*
* You may use this constant to check for the version of %Wt at build-time.
*/
#define WT_VERSION (((WT_SERIES & 0xff) << 24) | ((WT_MAJOR & 0xff) << 16) | ((WT_MINOR & 0xff) << 8))
#define WT_VERSION_STR "3.1.10"
#define WT_CLASS "Wt3_1_10"
#define RUNDIR "/var/run/wt"
#define WT_CONFIG_XML "/etc/wt/wt_config.xml"
#define WTHTTP_CONFIGURATION "/etc/wt/wthttpd"
/* #undef WT_STATIC */
/* #undef WTDBO_STATIC */
/* #undef WTDBOPOSTGRES_STATIC */
/* #undef WTDBOSQLITE3_STATIC */
/* #undef WTHTTP_STATIC */
/* #undef WT_EXT_STATIC */
/* #undef WT_EXT_STATIC */
#define WT_HAS_WRASTERIMAGE
#define WT_HAS_WPDFIMAGE
/* #undef WT_NO_BOOST_INTRUSIVE */
/* #undef WT_NO_STD_LOCALE */
/* #undef WT_NO_STD_WSTRING */
#if 0
#ifndef WT_TARGET_JAVA
#define WT_DEBUG(statement) do { if (Wt::WApplication::instance()->debug()) statement; } while(0)
#else
#define WT_DEBUG(statement)
#endif
#else
#define WT_DEBUG(statement)
#endif
#endif
|