diff options
author | brooks <brooks@FreeBSD.org> | 2013-11-03 08:23:29 +0800 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2013-11-03 08:23:29 +0800 |
commit | f1c2147c464ba73b4cf71a850210f153ae035151 (patch) | |
tree | 9d2877431846332cbfebc77c5fadbecf2a8ef0f3 /graphics | |
parent | 61f9d2d600d5b034c2ad2c1ec87a78b64f1a965d (diff) | |
download | freebsd-ports-gnome-f1c2147c464ba73b4cf71a850210f153ae035151.tar.gz freebsd-ports-gnome-f1c2147c464ba73b4cf71a850210f153ae035151.tar.zst freebsd-ports-gnome-f1c2147c464ba73b4cf71a850210f153ae035151.zip |
Unconditionally depend on clang32 so we're using a clang that matches
our llvm-as.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/openshadinglanguage/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/graphics/openshadinglanguage/Makefile b/graphics/openshadinglanguage/Makefile index 9f22b81497f7..c200581d3297 100644 --- a/graphics/openshadinglanguage/Makefile +++ b/graphics/openshadinglanguage/Makefile @@ -11,12 +11,12 @@ COMMENT= Advanced shading language for production GI renderers LICENSE= BSD -BUILD_DEPENDS= llvm>=3.1:${PORTSDIR}/devel/llvm \ +BUILD_DEPENDS= llvm-config32:${PORTSDIR}/devel/llvm32 \ flex>=2.5.37:${PORTSDIR}/textproc/flex LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs \ IlmImf:${PORTSDIR}/graphics/OpenEXR \ OpenImageIO:${PORTSDIR}/graphics/openimageio -RUN_DEPENDS= llvm>=3.1:${PORTSDIR}/devel/llvm +RUN_DEPENDS= llvm-config32:${PORTSDIR}/devel/llvm32 USE_GITHUB= yes GH_ACCOUNT= imageworks @@ -27,6 +27,7 @@ GH_COMMIT= 18671dc WRKSRC= ${WRKDIR}/imageworks-OpenShadingLanguage-${GH_COMMIT}/src CMAKE_ARGS= -DFLEX_EXECUTABLE:STRING=${LOCALBASE}/bin/flex \ + -DLLVM_CONFIG:STRING=${LOCALBASE}/bin/llvm-config32 \ -DUSE_TBB:BOOL=OFF CXXFLAGS+= -I${LOCALBASE}/include/flex USE_LDCONFIG= yes @@ -35,9 +36,7 @@ USES= bison cmake:outsource NO_STAGE= yes .include <bsd.port.pre.mk> -.if ${OSVERSION} < 900000 -BUILD_DEPENDS+= clang:${PORTSDIR}/lang/clang -.endif +BUILD_DEPENDS+= clang32:${PORTSDIR}/lang/clang32 .if ${ARCH} == i386 CFLAGS+= -march=i586 |