changeset 11216:5036b0ff9597

configure.ac: Properly m4 quote AS_HELP_STRING.
author Rik <octave@nomad.inbox5.com>
date Tue, 09 Nov 2010 12:03:21 -0800
parents 8b2a47a99701
children 521373e25613
files ChangeLog configure.ac
diffstat 2 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-11-09  Rik  <octave@nomad.inbox5.com>
+
+	* configure.ac: Properly m4 quote AS_HELP_STRING.
+
 2010-11-09  Rik  <octave@nomad.inbox5.com>
 
 	* configure.ac: Remove redundant warning message when '--without-opengl'
--- a/configure.ac
+++ b/configure.ac
@@ -767,8 +767,8 @@
 
 ### Graphics/ImageMagick++
 
-AC_ARG_WITH([magick], [
-  AS_HELP_STRING([--with-magick=LIB],
+AC_ARG_WITH([magick],
+  [AS_HELP_STRING([--with-magick=LIB],
     [select library to use for image I/O (options: GraphicsMagick(default) or ImageMagick)])], [
   magick="$withval"], [
   magick="GraphicsMagick"])
@@ -1125,8 +1125,8 @@
 ### and want to try dynamic linking too (works on some systems, for
 ### example, OS X and Windows).
 
-AC_ARG_ENABLE([dl], [
-  AS_HELP_STRING([--enable-dl],
+AC_ARG_ENABLE([dl],
+  [AS_HELP_STRING([--enable-dl],
     [create shared libraries (not all systems)])], [
   case "${enableval}" in
     yes) ENABLE_DYNAMIC_LINKING=true ;;