aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnatol Pomozov <anatol.pomozov@gmail.com>2013-02-02 17:32:45 -0800
committerMiklos Szeredi <mszeredi@suse.cz>2013-02-04 18:30:15 +0100
commit839550d319042dcd1893eafc24c038148ac29ec4 (patch)
treee0a8d84d3050210b3c413fefcccbd8b9e46f5754
parentf80f367815de08d7bf41939ee75e37909004d164 (diff)
downloadandroid_external_fuse-839550d319042dcd1893eafc24c038148ac29ec4.tar.gz
android_external_fuse-839550d319042dcd1893eafc24c038148ac29ec4.tar.bz2
android_external_fuse-839550d319042dcd1893eafc24c038148ac29ec4.zip
libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER
AM_CONFIG_HEADER has been deprecated for years and autotools 1.13 removes this macros at all.
-rw-r--r--ChangeLog3
-rw-r--r--configure.in2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fa4ff2e..2f073ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,9 @@
* libfuse: configure: detect new util-linux
+ * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
+ Patch by Anatol Pomozov
+
2012-10-01 Miklos Szeredi <miklos@szeredi.hu>
* Released 2.9.2
diff --git a/configure.in b/configure.in
index 671d670..0737bad 100644
--- a/configure.in
+++ b/configure.in
@@ -5,7 +5,7 @@ AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)])
-AM_CONFIG_HEADER(include/config.h)
+AC_CONFIG_HEADERS(include/config.h)
AC_PROG_LIBTOOL
AC_PROG_CC