From owner-svn-ports-all@freebsd.org Wed Oct 31 15:37:08 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 51D3310DD302; Wed, 31 Oct 2018 15:37:08 +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 019C87B470; Wed, 31 Oct 2018 15:37:08 +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 D741A670E; Wed, 31 Oct 2018 15:37:07 +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 w9VFAmum049836; Wed, 31 Oct 2018 15:10:48 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9VFAmfS049835; Wed, 31 Oct 2018 15:10:48 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810311510.w9VFAmfS049835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 31 Oct 2018 15:10:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483590 - head/print/lyx/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/print/lyx/files X-SVN-Commit-Revision: 483590 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.29 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, 31 Oct 2018 15:37:08 -0000 Author: jbeich Date: Wed Oct 31 15:10:44 2018 New Revision: 483590 URL: https://svnweb.freebsd.org/changeset/ports/483590 Log: print/lyx: unbreak with boost 1.69 FileName.cpp:77:32: error: too few template arguments for class template 'crc_table_t' template struct boost::detail::crc_table_t<32, 0x04C11DB7, true>; ^ /usr/local/include/boost/crc.hpp:1009:11: note: template is declared here class crc_table_t ^ PR: 232525 Suggested by: upstream Added: head/print/lyx/files/patch-boost-1.69 (contents, props changed) Added: head/print/lyx/files/patch-boost-1.69 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/lyx/files/patch-boost-1.69 Wed Oct 31 15:10:44 2018 (r483590) @@ -0,0 +1,20 @@ +https://www.lyx.org/trac/ticket/11349 + +--- src/support/FileName.cpp.orig 2018-02-25 00:11:18 UTC ++++ src/support/FileName.cpp +@@ -67,15 +67,6 @@ + using namespace std; + using namespace lyx::support; + +-// OK, this is ugly, but it is the only workaround I found to compile +-// with gcc (any version) on a system which uses a non-GNU toolchain. +-// The problem is that gcc uses a weak symbol for a particular +-// instantiation and that the system linker usually does not +-// understand those weak symbols (seen on HP-UX, tru64, AIX and +-// others). Thus we force an explicit instanciation of this particular +-// template (JMarc) +-template struct boost::detail::crc_table_t<32, 0x04C11DB7, true>; +- + namespace lyx { + namespace support { +