Changeset 11169
- Timestamp:
- 2008-09-03 15:26:07 (3 months ago)
- Location:
- branches/1.0/xapian-bindings
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
configure.ac (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/xapian-bindings/ChangeLog
r10911 r11169 1 Wed 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 1 9 Mon Jul 14 14:30:17 GMT 2008 Olly Betts <olly@survex.com> 2 10 -
branches/1.0/xapian-bindings/configure.ac
r10911 r11169 1 1 dnl Process this file with autoconf to produce a configure script. 2 2 3 AC_INIT( xapian-bindings, 1.0.7)dnl FIXME: bugreport addr as third argument3 AC_INIT([xapian-bindings], [1.0.7], [http://xapian.org/bugs]) 4 4 dnl See HACKING document for details of the reasons for required versions. 5 5 AC_PREREQ([2.59]) … … 387 387 AC_ARG_VAR(TCLSH, [Tcl interpreter]) 388 388 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 (just391 #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. 392 392 AC_MSG_CHECKING([$TCLSH version]) 393 393 if echo 'if {$tcl_version < 8.1 } { exit 1 }'|$TCLSH 2> /dev/null ; then … … 475 475 dnl csc is the Microsoft CSharp compiler. 476 476 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. 480 481 AC_MSG_CHECKING([whether $CSC is for CSharp]) 481 482 csc_tmp=`$CSC -version 2>/dev/null|grep chicken` … … 492 493 AC_PATH_PROGS(CSC, [mcs], []) 493 494 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 is496 #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. 497 498 AC_MSG_CHECKING([whether $CSC is from GNU Mono]) 498 499 if (exec >&5 2>&5;$CSC --version </dev/null;exit $?) ; then
