From owner-svn-ports-all@freebsd.org Wed Apr 18 08:04:06 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89956F9C76F; Wed, 18 Apr 2018 08:04:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 632DA84431; Wed, 18 Apr 2018 08:04:04 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5BD9D18529; Wed, 18 Apr 2018 08:04:04 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3I844o9003944; Wed, 18 Apr 2018 08:04:04 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3I844vL003943; Wed, 18 Apr 2018 08:04:04 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201804180804.w3I844vL003943@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 18 Apr 2018 08:04:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467687 - head/graphics/caffe X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/graphics/caffe X-SVN-Commit-Revision: 467687 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Apr 2018 08:04:06 -0000 Author: jbeich Date: Wed Apr 18 08:04:04 2018 New Revision: 467687 URL: https://svnweb.freebsd.org/changeset/ports/467687 Log: graphics/caffe: unbreak with boost 1.67 /usr/local/bin/ld: cannot find -lboost_python clang++: error: linker command failed with exit code 1 (use -v to see invocation) gmake[1]: *** [Makefile:508: python/caffe/_caffe.so] Error 1 PR: 227427 Reported by: antoine (via exp-run) Modified: head/graphics/caffe/Makefile (contents, props changed) Modified: head/graphics/caffe/Makefile ============================================================================== --- head/graphics/caffe/Makefile Wed Apr 18 07:44:00 2018 (r467686) +++ head/graphics/caffe/Makefile Wed Apr 18 08:04:04 2018 (r467687) @@ -43,6 +43,7 @@ USE_PYTHON= flavors cython CXXFLAGS+= -DGTEST_USE_OWN_TR1_TUPLE=1 LDFLAGS+= -DGTEST_USE_OWN_TR1_TUPLE=1 LDFLAGS+= -lboost_thread +MAKE_ENV+= PYTHON_LIBRARIES="${PY_BOOST_LIB} ${PYTHON_VERSION}" MAKE_ARGS+= DISTRIBUTE_DIR=${STAGEDIR}${PREFIX} ALL_TARGET= all py INSTALL_TARGET= dist