diff options
author | danfe <danfe@FreeBSD.org> | 2015-10-07 17:42:56 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2015-10-07 17:42:56 +0800 |
commit | 8a58ea7fc5d8c2cb4a5b59a3ca38d42aa6ea8fcb (patch) | |
tree | a3c940e647db7c569939c6a977aeca8df55b3db0 /graphics/openshadinglanguage | |
parent | eb70ae9b9d1a873ccc66dbc7f434edafed2a1eaa (diff) | |
download | freebsd-ports-gnome-8a58ea7fc5d8c2cb4a5b59a3ca38d42aa6ea8fcb.tar.gz freebsd-ports-gnome-8a58ea7fc5d8c2cb4a5b59a3ca38d42aa6ea8fcb.tar.zst freebsd-ports-gnome-8a58ea7fc5d8c2cb4a5b59a3ca38d42aa6ea8fcb.zip |
- Our LLVM ports are built with RTTI support, so it's safe to enable RTTI
in OSL as well; this is required for e.g. `graphics/appleseed'
- Remove BROKEN on 9.x statement that was added in r390561 for a previous
version and was not removed alongside with 1.6.6 update (it builds fine)
Approved by: maintainer
Diffstat (limited to 'graphics/openshadinglanguage')
-rw-r--r-- | graphics/openshadinglanguage/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/graphics/openshadinglanguage/Makefile b/graphics/openshadinglanguage/Makefile index 7db4d7ef5128..464d39695d75 100644 --- a/graphics/openshadinglanguage/Makefile +++ b/graphics/openshadinglanguage/Makefile @@ -18,13 +18,12 @@ LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ libOpenImageIO.so:${PORTSDIR}/graphics/openimageio RUN_DEPENDS= llvm-config34:${PORTSDIR}/devel/llvm34 -BROKEN_FreeBSD_9= does not build - USE_GITHUB= yes GH_ACCOUNT= imageworks GH_PROJECT= OpenShadingLanguage -CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config34" +CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config34" \ + -DENABLERTTI:BOOL=ON USE_LDCONFIG= yes USES= bison cmake:outsource |