00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef XAPIAN_INCLUDED_VERSION_H
00022 #define XAPIAN_INCLUDED_VERSION_H
00023
00024 #ifdef __GNUC__
00025 #if !defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION != 1002
00026 #error The C++ ABI version of compiler you are using does not match
00027 #error that of the compiler used to build the library. The versions
00028 #error must match or your program will not work correctly.
00029 #error The Xapian library was built with g++ 4.1.2
00030 #endif
00031
00032 #ifdef _GLIBCXX_DEBUG
00033 #error You are compiling with _GLIBCXX_DEBUG defined, but the library
00034 #error was not compiled with this flag. The settings must match or your
00035 #error program will not work correctly.
00036 #endif
00037 #endif
00038
00039 #define XAPIAN_VERSION "1.0.10"
00040 #define XAPIAN_MAJOR_VERSION 1
00041 #define XAPIAN_MINOR_VERSION 0
00042 #define XAPIAN_REVISION 10
00043
00044 #define XAPIAN_HAS_FLINT_BACKEND 1
00045 #define XAPIAN_HAS_QUARTZ_BACKEND 1
00046 #define XAPIAN_HAS_INMEMORY_BACKEND 1
00047 #define XAPIAN_HAS_REMOTE_BACKEND 1
00048
00049 #endif