blob: 6a0d4c56edbf5167bfb71b223d020cd899b6415a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: toolset.mk,v 1.7 2013/12/10 16:12:49 jperkin Exp $
.if !empty(PKGSRC_COMPILER:Mgcc)
. if ${OPSYS} == "Darwin"
BOOST_TOOLSET= darwin
. else
BOOST_TOOLSET= gcc
. endif
.elif !empty(PKGSRC_COMPILER:Mclang)
BOOST_TOOLSET= clang
.elif !empty(PKGSRC_COMPILER:Mmipspro*)
BOOST_TOOLSET= mipspro
.elif !empty(PKGSRC_COMPILER:Msunpro)
BOOST_TOOLSET= sunpro
.else
PKG_FAIL_REASON+= "Unknown compiler ${PKGSRC_COMPILER} for Boost."
.endif
|