Replace autotools macro AC_HELP_STRING with AS_HELP_STRING.

In minizip's configure.ac. AC_HELP_STRING is obsolete.
This commit is contained in:
Matthieu Longo 2024-04-29 14:18:37 +01:00 committed by Mark Adler
parent 2ba25b2dda
commit 1b70083bed
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ AM_INIT_AUTOMAKE([foreign])
LT_INIT
AC_MSG_CHECKING([whether to build example programs])
AC_ARG_ENABLE([demos], AC_HELP_STRING([--enable-demos], [build example programs]))
AC_ARG_ENABLE([demos], AS_HELP_STRING([--enable-demos], [build example programs]))
AM_CONDITIONAL([COND_DEMOS], [test "$enable_demos" = yes])
if test "$enable_demos" = yes
then