00001
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef XAPIAN_INCLUDED_VERSION_H
00021 #define XAPIAN_INCLUDED_VERSION_H
00022
00023 #ifdef __GNUC__
00024 #if __GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ == 0)
00025 #error Xapian no longer supports GCC < 3.1
00026 #else
00027 #if !defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION != 1002
00028 #error The C++ ABI version of compiler you are using does not match
00029 #error that of the compiler used to build the library. The versions
00030 #error must match or your program will not work correctly.
00031 #error The Xapian library was built with g++ 4.3.2
00032 #endif
00033
00034 #ifdef _GLIBCXX_DEBUG
00035 #error You are compiling with _GLIBCXX_DEBUG defined, but the library
00036 #error was not compiled with this flag. The settings must match or your
00037 #error program will not work correctly.
00038 #endif
00039 #endif
00040 #endif
00041
00043 #define XAPIAN_ENABLE_VISIBILITY
00044
00046 #define XAPIAN_VERSION "1.2.13"
00047
00051 #define XAPIAN_MAJOR_VERSION 1
00052
00056 #define XAPIAN_MINOR_VERSION 2
00057
00061 #define XAPIAN_REVISION 13
00062
00064 #define XAPIAN_HAS_BRASS_BACKEND 1
00065
00067 #define XAPIAN_HAS_CHERT_BACKEND 1
00068
00070 #define XAPIAN_HAS_FLINT_BACKEND 1
00071
00073 #define XAPIAN_HAS_INMEMORY_BACKEND 1
00074
00076 #define XAPIAN_HAS_REMOTE_BACKEND 1
00077
00078 #endif