Correct the indentation for configure.ac
This commit is contained in:
parent
322ca04c9a
commit
3987529951
@ -119,16 +119,21 @@ AC_C_CONST
|
||||
AC_TYPE_SIZE_T
|
||||
|
||||
AC_ARG_WITH([xmlwf],
|
||||
[AS_HELP_STRING([--without-xmlwf], [do not build xmlwf])], [],
|
||||
[AS_HELP_STRING([--without-xmlwf], [do not build xmlwf])],
|
||||
[],
|
||||
[with_xmlwf=yes])
|
||||
AM_CONDITIONAL([WITH_XMLWF], [test x${with_xmlwf} = xyes])
|
||||
|
||||
AC_ARG_WITH([examples], [
|
||||
AS_HELP_STRING([--without-examples], [do not build examples @<:@default=included@:>@])], [], [with_examples=yes])
|
||||
AC_ARG_WITH([examples],
|
||||
[AS_HELP_STRING([--without-examples], [do not build examples @<:@default=included@:>@])],
|
||||
[],
|
||||
[with_examples=yes])
|
||||
AM_CONDITIONAL([WITH_EXAMPLES], [test x${with_examples} = xyes])
|
||||
|
||||
AC_ARG_WITH([tests], [
|
||||
AS_HELP_STRING([--without-tests], [do not build tests @<:@default=included@:>@])], [], [with_tests=yes])
|
||||
AC_ARG_WITH([tests],
|
||||
[AS_HELP_STRING([--without-tests], [do not build tests @<:@default=included@:>@])],
|
||||
[],
|
||||
[with_tests=yes])
|
||||
AM_CONDITIONAL([WITH_TESTS], [test x${with_tests} = xyes])
|
||||
|
||||
|
||||
@ -252,8 +257,8 @@ AC_DEFINE([XML_DEV_URANDOM], 1,
|
||||
|
||||
AC_ARG_ENABLE([xml-attr-info],
|
||||
[AS_HELP_STRING([--enable-xml-attr-info],
|
||||
[Enable retrieving the byte offsets for attribute names and values
|
||||
@<:@default=no@:>@])], ,
|
||||
[Enable retrieving the byte offsets for attribute names and values @<:@default=no@:>@])],
|
||||
[],
|
||||
[enable_xml_attr_info=no])
|
||||
AS_IF([test "x${enable_xml_attr_info}" = "xyes"],
|
||||
[AC_DEFINE([XML_ATTR_INFO], 1,
|
||||
@ -277,7 +282,8 @@ AC_ARG_WITH([docbook],
|
||||
[AS_HELP_STRING([--with-docbook],
|
||||
[enforce XML to man page compilation @<:@default=check@:>@])
|
||||
AS_HELP_STRING([--without-docbook],
|
||||
[skip XML to man page compilation @<:@default=check@:>@])], [],
|
||||
[skip XML to man page compilation @<:@default=check@:>@])],
|
||||
[],
|
||||
[with_docbook=check])
|
||||
|
||||
AC_ARG_VAR([DOCBOOK_TO_MAN], [docbook2x-man command])
|
||||
|
Loading…
Reference in New Issue
Block a user