Changeset 11163

Show
Ignore:
Timestamp:
2008-09-03 14:33:40 (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).

Location:
branches/1.0/xapian-applications/omega
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/xapian-applications/omega/ChangeLog

    r11072 r11163  
     1Wed Sep 03 13:33:24 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). 
     7 
    18Tue Aug 05 09:32:33 GMT 2008  Olly Betts <olly@survex.com> 
    29 
  • branches/1.0/xapian-applications/omega/configure.ac

    r10908 r11163  
    11dnl Process this file with autoconf to produce a configure script. 
    22 
    3 AC_INIT(xapian-omega, 1.0.7)dnl FIXME: bugreport addr as third argument 
     3AC_INIT([xapian-omega], [1.0.7], [http://xapian.org/bugs]) 
    44dnl See HACKING document for details of the reasons for required versions. 
    55AC_PREREQ([2.59]) 
    66AM_INIT_AUTOMAKE([1.9 -Wportability tar-ustar]) 
    77 
    8 AC_CONFIG_SRCDIR(omega.cc) 
    9  
    10 AC_CONFIG_HEADERS(config.h) 
     8AC_CONFIG_SRCDIR([omega.cc]) 
     9 
     10AC_CONFIG_HEADERS([config.h]) 
    1111 
    1212dnl We don't use Fortran, but libtool 1.5 insists on probing for f77 which just 
     
    2525AC_PROG_LIBTOOL 
    2626XO_LIB_XAPIAN 
    27 dnl We want XAPIAN_CXXFLAGS to be used for configure tests 
     27dnl We want XAPIAN_CXXFLAGS to be used for configure tests. 
    2828CXXFLAGS="$CXXFLAGS $XAPIAN_CXXFLAGS" 
    2929