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_TYPE_SIZE_T
|
||||||
|
|
||||||
AC_ARG_WITH([xmlwf],
|
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])
|
[with_xmlwf=yes])
|
||||||
AM_CONDITIONAL([WITH_XMLWF], [test x${with_xmlwf} = xyes])
|
AM_CONDITIONAL([WITH_XMLWF], [test x${with_xmlwf} = xyes])
|
||||||
|
|
||||||
AC_ARG_WITH([examples], [
|
AC_ARG_WITH([examples],
|
||||||
AS_HELP_STRING([--without-examples], [do not build examples @<:@default=included@:>@])], [], [with_examples=yes])
|
[AS_HELP_STRING([--without-examples], [do not build examples @<:@default=included@:>@])],
|
||||||
|
[],
|
||||||
|
[with_examples=yes])
|
||||||
AM_CONDITIONAL([WITH_EXAMPLES], [test x${with_examples} = xyes])
|
AM_CONDITIONAL([WITH_EXAMPLES], [test x${with_examples} = xyes])
|
||||||
|
|
||||||
AC_ARG_WITH([tests], [
|
AC_ARG_WITH([tests],
|
||||||
AS_HELP_STRING([--without-tests], [do not build tests @<:@default=included@:>@])], [], [with_tests=yes])
|
[AS_HELP_STRING([--without-tests], [do not build tests @<:@default=included@:>@])],
|
||||||
|
[],
|
||||||
|
[with_tests=yes])
|
||||||
AM_CONDITIONAL([WITH_TESTS], [test x${with_tests} = xyes])
|
AM_CONDITIONAL([WITH_TESTS], [test x${with_tests} = xyes])
|
||||||
|
|
||||||
|
|
||||||
@ -151,33 +156,33 @@ AS_IF([test "x${with_libbsd}" != xno],
|
|||||||
[arc4random_buf],
|
[arc4random_buf],
|
||||||
[],
|
[],
|
||||||
[AS_IF([test "x${with_libbsd}" = xyes],
|
[AS_IF([test "x${with_libbsd}" = xyes],
|
||||||
[AC_MSG_ERROR([Enforced use of libbsd cannot be satisfied.])])])])
|
[AC_MSG_ERROR([Enforced use of libbsd cannot be satisfied.])])])])
|
||||||
AC_MSG_CHECKING([for arc4random_buf (BSD or libbsd)])
|
AC_MSG_CHECKING([for arc4random_buf (BSD or libbsd)])
|
||||||
AC_LINK_IFELSE([AC_LANG_SOURCE([
|
AC_LINK_IFELSE([AC_LANG_SOURCE([
|
||||||
#include <stdlib.h> /* for arc4random_buf on BSD, for NULL */
|
#include <stdlib.h> /* for arc4random_buf on BSD, for NULL */
|
||||||
#if defined(HAVE_LIBBSD)
|
#if defined(HAVE_LIBBSD)
|
||||||
# include <bsd/stdlib.h>
|
# include <bsd/stdlib.h>
|
||||||
#endif
|
#endif
|
||||||
int main() {
|
int main() {
|
||||||
arc4random_buf(NULL, 0U);
|
arc4random_buf(NULL, 0U);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
])],
|
])],
|
||||||
[AC_DEFINE([HAVE_ARC4RANDOM_BUF], [1], [Define to 1 if you have the `arc4random_buf' function.])
|
[AC_DEFINE([HAVE_ARC4RANDOM_BUF], [1], [Define to 1 if you have the `arc4random_buf' function.])
|
||||||
AC_MSG_RESULT([yes])],
|
AC_MSG_RESULT([yes])],
|
||||||
[AC_MSG_RESULT([no])
|
[AC_MSG_RESULT([no])
|
||||||
|
|
||||||
AC_MSG_CHECKING([for arc4random (BSD, macOS or libbsd)])
|
AC_MSG_CHECKING([for arc4random (BSD, macOS or libbsd)])
|
||||||
AC_LINK_IFELSE([AC_LANG_SOURCE([
|
AC_LINK_IFELSE([AC_LANG_SOURCE([
|
||||||
#if defined(HAVE_LIBBSD)
|
#if defined(HAVE_LIBBSD)
|
||||||
# include <bsd/stdlib.h>
|
# include <bsd/stdlib.h>
|
||||||
#else
|
#else
|
||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
#endif
|
#endif
|
||||||
int main() {
|
int main() {
|
||||||
arc4random();
|
arc4random();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
])],
|
])],
|
||||||
[AC_DEFINE([HAVE_ARC4RANDOM], [1], [Define to 1 if you have the `arc4random' function.])
|
[AC_DEFINE([HAVE_ARC4RANDOM], [1], [Define to 1 if you have the `arc4random' function.])
|
||||||
AC_MSG_RESULT([yes])],
|
AC_MSG_RESULT([yes])],
|
||||||
@ -252,9 +257,9 @@ AC_DEFINE([XML_DEV_URANDOM], 1,
|
|||||||
|
|
||||||
AC_ARG_ENABLE([xml-attr-info],
|
AC_ARG_ENABLE([xml-attr-info],
|
||||||
[AS_HELP_STRING([--enable-xml-attr-info],
|
[AS_HELP_STRING([--enable-xml-attr-info],
|
||||||
[Enable retrieving the byte offsets for attribute names and values
|
[Enable retrieving the byte offsets for attribute names and values @<:@default=no@:>@])],
|
||||||
@<:@default=no@:>@])], ,
|
[],
|
||||||
[enable_xml_attr_info=no])
|
[enable_xml_attr_info=no])
|
||||||
AS_IF([test "x${enable_xml_attr_info}" = "xyes"],
|
AS_IF([test "x${enable_xml_attr_info}" = "xyes"],
|
||||||
[AC_DEFINE([XML_ATTR_INFO], 1,
|
[AC_DEFINE([XML_ATTR_INFO], 1,
|
||||||
[Define to allow retrieving the byte offsets for attribute names and values.])])
|
[Define to allow retrieving the byte offsets for attribute names and values.])])
|
||||||
@ -277,8 +282,9 @@ AC_ARG_WITH([docbook],
|
|||||||
[AS_HELP_STRING([--with-docbook],
|
[AS_HELP_STRING([--with-docbook],
|
||||||
[enforce XML to man page compilation @<:@default=check@:>@])
|
[enforce XML to man page compilation @<:@default=check@:>@])
|
||||||
AS_HELP_STRING([--without-docbook],
|
AS_HELP_STRING([--without-docbook],
|
||||||
[skip XML to man page compilation @<:@default=check@:>@])], [],
|
[skip XML to man page compilation @<:@default=check@:>@])],
|
||||||
[with_docbook=check])
|
[],
|
||||||
|
[with_docbook=check])
|
||||||
|
|
||||||
AC_ARG_VAR([DOCBOOK_TO_MAN], [docbook2x-man command])
|
AC_ARG_VAR([DOCBOOK_TO_MAN], [docbook2x-man command])
|
||||||
AS_IF([test "x$with_docbook" != xno],
|
AS_IF([test "x$with_docbook" != xno],
|
||||||
|
Loading…
Reference in New Issue
Block a user