search for: xapian_config

Displaying 20 results from an estimated 24 matches for "xapian_config".

2023 May 25
1
LIttle problem when installing xapian-bindings-1.4.22
...2. I continued to install xapian-omega-1.4.22. But it did not even pass the configuration step. > I intend to install xapian-omega-1.4.22 at > /usr/local/xapian-omega-1.4.22. I do my building from a separate > build directory lest I clutter my system. > > sudo ../configure XAPian_CONFIG=/usr/local/xapian-core-1.4.22 \ --prefix=/usr/local/xapian-omega-1.4.22 This doesn't match the output. If you're trying to show commands you're running, copy and paste them rather than trying to retype them. > Output: > checking /usr/local/xapian-core-1.4.22/bin/xapian-config...
2016 Aug 03
3
Problem with configuring Xapian
...iting your own code to probe for > xapian-config. > > Everything from line 3 to line 18 of your current configure.ac could be > replaced with just: > > XO_LIB_XAPIAN > > If you've installed xapian-core then the macro should just be > found automatically. I specified XAPIAN_CONFIG as James instructed by running, ./configure XAPIAN_CONFIG=path/to/xapian-config-1.3 I have installed all the dependencies specified in xapian-core HACKING file including libtool. But I still get the following error when XO_LIB_XAPIAN is added to configure.ac, configure.ac:3: error: defn: undefi...
2016 Jun 19
2
R bindings for Xapian - Project progress
...te: > > If you've installed xapian-core then the macro should just be > > found automatically. > > When I replace the code block with the macro, it doesn't get automatically > detected. Could you kindly tell me what could be causing this? You probably need to specify XAPIAN_CONFIG: $ ./configure XAPIAN_CONFIG=path/to/xapian-config-1.3 (This is because development versions of Xapian have the -1.x suffix, but the macro looks for just xapian-config by default -- which is what most people want, as they'll be using release versions of Xapian.) > > at some point >...
2016 Sep 09
3
problem with bindings configure script
All, I'm trying to compile xapian core and bindings under cygwin. I have no issues running the configure script and then compiling core, but bindings is giving me some issues. I'm running the configure script for bindings as follows: in xapian-bindings-1.4.0 directory. ./configure XAPIAN_CONFIG=/home/John/xapian-core-1.4.0 --with-java and had two issues. The first I solved by doing make distclean in the xapian-core-1.4.0 directory. The second issue produces the following output from the xapian-bindings configure script: checking for java... /opt/java/jdk1.8.0_92/bin/java checking for ja...
2016 Sep 14
1
problem with bindings configure script
Olly, I think the confdefs.h issue was due to the fact that I was using XAPIAN_CONFIG to point to the configure script, rather than the xapian_config executable created when making xapian_core, as pointed out by James. Also, as a general note, when trying to make the bindings, I had a problem when make was trying to compile the java source in org/xapian The following line: $(JAVA...
2012 Mar 22
1
Warning from ExtUtils::MakeMaker
Installation was OK and all works well, but this warning is bad :-/ tried 15 min to find the failure (there is no failure) ... $ perl Makefile.PL XAPIAN_CONFIG=/root/build/xapian-core/bin/xapian-config PREFIX=/root/build/Search-Xapian Checking if your kit is complete... Looks good 'XAPIAN_CONFIG' is not a known MakeMaker parameter name. Writing Makefile for Search::Xapian $ perl -MExtUtils::MakeMaker\ 9999 ExtUtils::MakeMaker version 9999 require...
2016 Jun 18
2
R bindings for Xapian - Project progress
On Mon, May 30, 2016 at 04:35:15PM +0100, James Aylett wrote: > 7. In configure.ac, you should default to xapian-config, not > xapian-config-1.3; anyone who's using a development version can point > XAPIAN_CONFIG to the relevant binary. It isn't a huge issue right now > (since you're not targetting Xapian 1.2), but 1.4 should be out during > the course of GSoC, and we'll want RXapian to support that without > people having to do anything special. It would be better to use the XO_LIB_XA...
2016 Sep 12
2
problem with bindings configure script
...cygwin. I have no > > issues running the configure script and then compiling core, but bindings > > is giving me some issues. I'm running the configure script for bindings > as > > follows: > > John ? a couple of things should help get you closer to this. > > 1. XAPIAN_CONFIG needs to point to the xapian-config binary you built (and > installed) from xapian-core-1.4.0 > > 2. you can point configure at the JNI include directory using > JNI_INCLUDE_DIR > > I'm not sure why you're getting those errors bout confdefs.h, though, so > there may be...
2023 May 23
1
LIttle problem when installing xapian-bindings-1.4.22
...gt; looks in $PATH to find the xapian-config script which xapian-core > installs). > > If you've built and installed xapian-core 1.4.22 from source, by default > it will install in prefix /usr/local in which case you can tell > xapian-bindings to use that: > > ./configure XAPIAN_CONFIG=/usr/local/bin/xapian-config > > If you specified --prefix when you ran configure for xapian-core, then > adjust the path here appropriately. > > > The thing is I wanted to install GTK 4.0 and others and this is one of > > the chains of dependencies I am led into to instal...
2023 May 23
3
LIttle problem when installing xapian-bindings-1.4.22
...nding and trying to use (by default it looks in $PATH to find the xapian-config script which xapian-core installs). If you've built and installed xapian-core 1.4.22 from source, by default it will install in prefix /usr/local in which case you can tell xapian-bindings to use that: ./configure XAPIAN_CONFIG=/usr/local/bin/xapian-config If you specified --prefix when you ran configure for xapian-core, then adjust the path here appropriately. > The thing is I wanted to install GTK 4.0 and others and this is one of > the chains of dependencies I am led into to install GTK. > > What do yo...
2011 Oct 13
1
Database `default' couldn't be opened
...are as follows Xapian Installation - 1) Xapian-core-1.2.7 - tar xvzf xapian-core-1.2.7.tar.gz - cd xapian-core-1.2.7 - ./configure --prefix=/usr/local - make - make install 2) Xapian-binding-1.2.7 - tar xvzf xapian-binding-1.2.7.tar.gz - cd xapian-binding-1.2.7 - ./configure --prefix=/usr/local XAPIAN_CONFIG=/usr/local/bin/xapian-config - make - make install 3) Xapian-omege-1.2.7 - tar xvzf xapian-omega-1.2.7.tar.gz - cd xapian-omega-1.2.7 - ./configure XAPIAN_CONFIG=/usr/local/bin/xapian-config - make - make check - make install After completed the above steps cd omega-1.2.7 cp omega /usr/lib/cgi-b...
2016 Sep 09
0
problem with bindings configure script
...ompile xapian core and bindings under cygwin. I have no > issues running the configure script and then compiling core, but bindings > is giving me some issues. I'm running the configure script for bindings as > follows: John ? a couple of things should help get you closer to this. 1. XAPIAN_CONFIG needs to point to the xapian-config binary you built (and installed) from xapian-core-1.4.0 2. you can point configure at the JNI include directory using JNI_INCLUDE_DIR I'm not sure why you're getting those errors bout confdefs.h, though, so there may be more you have to do to make this...
2023 Jun 06
1
LIttle problem when installing xapian-bindings-1.4.22
On Thu, May 25, 2023 at 05:18:28PM +0000, nebulaaksum wrote: > Here is what I tried: > 1. > gebreselema at system76-pc:~/myinstalls/myxapian/xapian-omega-1.4.22/xapianomegabuild$ ./configure XAPIAN_CONFIG=/usr/local/xapian-core-1.4.22/bin/xapian-config \--prefix=/usr/local/xapian-omega-1.4.22 > bash: ./configure: No such file or directory Looks like you've created a subdirectory to build in, so you need the path to configure to reflect that, i.e.: ../configure ... > I am just follow...
2016 May 30
5
R bindings for Xapian - Project progress
Hi all, I developed the basic structure of xapian_index() function which enables the content of a data frame to be indexed with Xapian search engine library. I pushed it to a git repository at https://github.com/amandaJayanetti/RXapian. It'd be a great favour if Mr. Dirk Eddelbuettel as well as other interested developers could kindly review the function and give me some feedback on it.
2015 Oct 28
2
Trying to get Search::Xapian perl module to compile on win32
...ind out, on windows, perl does indeed define open to be win32_open and close to be win32_close. This is done in perl/lib/CORE/win3iop.h. So, to get past this problem, I had to modify Xapian.xs to do an #undef of open and close if WIN32 is defined. Also, I had to modify the Makefile.PL to not use xapian_config to get the values it needs. Attached is a work in progress patch for both files. (hope the attachments come through) I am now getting linking errors. I am working with the latest stable version of xapian-core, which I cross-compiled on Ubuntu for win32. I had to do a couple of manual steps to...
2005 Sep 12
2
Compiling xapian-bindings-0.9.2 on OpenBSD 3.7
...ngs-0.9.2 on OpenBSD 3.7 but have run into a problem. After hours of searching the net I haven't found a solution. For reference gcc -v gives the following output: Configured with: Thread model: single gcc version 3.3.5 (propolice) And I'm using Python 2.3.5. This works fine: ./configure XAPIAN_CONFIG=/usr/local/src/xapian-core-0.9.2/xapian-config But when I run make I get the following (some parts removed because it's quite a long list of similar errors): make all-recursive Making all in python make all-recursive Making all in docs Making all in examples if /bin/sh ../libtool --tag=CXX...
2015 Nov 14
1
Xapian-Haystack is available in Python 3
...#39;xapian-delve' # dev versions (odd minor) use a suffix if XAPIAN_VERSION[1] % 2 != 0: executable = executable+'-%d.%d' % tuple(XAPIAN_VERSION[0:2]) or, in languages where version comparison is more tricky, atm our (bad) solution is if [ $VERSION = "1.3.3" ]; then XAPIAN_CONFIG=$VIRTUAL_ENV/bin/xapian-config-1.3 else XAPIAN_CONFIG= fi 2. Almost all Xapian bindings output is in non-unicode that can be converted to unicode via `decode('utf-8')`, which is great. Yet, this is still not perfect because e.g. `xapian.sortable_unserialise(12.345)` is not decodable to...
2015 Oct 29
4
Trying to get Search::Xapian perl module to compile on win32
...n windows, perl does indeed define open to be win32_open and close to be win32_close. This is done in perl/lib/CORE/win3iop.h. So, to get past this problem, I had to modify Xapian.xs to do an #undef of open and close if WIN32 is defined. > > Also, I had to modify the Makefile.PL to not use xapian_config to get the values it needs. > > Attached is a work in progress patch for both files. (hope the attachments come through) I am now getting linking errors. I am working with the latest stable version of xapian-core, which I cross-compiled on Ubuntu for win32. I had to do a couple of manua...
2007 May 30
5
java bindings 1.0.0 - jni.h not found
Hi all, I am new to Xapian and want to use it with Java. In order to do that I tried to compile the Java bindings. I set XAPIAN_CONFIG and invoked "configure". However "./configure --with-java" exits with an error. Point of failure: checking for jni.h... no checking for jni.h in /usr/lib/jvm/java-1.5.0-sun/include... no checking for jni.h in /usr/lib/jvm/java-gcj/include... no checking for jni.h in /Sy...
2006 Mar 02
2
Different Collation (utf8_slovak_ci, utf8_danish_ci, latin1_german1_ci) etc.
One issue left for me to figure out is that in different languages there are different characters and Xapian takes only english characters. Thefore many word entered by users that contains their own language special characters will not return any result. MySQL offers different collations ... Now when I see how much data Xapian can search perhaps I could expand my index spider different European