diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-03-08 14:50:24 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-03-08 14:50:43 -0800 |
commit | 0c5b190725bf1818308979ac4480960b75987aa5 (patch) | |
tree | cfe9096f2c36c6406f0b1022d01a9095b77b5c5c | |
parent | 9723b888ccc0efc1d38ae63bf12a0d134cf594ae (diff) |
configure: replace deprecated AC_HELP_STRING with AS_HELP_STRING
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4fa655e..29c6ed0 100644 --- a/configure.ac +++ b/configure.ac @@ -104,7 +104,7 @@ AC_CHECK_DECLS([__NR_memfd_create], [], [], [[#include <asm/unistd.h>]]) AC_CHECK_HEADERS([sys/memfd.h], [AC_DEFINE([HAVE_MEMFD_H], 1, [Has sys/memfd.h header])]) -AC_ARG_ENABLE(visibility, AC_HELP_STRING([--enable-visibility], [Enable symbol visibility (default: auto)]), +AC_ARG_ENABLE(visibility, AS_HELP_STRING([--enable-visibility], [Enable symbol visibility (default: auto)]), [SYMBOL_VISIBILITY=$enableval], [SYMBOL_VISIBILITY=auto]) |