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 !defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION != 1002
00025 #error The C++ ABI version of compiler you are using does not match
00026 #error that of the compiler used to build the library. The versions
00027 #error must match or your program will not work correctly.
00028 #error The Xapian library was built with g++ 4.3.2
00029 #endif
00030
00031 #ifdef _GLIBCXX_DEBUG
00032 #error You are compiling with _GLIBCXX_DEBUG defined, but the library
00033 #error was not compiled with this flag. The settings must match or your
00034 #error program will not work correctly.
00035 #endif
00036 #endif
00037
00039 #define XAPIAN_VERSION "1.0.20"
00040
00044 #define XAPIAN_MAJOR_VERSION 1
00045
00049 #define XAPIAN_MINOR_VERSION 0
00050
00054 #define XAPIAN_REVISION 20
00055
00057 #define XAPIAN_HAS_FLINT_BACKEND 1
00058
00060 #define XAPIAN_HAS_QUARTZ_BACKEND 1
00061
00063 #define XAPIAN_HAS_INMEMORY_BACKEND 1
00064
00066 #define XAPIAN_HAS_REMOTE_BACKEND 1
00067
00068 #endif