Displaying 2 results from an estimated 2 matches for "xapian_revision".
2007 Jun 13
1
Resource version in php_xapian.dll (windows)
...t;" \
version.rc
- and here is the resource file I use (new file "version.rc" in win32):
#include "winres.h"
#include "xapian\version.h"
#include "php_version.h"
VS_VERSION_INFO VERSIONINFO
FILEVERSION XAPIAN_MAJOR_VERSION,XAPIAN_MINOR_VERSION,XAPIAN_REVISION
PRODUCTVERSION XAPIAN_MAJOR_VERSION,XAPIAN_MINOR_VERSION,XAPIAN_REVISION
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"...
2007 May 07
2
Xapian::xapian_version_string(), etc
...eck the library version actually in use.
These functions were added in 0.9.3, and deprecated in favour of names
with "xapian_" removed in 0.9.6, so this code will work for any Xapian
version from 0.9.3 onwards:
#if XAPIAN_MAJOR_VERSION == 0 && XAPIAN_MINOR_VERSION == 9 && XAPIAN_REVISION < 6
string version_string = Xapian::xapian_version_string();
#else
string version_string = Xapian::version_string();
#endif
So I don't think there's a reason to keep these around longer than we
would otherwise. I think removing these in 1.1.0 would be fine, and we
should sugges...