summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé María Alonso <nimiux@gentoo.org>2012-11-27 18:55:06 +0000
committerJosé María Alonso <nimiux@gentoo.org>2012-11-27 18:55:06 +0000
commit03844ea1ee0fdd6e26c8e4bdce76c2d7804de4b1 (patch)
tree6c7d238b322ce17fcea36a67899dcf5e7611338c /net-irc
parentadded err() to kcompat.h as has been removed from usb.h in kernels >=3.5, fix... (diff)
downloadgentoo-2-03844ea1ee0fdd6e26c8e4bdce76c2d7804de4b1.tar.gz
gentoo-2-03844ea1ee0fdd6e26c8e4bdce76c2d7804de4b1.tar.bz2
gentoo-2-03844ea1ee0fdd6e26c8e4bdce76c2d7804de4b1.zip
Removed -pipe and -Wall flags wrt to bug #443974
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key D628E536)
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/inspircd/ChangeLog7
-rw-r--r--net-irc/inspircd/files/inspircd-2.0.9-fix-path-builds.patch4
2 files changed, 8 insertions, 3 deletions
diff --git a/net-irc/inspircd/ChangeLog b/net-irc/inspircd/ChangeLog
index 59bd75e4b684..a871e07ac07d 100644
--- a/net-irc/inspircd/ChangeLog
+++ b/net-irc/inspircd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-irc/inspircd
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.60 2012/11/20 20:08:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.61 2012/11/27 18:55:06 nimiux Exp $
+
+ 27 Nov 2012; Chema Alonso <nimiux@gentoo.org>
+ files/inspircd-2.0.9-fix-path-builds.patch:
+ Removed -pipe and -Wall flags to respect user's choice wrt bug #443974.
+ Thanks to ago for reporting
20 Nov 2012; Agostino Sarubbo <ago@gentoo.org> inspircd-2.0.9.ebuild:
Stable for x86, wrt bug #443966
diff --git a/net-irc/inspircd/files/inspircd-2.0.9-fix-path-builds.patch b/net-irc/inspircd/files/inspircd-2.0.9-fix-path-builds.patch
index c42df687e3e3..f679d7a491ed 100644
--- a/net-irc/inspircd/files/inspircd-2.0.9-fix-path-builds.patch
+++ b/net-irc/inspircd/files/inspircd-2.0.9-fix-path-builds.patch
@@ -64,7 +64,7 @@ diff -Nur a/make/template/main.mk b/make/template/main.mk
BUILDPATH = @BUILD_DIR@
SOCKETENGINE = @SOCKETENGINE@
-CXXFLAGS = -pipe -fPIC -DPIC
-+MYCXXFLAGS = -pipe -fPIC -DPIC
++MYCXXFLAGS = -fPIC -DPIC
LDLIBS = -pthread -lstdc++
LDFLAGS =
CORELDFLAGS = -rdynamic -L. $(LDFLAGS)
@@ -76,7 +76,7 @@ diff -Nur a/make/template/main.mk b/make/template/main.mk
+ MYCXXFLAGS += -Wshadow
@ELSE
- CXXFLAGS += -pedantic -Woverloaded-virtual -Wshadow -Wformat=2 -Wmissing-format-attribute -Wall
-+ MYCXXFLAGS += -pedantic -Woverloaded-virtual -Wshadow -Wformat=2 -Wmissing-format-attribute -Wall
++ MYCXXFLAGS += -pedantic -Woverloaded-virtual -Wshadow -Wformat=2 -Wmissing-format-attribute
@ENDIF