diff options
author | abs <abs@pkgsrc.org> | 2003-06-12 15:48:17 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2003-06-12 15:48:17 +0000 |
commit | b7e4d4cfe3df6b87348f6c97ab3222438f5a4e41 (patch) | |
tree | f62df15ed83e83a1fa639540431c5426f433796e | |
parent | 9d90ae57f6cdbb81a38e2ddac7e7be9aa49e1d47 (diff) | |
download | pkgsrc-b7e4d4cfe3df6b87348f6c97ab3222438f5a4e41.tar.gz |
if defined(USE_GCC3) include "../../lang/gcc3/buildlink2.mk"
Fixes gcc3 'Canadian' build issue (Can now find gcc_eh)
No change to non gcc3 compiled packages
-rw-r--r-- | audio/nas/Makefile | 6 | ||||
-rw-r--r-- | mail/imap-uw/Makefile | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/audio/nas/Makefile b/audio/nas/Makefile index 9976c3683ac..8a05b974303 100644 --- a/audio/nas/Makefile +++ b/audio/nas/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2003/06/02 01:21:35 jschauma Exp $ +# $NetBSD: Makefile,v 1.26 2003/06/12 15:48:17 abs Exp $ DISTNAME= nas-1.6.src PKGNAME= ${DISTNAME:S/.src//} @@ -45,4 +45,8 @@ PLIST_SRC+= ${PKGDIR}/PLIST.voxware CONF_FILES= ${EGDIR}/nasd.conf.eg ${PKG_SYSCONFDIR}/nasd.conf .endif +.if defined(USE_GCC3) +. include "../../lang/gcc3/buildlink2.mk" +.endif + .include "../../mk/bsd.pkg.mk" diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index 1bc60c503e2..65b77150d80 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.60 2003/06/08 20:26:33 grant Exp $ +# $NetBSD: Makefile,v 1.61 2003/06/12 15:48:18 abs Exp $ DISTNAME= imap-2002b PKGNAME= imap-uw-2002.2 @@ -139,4 +139,7 @@ do-install: .if !defined(IMAP_UW_NO_SSL) || ${IMAP_UW_NO_SSL} != "YES" .include "../../security/openssl/buildlink2.mk" .endif +.if defined(USE_GCC3) +. include "../../lang/gcc3/buildlink2.mk" +.endif .include "../../mk/bsd.pkg.mk" |