diff options
author | Matthieu Longo <mateo.longo@gmail.com> | 2024-04-29 14:18:37 +0100 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2024-04-29 18:14:17 -0700 |
commit | 1b70083bed43663901b3901a44f5537ba8b16ba0 (patch) | |
tree | 13b60a857adb552623273b055042687ed93c6e62 /contrib | |
parent | 2ba25b2ddab9aa939c321d087fcfca573a9cca55 (diff) | |
download | zlib-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.ac | 2 |
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]) | |||
7 | LT_INIT | 7 | LT_INIT |
8 | 8 | ||
9 | AC_MSG_CHECKING([whether to build example programs]) | 9 | AC_MSG_CHECKING([whether to build example programs]) |
10 | AC_ARG_ENABLE([demos], AC_HELP_STRING([--enable-demos], [build example programs])) | 10 | AC_ARG_ENABLE([demos], AS_HELP_STRING([--enable-demos], [build example programs])) |
11 | AM_CONDITIONAL([COND_DEMOS], [test "$enable_demos" = yes]) | 11 | AM_CONDITIONAL([COND_DEMOS], [test "$enable_demos" = yes]) |
12 | if test "$enable_demos" = yes | 12 | if test "$enable_demos" = yes |
13 | then | 13 | then |