[Xapian-discuss] Xapian 0.9.3 released

Olly Betts olly at survex.com
Thu Feb 16 10:22:18 GMT 2006


On Thu, Feb 16, 2006 at 02:26:39AM -0700, gervin23 wrote:
> i'm getting a halt during ./configure within xapian-bindings with the 
> error that libxapian.la can't be found ('xapian-config --ltlibs 
> --cxxflags').

Oops, sorry about that.  I cleaned up a couple of "unused" variables,
but they're used by substituted values.  Annoyingly all the test builds
in the tinderbox passed fine, because this only manifests if you try
to link with an installed build.

I've attached a patch to fix this.  I'll probably roll 0.9.4 pretty
soon, but I'd like to see if any other issues surface quickly.

Cheers,
    Olly
-------------- next part --------------
--- trunk/xapian-core/xapian-config.in	2006/02/16 00:16:18	6585
+++ trunk/xapian-core/xapian-config.in	2006/02/16 10:16:25	6586
@@ -18,6 +18,11 @@
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
 # USA
 
+# ${prefix} and ${exec_prefix} are used in some @SUBSTITUTIONS@, and
+# ${prefix} is usually used in ${prefix}.
+prefix="/opt/xapian"
+exec_prefix="${prefix}"
+
 # Show usage information and exit with the specified exit status.
 show_usage() {
     cat <<EOF


More information about the Xapian-discuss mailing list