summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-08-07 13:33:51 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-08-07 13:33:51 +0200
commit6581892f3d7d5d75139b71b20cdcbd25a8ce8ab4 (patch)
tree9dce3c122aeebc343d61fa4d665190e35ead36c8
parent94a26bdd47faf6225719397c0ac6459a4e6f435e (diff)
Execute autoupdate.
Replaces AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS and AC_HELP_STRING with AS_HELP_STRING (and quotes its parameters).
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 02dd352..e20b10a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -38,7 +38,7 @@ fi
# Checks for programs.
AC_PROG_CC
-AC_GNU_SOURCE
+AC_USE_SYSTEM_EXTENSIONS
AC_PROG_CXX
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
@@ -94,7 +94,7 @@ AC_SYS_LARGEFILE
# LYNX documentation generation
AC_ARG_ENABLE(lynx,
- AC_HELP_STRING(--disable-lynx,Turn off lynx usage for documentation generation),
+ AS_HELP_STRING([--disable-lynx],[Turn off lynx usage for documentation generation]),
[case "${enableval}" in
yes) lynx=yes ;;
no) lynx=no ;;