aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMatthieu Longo <mateo.longo@gmail.com>2024-04-29 14:18:37 +0100
committerMark Adler <madler@alumni.caltech.edu>2024-04-29 18:14:17 -0700
commit1b70083bed43663901b3901a44f5537ba8b16ba0 (patch)
tree13b60a857adb552623273b055042687ed93c6e62 /contrib
parent2ba25b2ddab9aa939c321d087fcfca573a9cca55 (diff)
downloadzlib-1b70083bed43663901b3901a44f5537ba8b16ba0.tar.gz
zlib-1b70083bed43663901b3901a44f5537ba8b16ba0.tar.bz2
zlib-1b70083bed43663901b3901a44f5537ba8b16ba0.zip
Replace autotools macro AC_HELP_STRING with AS_HELP_STRING.
In minizip's configure.ac. AC_HELP_STRING is obsolete.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/minizip/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/minizip/configure.ac b/contrib/minizip/configure.ac
index 6e3fff3..860c6ba 100644
--- a/contrib/minizip/configure.ac
+++ b/contrib/minizip/configure.ac
@@ -7,7 +7,7 @@ AM_INIT_AUTOMAKE([foreign])
7LT_INIT 7LT_INIT
8 8
9AC_MSG_CHECKING([whether to build example programs]) 9AC_MSG_CHECKING([whether to build example programs])
10AC_ARG_ENABLE([demos], AC_HELP_STRING([--enable-demos], [build example programs])) 10AC_ARG_ENABLE([demos], AS_HELP_STRING([--enable-demos], [build example programs]))
11AM_CONDITIONAL([COND_DEMOS], [test "$enable_demos" = yes]) 11AM_CONDITIONAL([COND_DEMOS], [test "$enable_demos" = yes])
12if test "$enable_demos" = yes 12if test "$enable_demos" = yes
13then 13then