ec2e22566c0af609b2fba8a29750349a0fe3b4c2
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / thrift / 0004-THRIFT-3071-check-minimum-required-version-of-automa.patch
1 From 9b03d2b02d32302008d2bd0218b31b9a0ca5a748 Mon Sep 17 00:00:00 2001
2 From: Jens Geyer <jensg@apache.org>
3 Date: Fri, 3 Apr 2015 12:37:03 +0200
4 Subject: [PATCH] THRIFT-3071 check minimum required version of automake in bootstrap.sh
5 Client: Build process
6 Patch: James E. King, III <jim.king@simplivity.com>
7
8 This closes #421
9
10 - remove a warning when using libtool
11
12 "libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([./aclocal])' to configure.ac,"
13
14 [Romain:
15   - This is upstream commit 4aa95df383bfa13c46a4dc0b41672ec29d476300
16   - remove the part for bootstrap.sh which is not
17     bundled in thrift archive.
18   - fix the commit log accordingly]
19
20 Signed-off-by: Romain Naour <romain.naour@openwide.fr>
21 ---
22  configure.ac | 2 ++
23  1 file changed, 2 insertions(+)
24
25 diff --git a/configure.ac b/configure.ac
26 index 5fa611e..8daeb03 100755
27 --- a/configure.ac
28 +++ b/configure.ac
29 @@ -18,6 +18,7 @@
30  #
31  
32  AC_PREREQ(2.65)
33 +AC_CONFIG_MACRO_DIR([./aclocal])
34  
35  AC_INIT([thrift], [0.9.2])
36  
37 @@ -540,6 +541,7 @@ AC_CHECK_FUNCS([memset])
38  AC_CHECK_FUNCS([mkdir])
39  AC_CHECK_FUNCS([realpath])
40  AC_CHECK_FUNCS([select])
41 +AC_CHECK_FUNCS([setlocale])
42  AC_CHECK_FUNCS([socket])
43  AC_CHECK_FUNCS([strchr])
44  AC_CHECK_FUNCS([strdup])
45 -- 
46 1.9.3
47