[geos-commits] r2291 - trunk

svn_geos at osgeo.org svn_geos at osgeo.org
Mon Mar 23 10:38:45 EDT 2009


Author: mloskot
Date: 2009-03-23 10:38:45 -0400 (Mon, 23 Mar 2009)
New Revision: 2291

Modified:
   trunk/configure.in
Log:
configure.in: wrap macro arguments with proper M4 quote characters.

Modified: trunk/configure.in
===================================================================
--- trunk/configure.in	2009-03-23 14:08:50 UTC (rev 2290)
+++ trunk/configure.in	2009-03-23 14:38:45 UTC (rev 2291)
@@ -3,10 +3,10 @@
 dnl configure.in - autoconf input template to produce ./configure script
 dnl
 dnl version 2.52 is required for Cygwin libtool support
-AC_PREREQ(2.52)
+AC_PREREQ([2.52])
 
 dnl local vars to hold user's preferences --------------------------------
-AC_INIT(source/headers/geos.h)
+AC_INIT([source/headers/geos.h])
 AC_CANONICAL_SYSTEM
 
 AC_CONFIG_MACRO_DIR([macros])
@@ -35,9 +35,9 @@
 CAPI_VERSION_PATCH=$CAPI_INTERFACE_REVISION
 CAPI_VERSION="$CAPI_VERSION_MAJOR.$CAPI_VERSION_MINOR.$CAPI_VERSION_PATCH"
 
-AM_INIT_AUTOMAKE(geos, $VERSION, no-define)
-AM_CONFIG_HEADER(source/headers/config.h)
-AM_CONFIG_HEADER(source/headers/geos/platform.h)
+AM_INIT_AUTOMAKE([geos], [$VERSION], [no-define])
+AM_CONFIG_HEADER([source/headers/config.h])
+AM_CONFIG_HEADER([source/headers/geos/platform.h])
 AC_PROG_CC
 
 dnl use libtool ----------------------------------------------------------
@@ -59,12 +59,12 @@
 AC_FUNC_ALLOCA
 AC_HEADER_DIRENT
 AC_HEADER_STDC
-AC_CHECK_HEADERS(memory.h)
-AC_CHECK_HEADERS(unistd.h)
-AC_CHECK_HEADERS(ieeefp.h)
-AC_CHECK_HEADERS(sys/file.h)
-AC_CHECK_HEADERS(sys/time.h)
-AC_CHECK_FUNCS(strchr memcpy gettimeofday)
+AC_CHECK_HEADERS([memory.h])
+AC_CHECK_HEADERS([unistd.h])
+AC_CHECK_HEADERS([ieeefp.h])
+AC_CHECK_HEADERS([sys/file.h])
+AC_CHECK_HEADERS([sys/time.h])
+AC_CHECK_FUNCS([strchr memcpy gettimeofday[)
 AC_HEADER_STAT
 AC_STRUCT_TM
 AC_TYPE_SIZE_T
@@ -75,7 +75,7 @@
 dnl --------------------------------------------------------------------
 
 
-AC_ARG_ENABLE(inline, [  --disable-inline    Disable inlining],
+AC_ARG_ENABLE([inline], [  --disable-inline    Disable inlining],
 	[case "${enableval}" in
 		yes) enable_inline=true ;;
 		no)  enable_inline=false ;;
@@ -84,7 +84,7 @@
 	[enable_inline=true]
 )
 
-AC_ARG_ENABLE(cassert, [  --disable-cassert   Disable assertion checking],
+AC_ARG_ENABLE([cassert], [  --disable-cassert   Disable assertion checking],
 	[case "${enableval}" in
 		yes) enable_cassert=true ;;
 		no)  enable_cassert=false ;;
@@ -139,7 +139,7 @@
 dnl - check whether python is required for the build
 dnl --------------------------------------------------------------------
 
-AC_ARG_ENABLE(python, [  --enable-python    Enable build of python module],
+AC_ARG_ENABLE([python], [  --enable-python    Enable build of python module],
 	[case "${enableval}" in
 		yes) use_python=true ;;
 		no)  use_python=false ;;
@@ -153,7 +153,7 @@
 dnl - check whether ruby is required for the build
 dnl --------------------------------------------------------------------
 
-AC_ARG_ENABLE(ruby, [  --enable-ruby    Enable build of ruby module],
+AC_ARG_ENABLE([ruby], [  --enable-ruby    Enable build of ruby module],
 	[case "${enableval}" in
 		yes) use_ruby=true ;;
 		no)  use_ruby=false ;;



More information about the geos-commits mailing list