Changeset 11163
- Timestamp:
- 2008-09-03 14:33:40 (3 months ago)
- Location:
- branches/1.0/xapian-applications/omega
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
configure.ac (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/xapian-applications/omega/ChangeLog
r11072 r11163 1 Wed 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 1 8 Tue Aug 05 09:32:33 GMT 2008 Olly Betts <olly@survex.com> 2 9 -
branches/1.0/xapian-applications/omega/configure.ac
r10908 r11163 1 1 dnl Process this file with autoconf to produce a configure script. 2 2 3 AC_INIT( xapian-omega, 1.0.7)dnl FIXME: bugreport addr as third argument3 AC_INIT([xapian-omega], [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]) 6 6 AM_INIT_AUTOMAKE([1.9 -Wportability tar-ustar]) 7 7 8 AC_CONFIG_SRCDIR( omega.cc)9 10 AC_CONFIG_HEADERS( config.h)8 AC_CONFIG_SRCDIR([omega.cc]) 9 10 AC_CONFIG_HEADERS([config.h]) 11 11 12 12 dnl We don't use Fortran, but libtool 1.5 insists on probing for f77 which just … … 25 25 AC_PROG_LIBTOOL 26 26 XO_LIB_XAPIAN 27 dnl We want XAPIAN_CXXFLAGS to be used for configure tests 27 dnl We want XAPIAN_CXXFLAGS to be used for configure tests. 28 28 CXXFLAGS="$CXXFLAGS $XAPIAN_CXXFLAGS" 29 29
