Changeset 11169

Show
Ignore:
Timestamp:
2008-09-03 15:26:07 (3 months ago)
Author:
olly
Message:

Backport change from trunk:
configure.ac: Put the bug report URL as the third parameter to
AC_INIT. Add proper m4 quoting in a few places (nowhere that
should actually change behaviour). Use "dnl" comments in preference
to "#" comments to help reduce the size of the configure script.

Location:
branches/1.0/xapian-bindings
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/xapian-bindings/ChangeLog

    r10911 r11169  
     1Wed Sep 03 14:26:00 GMT 2008  Olly Betts <olly@survex.com> 
     2 
     3        * Backport change from trunk: 
     4        * configure.ac: Put the bug report URL as the third parameter to 
     5          AC_INIT.  Add proper m4 quoting in a few places (nowhere that 
     6          should actually change behaviour).  Use "dnl" comments in preference 
     7          to "#" comments to help reduce the size of the configure script. 
     8 
    19Mon Jul 14 14:30:17 GMT 2008  Olly Betts <olly@survex.com> 
    210 
  • branches/1.0/xapian-bindings/configure.ac

    r10911 r11169  
    11dnl Process this file with autoconf to produce a configure script. 
    22 
    3 AC_INIT(xapian-bindings, 1.0.7)dnl FIXME: bugreport addr as third argument 
     3AC_INIT([xapian-bindings], [1.0.7], [http://xapian.org/bugs]) 
    44dnl See HACKING document for details of the reasons for required versions. 
    55AC_PREREQ([2.59]) 
     
    387387  AC_ARG_VAR(TCLSH, [Tcl interpreter]) 
    388388  if test -n "$TCLSH" ; then 
    389     # We need Tcl 8.1 or later for TCL_STUBS. 
    390     # Note: The bindings can easily be made to work with Tcl 8.0 (just 
    391     # don't pass -DUSE_TCL_STUBS when compiling) should you need that. 
     389    dnl We need Tcl 8.1 or later for TCL_STUBS. 
     390    dnl Note: The bindings can easily be made to work with Tcl 8.0 (just 
     391    dnl don't pass -DUSE_TCL_STUBS when compiling) should you need that. 
    392392    AC_MSG_CHECKING([$TCLSH version]) 
    393393    if echo 'if {$tcl_version < 8.1 } { exit 1 }'|$TCLSH 2> /dev/null ; then 
     
    475475      dnl csc is the Microsoft CSharp compiler. 
    476476      AC_PATH_PROGS(CSC, [csc], []) 
    477       # Chicken (the Scheme-to-C compiler) includes a tool called csc so we check 
    478       # if the output from "csc -version" includes the word chicken which is 
    479       # sufficient to distinguish Chicken's csc from Microsoft's csc.exe. 
     477      dnl Chicken (the Scheme-to-C compiler) includes a tool called csc so we 
     478      dnl check if the output from "csc -version" includes the word chicken 
     479      dnl which is sufficient to distinguish Chicken's csc from Microsoft's 
     480      dnl csc.exe. 
    480481      AC_MSG_CHECKING([whether $CSC is for CSharp]) 
    481482      csc_tmp=`$CSC -version 2>/dev/null|grep chicken` 
     
    492493      AC_PATH_PROGS(CSC, [mcs], []) 
    493494      if test -n "$CSC" ; then 
    494         # There are other tools called mcs (such as /usr/bin/mcs on Tru64), 
    495         # so we check that the mcs we found understands --version which is 
    496         # sufficient to distinguish mono's mcs from the Tru64 one. 
     495        dnl There are other tools called mcs (such as /usr/bin/mcs on Tru64), 
     496        dnl so we check that the mcs we found understands --version which is 
     497        dnl sufficient to distinguish mono's mcs from the Tru64 one. 
    497498        AC_MSG_CHECKING([whether $CSC is from GNU Mono]) 
    498499        if (exec >&5 2>&5;$CSC --version </dev/null;exit $?) ; then