|
From: Paul M. <pau...@us...> - 2012-10-24 13:13:12
|
Date: Wed, 24 Oct 2012 11:51:21 +0200
Found by running `autoupdate`. Manually applied by running the following
command.
$ sed -i s,AC_HELP_STRING,AS_HELP_STRING, configure.ac
`AS_HELP_STRING` has been around since 2.58 I think. At least it is
mentioned in the manual of Autoconf 2.63 [1] libfm requires.
[1] http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.63/html_node/External-Software.html
---
configure.ac | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
index 05c3806..15a2479 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@ LT_INIT
# Vala
AC_ARG_ENABLE(actions,
- [AC_HELP_STRING([--disable-actions],
+ [AS_HELP_STRING([--disable-actions],
[disable custom actions in context menu if you have no decent Vala compiler])],
[enable_actions="${enableval}"],
[enable_actions=yes]
@@ -74,7 +74,7 @@ IT_PROG_INTLTOOL([0.40.0])
dnl libgtk version
AC_ARG_WITH(gtk,
- [AC_HELP_STRING([--with-gtk=VER],
+ [AS_HELP_STRING([--with-gtk=VER],
[Enable Gtk+ and choose version for libfm-gtk build (default=2)])],
[ac_with_gtk="${withval}"],
[ac_with_gtk=2]
@@ -149,7 +149,7 @@ fi
#optional features
AC_ARG_ENABLE(udisks,
- [AC_HELP_STRING([--enable-udisks],
+ [AS_HELP_STRING([--enable-udisks],
[build libfm with udisks support (Linux only) @<:@default=yes@:>@])],
[enable_udisks="${enableval}"],
[enable_udisks=no]
@@ -192,7 +192,7 @@ $EXIF_PKG_ERRORS
GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
AC_ARG_ENABLE(demo,
- [AC_HELP_STRING([--enable-demo],
+ [AS_HELP_STRING([--enable-demo],
[build libfm-demo file manager @<:@default=no@:>@])],
[enable_demo="${enableval}"],
[enable_demo=no]
@@ -230,7 +230,7 @@ fi
AC_SUBST(FMINCLUDEADD)
AC_ARG_ENABLE(debug,
- [AC_HELP_STRING([--enable-debug],
+ [AS_HELP_STRING([--enable-debug],
[build libfm with debug support @<:@default=no@:>@])],
[enable_debug="${enableval}"],
[enable_debug=no]
--
1.7.10.4
|