From owner-svn-ports-all@FreeBSD.ORG Thu Jul 24 12:10:48 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AC96FE8; Thu, 24 Jul 2014 12:10:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78AAF2966; Thu, 24 Jul 2014 12:10:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6OCAmGk001003; Thu, 24 Jul 2014 12:10:48 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6OCAmUY001001; Thu, 24 Jul 2014 12:10:48 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201407241210.s6OCAmUY001001@svn.freebsd.org> From: Alexey Dokuchaev Date: Thu, 24 Jul 2014 12:10:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362789 - head/graphics/luxrender X-SVN-Group: ports-head 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.18 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: Thu, 24 Jul 2014 12:10:48 -0000 Author: danfe Date: Thu Jul 24 12:10:47 2014 New Revision: 362789 URL: http://svnweb.freebsd.org/changeset/ports/362789 QAT: https://qat.redports.org/buildarchive/r362789/ Log: Since v1.55, Boost is built with a modern compiler, which is known to break linking with code built with our legacy GCC v4.2. Switch to dynamic linking for Boost libraries as a work-around for infamous "local symbol discarded in section `.text...' from some_static_lib.a(some_object.o)" errors. Reported by: pkg-fallout Modified: head/graphics/luxrender/Makefile Modified: head/graphics/luxrender/Makefile ============================================================================== --- head/graphics/luxrender/Makefile Thu Jul 24 12:02:32 2014 (r362788) +++ head/graphics/luxrender/Makefile Thu Jul 24 12:10:47 2014 (r362789) @@ -53,6 +53,8 @@ post-patch: ${LUXRAYS_WRKSRC}/samples/smallluxgpu4/smallluxgpu.h \ ${WRKSRC}/core/osfunc.h \ ${WRKSRC}/shapes/mikktspace/weldmesh.c + @${REINPLACE_CMD} -e '/^set(Boost_USE_STATIC_LIBS/s,ON,OFF,' \ + ${LUXRAYS_WRKSRC}/cmake/Dependencies.cmake pre-configure: cd ${LUXRAYS_WRKSRC} && ${SETENV} ${CMAKE_ENV} ${CMAKE_BIN} \