From 80a63563f0306ebcfc5654f302f00b7970fbe103 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Mon, 21 Nov 2016 06:52:50 +0000 Subject: [PATCH] graphics/appleseed: unbreak build with boost 1.62 on i386 ../appleseed/libappleseed.so: undefined reference to `boost::atomics::detail::lockpool::scoped_lock::scoped_lock(void const volatile*)' ../appleseed/libappleseed.so: undefined reference to `boost::atomics::detail::lockpool::scoped_lock::~scoped_lock()' c++: error: linker command failed with exit code 1 (use -v to see invocation) PR: 214476 Approved by: portmgr blanket --- graphics/appleseed/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/graphics/appleseed/Makefile b/graphics/appleseed/Makefile index 02137713123a..2535479e42cc 100644 --- a/graphics/appleseed/Makefile +++ b/graphics/appleseed/Makefile @@ -3,6 +3,7 @@ PORTNAME= appleseed DISTVERSION= 1.5.2-beta +PORTREVISION= 1 CATEGORIES= graphics MAINTAINER= danfe@FreeBSD.org @@ -24,6 +25,7 @@ ONLY_FOR_ARCHS_REASON= not ported to it yet USES= cmake:outsource USE_QT4= moc_build qmake_build rcc_build uic_build opengl +LDFLAGS+= -lboost_atomic CMAKE_ARGS= -DUSE_STATIC_BOOST:BOOL=OFF -DUSE_STATIC_OIIO:BOOL=OFF \ -DUSE_STATIC_OSL:BOOL=OFF -DWITH_DOXYGEN:BOOL=OFF \ -DWITH_HEADERS:BOOL=OFF -DWITH_PYTHON:BOOL=OFF \