blob: ab4e6efebabdda0437879188ea3d7768fbd775f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: toolset.mk,v 1.1 2005/02/26 22:48:35 jmmv Exp $
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mgcc)
BOOST_TOOLSET= gcc
.elif !empty(PKGSRC_COMPILER:Mmipspro*)
BOOST_TOOLSET= mipspro
.elif !empty(PKGSRC_COMPILER:Msunpro)
BOOST_TOOLSET= sunpro
.else
BROKEN+= "Unknown compiler ${PKGSRC_COMPILER} for Boost"
.endif
|