Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/amsynth/files: amsynth-1.2.3-respect-cflags.patch
Date: Tue, 30 Aug 2011 09:37:16
Message-Id: 20110830093704.4EB142004C@flycatcher.gentoo.org
1 chainsaw 11/08/30 09:37:04
2
3 Added: amsynth-1.2.3-respect-cflags.patch
4 Log:
5 Revision bump for EAPI 4 porting and CFLAGS respect patch by Markos "hwoarang" Chandros with input from Samuli Suominen in bug #376665 filed by Agostino "ago" Sarubbo.
6
7 (Portage version: 2.1.10.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-sound/amsynth/files/amsynth-1.2.3-respect-cflags.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/files/amsynth-1.2.3-respect-cflags.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/files/amsynth-1.2.3-respect-cflags.patch?rev=1.1&content-type=text/plain
14
15 Index: amsynth-1.2.3-respect-cflags.patch
16 ===================================================================
17 --- amSynth-1.2.3/configure.in
18 +++ amSynth-1.2.3/configure.in
19 @@ -90,7 +90,7 @@ AC_ARG_ENABLE(debug,
20 if test "${enable_debug}" = "yes" ; then
21 AC_MSG_RESULT([yes])
22 debugging=yes
23 - CXXFLAGS="$CXXFLAGS -g -Wall -D_DEBUG"
24 + CXXFLAGS="$CXXFLAGS -Wall -D_DEBUG"
25 COMPOPSTR="debugging $COMPOPSTR"
26 OPTION_DEBUG="yes"
27 else
28 @@ -114,7 +114,7 @@ if test "$enable_profile" = "yes" ; then
29 fi
30 else
31 if test "$GCC" = "yes" ; then
32 - CXXFLAGS="$CXXFLAGS -O3 -ffast-math -fno-exceptions -fomit-frame-pointer"
33 + CXXFLAGS="$CXXFLAGS -ffast-math -fno-exceptions -fomit-frame-pointer"
34 fi
35 AC_MSG_RESULT([no])
36 profiling=no