diff options
author | 2002-05-26 09:33:52 +0000 | |
---|---|---|
committer | 2002-05-26 09:33:52 +0000 | |
commit | e498c679d05713069001f4763d36d5192fa3b5bb (patch) | |
tree | c2376c1ca4aa1e4ca72c0e73d1a00df5e8bcc1d2 /sys-apps/iproute2 | |
parent | Removed galeon mask (diff) | |
download | historical-e498c679d05713069001f4763d36d5192fa3b5bb.tar.gz historical-e498c679d05713069001f4763d36d5192fa3b5bb.tar.bz2 historical-e498c679d05713069001f4763d36d5192fa3b5bb.zip |
Fixed GCC 3.1 support
Diffstat (limited to 'sys-apps/iproute2')
-rw-r--r-- | sys-apps/iproute2/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/iproute2/iproute2-2.4.7-r1.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sys-apps/iproute2/ChangeLog b/sys-apps/iproute2/ChangeLog index 313a16446b70..b6ef96568373 100644 --- a/sys-apps/iproute2/ChangeLog +++ b/sys-apps/iproute2/ChangeLog @@ -1,12 +1,16 @@ # ChangeLog for sys-apps/iproute2 # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.2 2002/02/08 05:37:03 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.3 2002/05/26 09:33:14 prez Exp $ *iproute2-2.4.7-r1 (7 Feb 2002) + 26 May 2002: Preston A. Elder <prez@gentoo.org>: Removed -Werror from the + makefile, which allows gcc 3.1 to compile. + 7 Feb 2002; Daniel Robbins <drobbins@gentoo.org>: Added a dead-route-fix.diff to close bug #595 (see it for a description of the problem it fixes) + *iproute2-2.4.7 (1 Feb 2002) 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : diff --git a/sys-apps/iproute2/iproute2-2.4.7-r1.ebuild b/sys-apps/iproute2/iproute2-2.4.7-r1.ebuild index 3e75dc04ea13..e528f5368a46 100644 --- a/sys-apps/iproute2/iproute2-2.4.7-r1.ebuild +++ b/sys-apps/iproute2/iproute2-2.4.7-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.4.7-r1.ebuild,v 1.1 2002/02/08 05:37:03 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.4.7-r1.ebuild,v 1.2 2002/05/26 09:33:14 prez Exp $ S=${WORKDIR}/iproute2 DESCRIPTION="Kernel 2.4 routing and traffic control utilities" @@ -33,7 +33,8 @@ src_unpack() { # they seem ok here when i compile with optimisations, so im reenabling # this patch. if theres problems, will glady change back. ~woodchip cp Makefile Makefile.orig - sed -e "s/-O2/${CFLAGS}/g" Makefile.orig > Makefile + sed -e "s/-O2/${CFLAGS}/g" \ + -e "s/-Werror//g" Makefile.orig > Makefile # this next thing is required to enable diffserv (ATM support doesn't compile right now) # cp Config Config.orig |