diff options
author | skrll <skrll@pkgsrc.org> | 2002-03-26 16:31:27 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2002-03-26 16:31:27 +0000 |
commit | 8186bff76ab50b957df6116fcb0e36a3d8da5dba (patch) | |
tree | f22ff979e612f3f5512bc114140f5d6212af72f5 /mk | |
parent | d50aec5c421c5f0e2693803af8d16299b375929a (diff) | |
download | pkgsrc-8186bff76ab50b957df6116fcb0e36a3d8da5dba.tar.gz |
Fix a bug when inferring the CXX tag which meant that for certain
libraries the following could occur
- a.out platforms: c++rt0.o would be missing and therefore
global contstructors would not work.
- ELF platforms libstdc++ and libm would not be explicitly
linked in.
This affected notably libqt and explains the build failure of kdelibs2 on
arm32.
Bump PKGREVISION and require it.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 1c6e1d3c054..baabfd3bca5 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.953 2002/03/24 14:06:22 hubertf Exp $ +# $NetBSD: bsd.pkg.mk,v 1.954 2002/03/26 16:31:27 skrll Exp $ # # This file is in the public domain. # @@ -248,7 +248,7 @@ LIBS+= -L${LOCALBASE}/lib -lintl CONFIGURE_ENV+= LIBS="${LIBS}" .endif -LIBTOOL_REQD= 1.4.20010614nb6 +LIBTOOL_REQD= 1.4.20010614nb8 .if defined(USE_LIBTOOL) LIBTOOL= ${LOCALBASE}/bin/libtool . if defined(USE_LTDL) |