diff options
author | Maurice van der Pot <griffon26@gentoo.org> | 2006-02-14 18:38:33 +0000 |
---|---|---|
committer | Maurice van der Pot <griffon26@gentoo.org> | 2006-02-14 18:38:33 +0000 |
commit | 7270dad55ca35b898450655c1bcb753a0634314c (patch) | |
tree | aeedb72749a542c9a271691d0d4e0bec03f24c15 /net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild | |
parent | Port over to modular X. (diff) | |
download | gentoo-2-7270dad55ca35b898450655c1bcb753a0634314c.tar.gz gentoo-2-7270dad55ca35b898450655c1bcb753a0634314c.tar.bz2 gentoo-2-7270dad55ca35b898450655c1bcb753a0634314c.zip |
Filtering out -fstack-protector because of bug #115285
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild')
-rw-r--r-- | net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild b/net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild index 803d4ad0f848..8c617ce2cc6e 100644 --- a/net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild +++ b/net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild,v 1.1 2005/03/04 17:55:01 griffon26 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/tpop3d/tpop3d-1.5.3-r1.ebuild,v 1.2 2006/02/14 18:38:33 griffon26 Exp $ -inherit eutils +inherit eutils flag-o-matic DESCRIPTION="An extensible POP3 server with vmail-sql/MySQL support." HOMEPAGE="http://www.ex-parrot.com/~chris/tpop3d/" @@ -71,6 +71,10 @@ src_compile() { fi econf ${myconf} || die "./configure failed" + # Causes crash with "stack smashing attack" on connect, because of bug in + # SSP (bug #115285) + filter-flags -fstack-protector + # Add in custom CFLAGS to the makefile... sed -i "s/CFLAGS =/CFLAGS = ${CFLAGS} /" Makefile |