summaryrefslogtreecommitdiffstats
path: root/patches/fcgi-2.4.0/0002-prepare-for-new-autotools.patch
blob: fbc6d3131b44e6261405e34c83f332d066801f76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From: Michael Olbrich <m.olbrich@pengutronix.de>
Date: Wed, 27 Oct 2010 23:17:40 +0200
Subject: [PATCH] prepare for new autotools

we need AM_INIT_AUTOMAKE([foreign]) or automake fails with missing files

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 configure.in |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.in b/configure.in
index e1941d0..1f94dde 100755
--- a/configure.in
+++ b/configure.in
@@ -4,8 +4,8 @@ dnl     This file is an input file used by the GNU "autoconf" program to
 dnl     generate the file "configure", which is run during the build
 dnl     to configure the system for the local environment.
 
-AC_INIT
-AM_INIT_AUTOMAKE(fcgi, 2.4.0)
+AC_INIT([fcgi],[2.4.0],[])
+AM_INIT_AUTOMAKE([foreign])
 
 AM_CONFIG_HEADER(fcgi_config.h)
 
-- 
1.7.2.3