summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2011-01-28 16:07:07 -0500
committerGaetan Nadon <memsize@videotron.ca>2011-01-28 16:07:07 -0500
commit449ab92d83a972ba28ffda0ae198a6c8e4b00e78 (patch)
treefab67976b71af1f0fb9c71039e024fe5b910051d
parentb73a5ea91d0b3bb61ee8e7aa26ff178fd5b72209 (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 d31ea06..621081b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,7 +65,7 @@ AM_CONDITIONAL(PLATFORM_DARWIN, test "x$platform_darwin" = "xyes")
# Whether to build Xaw6
-AC_ARG_ENABLE(xaw6, AC_HELP_STRING([--disable-xaw6],
+AC_ARG_ENABLE(xaw6, AS_HELP_STRING([--disable-xaw6],
[Disable building of libXaw.so.6]),
[build_v6=$enableval], [build_v6=yes])
@@ -76,7 +76,7 @@ fi
# Whether to build Xaw7
-AC_ARG_ENABLE(xaw7, AC_HELP_STRING([--disable-xaw7],
+AC_ARG_ENABLE(xaw7, AS_HELP_STRING([--disable-xaw7],
[Disable building of libXaw.so.7]),
[build_v7=$enableval], [build_v7=yes])