Fri Jan 7 23:52:42 2011 UTC ()
Pull up following revision(s) (requested by joerg in ticket #1432):
	gnu/lib/libstdc++-v3_4/Makefile: revision 1.5
Explicitly link libstdc++ against libm as found by Arnaud Lacombe.
Explicitly link libstdc++ against libm as found by Arnaud Lacombe.
Explicitly link libstdc++ against libm as found by Arnaud Lacombe.


(riz)
diff -r1.3.24.2 -r1.3.24.3 src/gnu/lib/libstdc++-v3_4/Makefile

cvs diff -r1.3.24.2 -r1.3.24.3 src/gnu/lib/libstdc++-v3_4/Attic/Makefile (expand / switch to unified diff)

--- src/gnu/lib/libstdc++-v3_4/Attic/Makefile 2010/11/27 21:12:23 1.3.24.2
+++ src/gnu/lib/libstdc++-v3_4/Attic/Makefile 2011/01/07 23:52:42 1.3.24.3
@@ -1,21 +1,24 @@ @@ -1,21 +1,24 @@
1# $NetBSD: Makefile,v 1.3.24.2 2010/11/27 21:12:23 riz Exp $ 1# $NetBSD: Makefile,v 1.3.24.3 2011/01/07 23:52:42 riz Exp $
2 2
3REQUIRETOOLS= yes 3REQUIRETOOLS= yes
4NOLINT= # defined 4NOLINT= # defined
5 5
6.include <bsd.own.mk> 6.include <bsd.own.mk>
7 7
8LIB= stdc++ 8LIB= stdc++
 9LDADD= -lgcc_s
 10
 11LIBDPLIBS+= m ${.CURDIR}/../../../lib/libm
9 12
10.if exists(${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk) && ${MKGCC} != "no" 13.if exists(${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk) && ${MKGCC} != "no"
11.include "${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk" 14.include "${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk"
12 15
13SHLIB_MAJOR= 6 16SHLIB_MAJOR= 6
14SHLIB_MINOR= 0 17SHLIB_MINOR= 0
15 18
16SUBDIR= include 19SUBDIR= include
17 20
18INCS= c++config.h 21INCS= c++config.h
19INCSDIR= /usr/include/g++ 22INCSDIR= /usr/include/g++
20 23
21.include "${.CURDIR}/../libsupc++4/Makefile.common" 24.include "${.CURDIR}/../libsupc++4/Makefile.common"