summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2011-01-12 15:29:49 -0500
committerGaetan Nadon <memsize@videotron.ca>2011-01-12 15:29:49 -0500
commitdcfac7570f8f92dfe3b79338439461c0d32567a1 (patch)
tree423fe5f749aa1316357490028b67a89605934bcc
parent20600faa8d0d44c0aeeb370d321da8a405fc0743 (diff)
config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
This silences an Automake warning. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 3af31e3..8d1fda2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -38,7 +38,7 @@ PKG_CHECK_MODULES(RGB, xproto)
AC_MSG_CHECKING([for rgb database location])
AC_ARG_WITH([rgb-db-dir],
- AC_HELP_STRING([--with-rgb-db-dir=<path>],
+ AS_HELP_STRING([--with-rgb-db-dir=<path>],
[rgb database location (default is ${datadir}/X11/rgb)]),
[db_path=$withval], [db_path=${datadir}/X11/rgb])
AC_MSG_RESULT([$db_path])
@@ -50,7 +50,7 @@ AC_SUBST([db_dir])
AC_MSG_CHECKING([for rgb database format])
AC_ARG_WITH([rgb-db-type],
- AC_HELP_STRING([--with-rgb-db-type=(text|dbm|ndbm)],
+ AS_HELP_STRING([--with-rgb-db-type=(text|dbm|ndbm)],
[rgb database type (default is text)]),
[db_type=$withval], [db_type="text"])
AC_MSG_RESULT([$db_type])