From 41ac45785a01dc1acac345c756f1dace67afb6d9 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Tue, 3 Sep 2013 10:47:21 -0400 Subject: [PATCH] configure: initialize automake with subdir-objects option This makes the buildsystem forward compatible with automake>=1.14 since nghttp uses a recursive build. It avoids a large and non-scary warning on running autoreconf, summarized as: src/Makefile.am:57: warning: source file 'http-parser/http_parser.c' is in a subdirectory, src/Makefile.am:57: but option 'subdir-objects' is disabled --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 404c5591..01d8c6e7 100644 --- a/configure.ac +++ b/configure.ac @@ -44,7 +44,7 @@ AC_CANONICAL_TARGET AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE() +AM_INIT_AUTOMAKE([subdir-objects]) AC_CONFIG_HEADERS([config.h]) dnl Checks for command-line options