summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-06 14:09:45 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-06 14:11:09 -0800
commit53bf8584e8d7d5d4a4a8114bff26a6f631c7fac1 (patch)
tree257b3b8db3f4c7324845f5c19f2f826affb41933
parent31a9451111fb1e3ae1199d44f94cd0b134ca455d (diff)
downloadxorg-lib-libX11-53bf8584e8d7d5d4a4a8114bff26a6f631c7fac1.tar.gz
configure: replace deprecated AC_HELP_STRING with AS_HELP_STRING
This silences an autoconf warning. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c9aab5ed..9465afb4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -260,7 +260,7 @@ AC_CHECK_FUNC(poll, [AC_DEFINE(USE_POLL, 1, [poll() function is available])], )
#
AC_MSG_CHECKING([keysym definitions])
AC_ARG_WITH([keysymdefdir],
- [AC_HELP_STRING([--with-keysymdefdir=DIR], [The location of keysymdef.h (defaults to xproto include dir)])],
+ [AS_HELP_STRING([--with-keysymdefdir=DIR], [The location of keysymdef.h (defaults to xproto include dir)])],
[KEYSYMDEFDIR=$withval],
[KEYSYMDEFDIR=`$PKG_CONFIG --variable=includedir xproto`/X11])