EVOLUTION-MANAGER
Edit File: version.h
/** @file version.h * @brief Define preprocessor symbols for the library version */ // Copyright (C) 2002,2004,2005,2006,2007,2008,2009,2010,2015 Olly Betts // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #ifndef XAPIAN_INCLUDED_VERSION_H #define XAPIAN_INCLUDED_VERSION_H #ifdef __GNUC__ #if __GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ == 0) #error Xapian no longer supports GCC < 3.1 #else #if !defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION != 1002 #if defined __GXX_ABI_VERSION && __GXX_ABI_VERSION >= 1002 #warning The C++ ABI version of compiler you are using does not exactly match #warning that of the compiler used to build the library. If linking fails #warning due to missing symbols, this is probably the reason why. #warning The Xapian library was built with g++ 4.8.5 #else #error The C++ ABI version of compiler you are using does not match #error that of the compiler used to build the library. The versions #error must match or your program will not work correctly. #error The Xapian library was built with g++ 4.8.5 #endif #endif #ifdef _GLIBCXX_DEBUG #error You are compiling with _GLIBCXX_DEBUG defined, but the library #error was not compiled with this flag. The settings must match or your #error program will not work correctly. #endif #endif #endif /// The library was compiled with GCC's -fvisibility=hidden option. #define XAPIAN_ENABLE_VISIBILITY /// The version of Xapian as a C string literal. #define XAPIAN_VERSION "1.2.22" /** The major component of the Xapian version. * E.g. for Xapian 1.0.14 this would be: 1 */ #define XAPIAN_MAJOR_VERSION 1 /** The minor component of the Xapian version. * E.g. for Xapian 1.0.14 this would be: 0 */ #define XAPIAN_MINOR_VERSION 2 /** The revision component of the Xapian version. * E.g. for Xapian 1.0.14 this would be: 14 */ #define XAPIAN_REVISION 22 /// XAPIAN_HAS_BRASS_BACKEND Defined if the brass backend is enabled. #define XAPIAN_HAS_BRASS_BACKEND 1 /// XAPIAN_HAS_CHERT_BACKEND Defined if the chert backend is enabled. #define XAPIAN_HAS_CHERT_BACKEND 1 /// XAPIAN_HAS_FLINT_BACKEND Defined if the flint backend is enabled. #define XAPIAN_HAS_FLINT_BACKEND 1 /// XAPIAN_HAS_INMEMORY_BACKEND Defined if the inmemory backend is enabled. #define XAPIAN_HAS_INMEMORY_BACKEND 1 /// XAPIAN_HAS_REMOTE_BACKEND Defined if the remote backend is enabled. #define XAPIAN_HAS_REMOTE_BACKEND 1 #endif /* XAPIAN_INCLUDED_VERSION_H */