Displaying 6 results from an estimated 6 matches for "xapian_version".
2007 Jun 13
1
Resource version in php_xapian.dll (windows)
...S_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "ProductName", "Xapian"
VALUE "ProductVersion", XAPIAN_VERSION
VALUE "FileDescription", "Xapian " XAPIAN_VERSION "
bindings for PHP " PHP_VERSION
VALUE "LegalCopyright", "Copyright (C) 2007 Xapian"
VALUE "FileVersion", XAPIAN_VERSION
VALUE "URL...
2015 Nov 14
1
Xapian-Haystack is available in Python 3
...ss.
1. Dev version of Xapian has different names for their tools, namely
xapian-config and delve. xapian-config became xapian-config-1.3, delve
became xapian-delve-1.3.
Suggestion: make names independent of oddity of the minor version. I don't
find a compelling reason to force users to code:
XAPIAN_VERSION = [int(x) for x in xapian.__version__.split('.')]
if XAPIAN_VERSION[1] <= 2:
# old versions use "delve".
executable = 'delve'
else:
# new versions use 'xapian-delve'
executable = 'xapian-delve'
# dev versions (odd minor) use a suffix
if...
2015 Oct 28
2
Trying to get Search::Xapian perl module to compile on win32
...ly using dumpbin /exports to create a definition file and then feeding the definition file to lib /def to create the .lib and .exp files.
The call to generate the Makefile on win32 is now something like:
perl Makefile.PL CXX=cl.exe INC=-IC:\Install\include " LIBS=-lxapian-22 -lzlib" XAPIAN_VERSION=1.2.21 "CXXFLAGS=-EHsc -TP"
Now when I run nmake, it gets past the compile portion and dies when linking with errors like:
Xapian.obj : error LNK2001: unresolved external symbol "public: __thiscall Xapian::WritableDatabase:
:WritableDatabase(class Xapian::WritableDatabase const &a...
2007 May 07
2
Xapian::xapian_version_string(), etc
...re 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 suggest otherwise in the documentation. Am I missing something?...
2010 Dec 16
2
Failing to build PHP Bindings OSX 10.6
Very odd this, I have downloaded the latest xapian-core and bindings.
Installed xapian-core no problem in /usr/local/xapian
However I am getting very strange errors when running make when trying
to install the PHP bindings, it configures fine.
Paste bin here:
http://pastebin.com/JWViJz4b
I am missing something obvious I know...
I have built 1.0 on this machine in the past fine...
John
2015 Oct 29
4
Trying to get Search::Xapian perl module to compile on win32
...n /exports to create a definition file and then feeding the definition file to lib /def to create the .lib and .exp files.
>
> The call to generate the Makefile on win32 is now something like:
> perl Makefile.PL CXX=cl.exe INC=-IC:\Install\include " LIBS=-lxapian-22 -lzlib" XAPIAN_VERSION=1.2.21 "CXXFLAGS=-EHsc -TP"
Presumably you're cross-compiling with GCC?
> Now when I run nmake, it gets past the compile portion and dies when linking with errors like:
> Xapian.obj : error LNK2001: unresolved external symbol "public: __thiscall Xapian::WritableDatabase:...