Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/orc/files: orc-0.4.17-AM_CONFIG_HEADER.patch orc-0.4.9-make-valgrind-optional.patch
Date: Mon, 29 Apr 2013 13:49:19
Message-Id: 20130429134911.EA5F52171E@flycatcher.gentoo.org
1 tetromino 13/04/29 13:49:11
2
3 Added: orc-0.4.17-AM_CONFIG_HEADER.patch
4 Removed: orc-0.4.9-make-valgrind-optional.patch
5 Log:
6 Version bump. Remove obsolete versions. Fix building with automake-1.13 (bug #466956, thanks to Alphat-PC).
7
8 (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
9
10 Revision Changes Path
11 1.1 dev-lang/orc/files/orc-0.4.17-AM_CONFIG_HEADER.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/files/orc-0.4.17-AM_CONFIG_HEADER.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/files/orc-0.4.17-AM_CONFIG_HEADER.patch?rev=1.1&content-type=text/plain
15
16 Index: orc-0.4.17-AM_CONFIG_HEADER.patch
17 ===================================================================
18 From 8905d3d5bf8005944268c3500eec20b61923de89 Mon Sep 17 00:00:00 2001
19 From: Josep Torra <n770galaxy@×××××.com>
20 Date: Sat, 30 Mar 2013 12:52:33 +0100
21 Subject: [PATCH] configure: replace deprecated AM_CONFIG_HEADER with
22 AC_CONFIG_HEADERS
23
24 AM_CONFIG_HEADER has been removed in the just-released automake 1.13:
25 https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
26 ---
27 configure.ac | 2 +-
28 1 file changed, 1 insertion(+), 1 deletion(-)
29
30 diff --git a/configure.ac b/configure.ac
31 index 89812ba..4ebebd1 100644
32 --- a/configure.ac
33 +++ b/configure.ac
34 @@ -10,7 +10,7 @@ AM_INIT_AUTOMAKE(1.6)
35 ORC_MAJORMINOR=0.4
36 AC_SUBST(ORC_MAJORMINOR)
37
38 -AM_CONFIG_HEADER(config.h)
39 +AC_CONFIG_HEADER(config.h)
40
41 dnl CURRENT, REVISION, AGE
42 dnl - library source changed -> increment REVISION
43 --
44 1.8.2.1