Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 15374 Details for
Bug 23253
procmail stuck on strstr() benchmark with gcc-3.3
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Work around for -finline-functions bug
procmail-3.22-r6.ebuild (text/plain), 1.87 KB, created by
Douglas Russell (RETIRED)
on 2003-08-02 11:50:41 UTC
(
hide
)
Description:
Work around for -finline-functions bug
Filename:
MIME Type:
Creator:
Douglas Russell (RETIRED)
Created:
2003-08-02 11:50:41 UTC
Size:
1.87 KB
patch
obsolete
># Copyright 1999-2003 Gentoo Technologies, Inc. ># Distributed under the terms of the GNU General Public License v2 ># $Header: /home/cvsroot/gentoo-x86/net-mail/procmail/procmail-3.22-r6.ebuild,v 1.2 2003/07/21 14:59:08 tester Exp $ > >S=${WORKDIR}/${P} >DESCRIPTION="Mail delivery agent/filter" >SRC_URI="http://www.procmail.org/${P}.tar.gz" >HOMEPAGE="http://www.procmail.org/" > >IUSE="" > >DEPEND="virtual/glibc > virtual/mta" > >RDEPEND="virtual/glibc" > >PROVIDE="virtual/mda" > >SLOT="0" >LICENSE="Artistic | GPL-2" >KEYWORDS="x86 ppc sparc alpha arm hppa amd64" > >inherit flag-o-matic eutils >filter-flags "-finline-functions" >replace-flags "-O3" "-O2 -frename-registers" > >src_compile() { > > cp Makefile Makefile.orig ># Added a -O2 at the end of CFLAGS to overcome what seems to be a ># gcc-3.1 strstr() bug with more aggressive optimization flags ># The order of the flags matters as the last flag passed clobbers ># the first flag. i.e. if -O2 was placed before ${CFLAGS}, ># whatever optimization that is in ${CFLAGS} would clobber -O2 ># sed -e "s:CFLAGS0 = -O:CFLAGS0 = ${CFLAGS} -O2:" \ > > sed -e "s:LOCKINGTEST=__defaults__:#LOCKINGTEST=__defaults__:" \ > -e "s:#LOCKINGTEST=/tmp:LOCKINGTEST=/tmp:" Makefile.orig > Makefile > > if [ -z "`use mbox`" ]; > then > echo "# Use maildir-style mailbox in user's home directory" > ${S}/procmailrc > echo 'DEFAULT=$HOME/.maildir/' >> ${S}/procmailrc > cd ${S} > patch -p1 <${FILESDIR}/gentoo-maildir2.diff > > else > echo '# Use mbox-style mailbox in /var/spool/mail' > ${S}/procmail > echo 'DEFAULT=/var/spool/mail/$LOGNAME' >> ${S}/procmailrc > fi > > emake || die >} > >src_install () { > cd ${S}/new > insinto /usr/bin > insopts -m 6755 > doins procmail > > insopts -m 2755 > doins lockfile > > dobin formail mailstat > > doman *.1 *.5 > > cd ${S} > dodoc Artistic COPYING FAQ FEATURES HISTORY INSTALL KNOWN_BUGS README > > insinto /etc > doins procmailrc > > docinto examples > dodoc examples/* >} >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 23253
:
15374
|
15376
|
15442
|
15443
|
15541
|
15542
|
15573
|
15574