From owner-freebsd-ports@freebsd.org Wed Jul 12 17:22:01 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9B4FD9E7F7 for ; Wed, 12 Jul 2017 17:22:01 +0000 (UTC) (envelope-from se@freebsd.org) Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout00.t-online.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D8726F9CF for ; Wed, 12 Jul 2017 17:22:01 +0000 (UTC) (envelope-from se@freebsd.org) Received: from fwd21.aul.t-online.de (fwd21.aul.t-online.de [172.20.27.66]) by mailout01.t-online.de (Postfix) with SMTP id 7960842C85BC for ; Wed, 12 Jul 2017 19:21:53 +0200 (CEST) Received: from Stefans-MBP-2.fritz.box (V8OYW0Zb8hoC6ivfBpwlQteB32CYcTfEDgnUTIzigvQkTMThHMPaWalnWIKouGrw30@[84.154.125.175]) by fwd21.t-online.de with (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384 encrypted) esmtp id 1dVLKY-1wuqMS0; Wed, 12 Jul 2017 19:21:42 +0200 Subject: Re: make install for print/texinfo fails on -CURRENT To: freebsd-ports@freebsd.org References: <20170710190004.GE96529@rancor.immure.com> <1596485265.85516.1499779591107@office.mailbox.org> <20170711134717.GL96529@rancor.immure.com> <3334253.jqyq3Qq0X5@dragon.local> From: Stefan Esser Message-ID: Date: Wed, 12 Jul 2017 19:21:41 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <3334253.jqyq3Qq0X5@dragon.local> Content-Type: text/plain; charset=windows-1252 Content-Language: en-GB Content-Transfer-Encoding: 7bit X-ID: V8OYW0Zb8hoC6ivfBpwlQteB32CYcTfEDgnUTIzigvQkTMThHMPaWalnWIKouGrw30 X-TOI-MSGID: 3b54559e-5c15-42c1-9626-ce13e986f290 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jul 2017 17:22:01 -0000 Am 12.07.17 um 18:11 schrieb David Naylor: > On Tuesday, 11 July 2017 08:47:17 Bob Willcox wrote: >> Hmm, I just tried running synth on my test system again (this is the system >> that I successfully built and install texinfo on just a bit ago) and synth >> still fails with the same build errors as before. I'm not all that familiar >> with synth, but it appears that it may be working with some old stuff. > > Hi > > (Replying to a random email) > > I've encountered the exact same issue while building the i386 packages for > wine. Once I forced a rebuild of _all_ texinfo dependencies, installation > worked. > > I suspect an ABI change in -CURRENT that broke a dependency (sounds like perl > based on the thread). I had a problem with subversion after the upgrade to 1.9.6, and this was due to an incompatibility with the apr library, which had not been rebuilt for some time. Seems that this is fall-out from the ino64 changes. Seems that while symbol versioning allows old libraries to access struct stat as it was before the change, this struct stat passed to a freshly built binary (or library) by reference will cause obvious failures. So, if you compile any port after the ino64 change, better make sure that all referenced libraries (that operate on struct stat and might pass such a struct to a fresh binary) have been rebuilt before. As long as binary packages are built on a pre-ino64 machine, the resulting packages ought to work on any -CURRENT system. But if you build any port that references a library installed by such a package, you risk mixing different versions of struct stat. This will continue to be a problem as long as the -CURRENT package builders are pre-ino64. If the package builders are upgraded to support ino64, all ports that call stat() (or other functions with call signature affected by ino64) should have PORTREVISION bumped, as should all ports depending on them. Regards, STefan