comparison configure.ac @ 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 7f19b2b6e093
children 29d515b9d30c
comparison
equal deleted inserted replaced
11215:8b2a47a99701 11216:5036b0ff9597
765 LIBS="$save_LIBS" 765 LIBS="$save_LIBS"
766 CPPFLAGS="$save_CPPFLAGS" 766 CPPFLAGS="$save_CPPFLAGS"
767 767
768 ### Graphics/ImageMagick++ 768 ### Graphics/ImageMagick++
769 769
770 AC_ARG_WITH([magick], [ 770 AC_ARG_WITH([magick],
771 AS_HELP_STRING([--with-magick=LIB], 771 [AS_HELP_STRING([--with-magick=LIB],
772 [select library to use for image I/O (options: GraphicsMagick(default) or ImageMagick)])], [ 772 [select library to use for image I/O (options: GraphicsMagick(default) or ImageMagick)])], [
773 magick="$withval"], [ 773 magick="$withval"], [
774 magick="GraphicsMagick"]) 774 magick="GraphicsMagick"])
775 775
776 warn_magick="$magick++ library not found. The imread function for reading image files will not be fully functional." 776 warn_magick="$magick++ library not found. The imread function for reading image files will not be fully functional."
1123 ### Enable dynamic linking. --enable-shared implies this, so 1123 ### Enable dynamic linking. --enable-shared implies this, so
1124 ### --enable-dl is only need if you are only building static libraries 1124 ### --enable-dl is only need if you are only building static libraries
1125 ### and want to try dynamic linking too (works on some systems, for 1125 ### and want to try dynamic linking too (works on some systems, for
1126 ### example, OS X and Windows). 1126 ### example, OS X and Windows).
1127 1127
1128 AC_ARG_ENABLE([dl], [ 1128 AC_ARG_ENABLE([dl],
1129 AS_HELP_STRING([--enable-dl], 1129 [AS_HELP_STRING([--enable-dl],
1130 [create shared libraries (not all systems)])], [ 1130 [create shared libraries (not all systems)])], [
1131 case "${enableval}" in 1131 case "${enableval}" in
1132 yes) ENABLE_DYNAMIC_LINKING=true ;; 1132 yes) ENABLE_DYNAMIC_LINKING=true ;;
1133 no) ENABLE_DYNAMIC_LINKING=false ;; 1133 no) ENABLE_DYNAMIC_LINKING=false ;;
1134 *) AC_MSG_ERROR([bad value ${enableval} for --enable-dl]) ;; 1134 *) AC_MSG_ERROR([bad value ${enableval} for --enable-dl]) ;;