Cygwin: Update configure.ac to use AC_CONFIG_HEADERS

This avoids warning with autoconf >= 2.70:

  configure.ac:47: warning: The macro `AC_CONFIG_HEADER' is obsolete.

AC_CONFIG_HEADERS has been supported since before autconf 2.59, the
minimum version we can be using, controlled by AC_PREREQ.
This commit is contained in:
Jon Turney 2021-12-07 13:20:27 +00:00
parent 30089b3fbd
commit 366e43a30c
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ AC_ARG_WITH([cross-bootstrap],[AS_HELP_STRING([--with-cross-bootstrap],[do not b
AC_CYGWIN_INCLUDES
AC_CONFIG_HEADER(cygwin/config.h)
AC_CONFIG_HEADERS([cygwin/config.h])
AC_CHECK_TOOL(AR, ar, ar)
AC_CHECK_TOOL(AS, as, as)