use AS_HELP_STRING macro

This commit is contained in:
jez 2007-08-29 02:02:25 +00:00
parent 0e88bcf077
commit b02a3ddb62
4 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,7 @@
AC_DEFUN([ARABICA_HAS_EXPAT],
[
AC_ARG_WITH([expat],
[ --with-expat=PREFIX Specify expat library location],
AS_HELP_STRING([--with-expat=PREFIX],[Specify expat library location]),
[],
[with_expat=yes])

View file

@ -1,6 +1,6 @@
AC_DEFUN([ARABICA_HAS_LIBXML2],
[ AC_ARG_WITH(libxml2,
[ --with-libxml2=PREFIX Specify libxml2 library location],
AS_HELP_STRING([--with-libxml2=PREFIX],[Specify libxml2 library location]),
, with_libxml2=yes)
LIBXML2_CFLAGS=

View file

@ -1,7 +1,8 @@
AC_DEFUN([ARABICA_SELECT_XML_PARSER],
[
AC_ARG_WITH(parser,
[ --with-parser=expat|libxml2|xerces|garden Specify a particular parser library],
AC_ARG_WITH([parser],
AS_HELP_STRING([--with-parser=expat|libxml2|xerces|garden],
[Specify a particular parser library]),
, )
if test "$with_parser" != ""; then

View file

@ -1,6 +1,6 @@
AC_DEFUN([ARABICA_HAS_XERCES],
[ AC_ARG_WITH([xerces],
[ --with-xerces=PREFIX Specify xerces library location],
AS_HELP_STRING([--with-xerces=PREFIX],[Specify xerces library location]),
[],
[with_xerces=yes])