Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/rezound/files: rezound-0.12.3_beta-m4.patch
Date: Fri, 20 Aug 2010 22:38:13
Message-Id: 20100820223807.626372004B@flycatcher.gentoo.org
1 ssuominen 10/08/20 22:38:07
2
3 Added: rezound-0.12.3_beta-m4.patch
4 Log:
5 Fix sys-devel/m4 loop wrt #305305, thanks to Mike Frysinger for his extensive analysis.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-sound/rezound/files/rezound-0.12.3_beta-m4.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/rezound/files/rezound-0.12.3_beta-m4.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/rezound/files/rezound-0.12.3_beta-m4.patch?rev=1.1&content-type=text/plain
13
14 Index: rezound-0.12.3_beta-m4.patch
15 ===================================================================
16 ajv_CXX_FLAG macro is broken and causes m4 to loop forever, let's just assume g++ supports
17 these flags, see http://bugs.gentoo.org/305305
18
19 --- configure.ac
20 +++ configure.ac
21 @@ -81,13 +81,9 @@
22
23
24 ############################################################################
25 -# Set some compilter flags if they're available #
26 +# Set some compilter flags #
27 ############################################################################
28 -ajv_CXX_FLAG(-g)
29 -ajv_CXX_FLAG(-Wall)
30 -ajv_CXX_FLAG(-Wno-unused-function)
31 -ajv_CXX_FLAG(-Wno-unused-variable)
32 -ajv_CXX_FLAG(-Wno-unused)
33 +CXXFLAGS="$CXXFLAGS -Wall -Wno-unused-function -Wno-unused-variable -Wno-unused"