diff options
author | Sam James <sam@gentoo.org> | 2022-11-03 05:17:43 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-11-03 05:18:48 +0000 |
commit | acf90b044e45d8e4c2ef864adfd38eb30722bc2f (patch) | |
tree | e0046153e3fbaeeb6e114ef3a6e168141db13701 /configure.ac | |
parent | e88d9bcad79b7ebf6b97ebd634af31ed23c1b910 (diff) | |
download | lcms2-acf90b044e45d8e4c2ef864adfd38eb30722bc2f.tar.gz |
m4: sync autoconf-archive (ax_*) macros with upstream
- Update the various ax_* macros (which originate from autoconf-archive)
- Switch from acx_pthread.m4 -> ax_pthread.m4
Fixes: https://github.com/mm2/Little-CMS/issues/339
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5dbc03b..467dec1 100644 --- a/configure.ac +++ b/configure.ac @@ -183,9 +183,9 @@ have_threads=no if test "$with_threads" != 'no' then - ACX_PTHREAD() + AX_PTHREAD() - if test "$acx_pthread_ok" = yes + if test "$ax_pthread_ok" = yes then have_threads=yes |