Subject: Re: courier-imap build failure
To: Marton Fabo <morton@eik.bme.hu>
From: Chuck Silvers <chuq@chuq.com>
List: tech-pkg
Date: 10/24/2005 06:18:04
--k+w/mQv8wyuph6w0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

On Mon, Oct 24, 2005 at 05:59:44AM -0700, Chuck Silvers wrote:
> hi,
> 
> looks like libstdc++ is missing a shared library dependency.
> the attached patch should fix it.  (apply the patch and
> rebuild src/gnu/lib/libstdc++-v3.)
> 
> -Chuck

er, here's the patch.

-Chuck

--k+w/mQv8wyuph6w0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="diff.libstdc++"

Index: src/gnu/lib/libstdc++-v3/Makefile
===================================================================
RCS file: /cvsroot/src/gnu/lib/libstdc++-v3/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- src/gnu/lib/libstdc++-v3/Makefile	21 Dec 2003 07:05:25 -0000	1.6
+++ src/gnu/lib/libstdc++-v3/Makefile	24 Oct 2005 12:56:55 -0000
@@ -10,6 +10,8 @@ LIB=		stdc++
 .if exists(${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk) && ${MKGCC} != "no"
 .include "${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk"
 
+LIBDPLIBS=	m ${.CURDIR}/../../../lib/libm
+
 SHLIB_MAJOR=	5
 SHLIB_MINOR=	0
 

--k+w/mQv8wyuph6w0--