From owner-freebsd-office@FreeBSD.ORG Sun Nov 30 21:00:10 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28079FD for ; Sun, 30 Nov 2014 21:00:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 F38E31F3 for ; Sun, 30 Nov 2014 21:00:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sAUL09me077142 for ; Sun, 30 Nov 2014 21:00:09 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201411302100.sAUL09me077142@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: office@FreeBSD.org Subject: Problem reports for office@FreeBSD.org that need special attention X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Date: Sun, 30 Nov 2014 21:00:09 +0000 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2014 21:00:10 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 192557 | [patch] upgrade editors/openoffice-devel to SVN r 1 problems total for which you should take action. From owner-freebsd-office@FreeBSD.ORG Sun Nov 30 21:25:32 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80C037B7 for ; Sun, 30 Nov 2014 21:25:32 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 4EBFA6E6 for ; Sun, 30 Nov 2014 21:25:32 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sAULPWOq082621 for ; Sun, 30 Nov 2014 21:25:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: office@FreeBSD.org Subject: [Bug 188088] editors/openoffice-4 4.0.1 crash on format cells Date: Sun, 30 Nov 2014 21:25:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: truckman@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: office@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2014 21:25:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=188088 Don Lewis changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Closed |Open Resolution|FIXED |--- --- Comment #13 from Don Lewis --- It could be a race condition, or it could be a memory use after free bug. On HEAD, malloc() debugging is enabled, which overwrites freed memory with garbage. If the app tries to use some data structure that has been freed, then it will get garbage and might crash. On RELEASE, malloc() debugging is disabled. When the app frees some memory, malloc() might call madvise(..., MADV_FREE). In some cases the memory contents might be preserved, but in other cases the memory might get zeroed. From madvise(2): MADV_FREE Gives the VM system the freedom to free pages, and tells the system that information in the specified page range is no longer important. This is an efficient way of allowing malloc(3) to free pages anywhere in the address space, while keeping the address space valid. The next time that the page is referenced, the page might be demand zeroed, or might contain the data that was there before the MADV_FREE call. References made to that address space range will not make the VM system page the information back in from backing store until the page is modified again. What doesn't fit is that I'd expect the problem to crop up on a busy machine with a short of memory and have a better chance of working on an idle machine. I just looked more closely at stack trace in #10. Looks like a call to location 0 is triggering the SIGSEGV. Strange ... I'm reopening this PR. Unfortunately at the moment I can only test on an i386 machine running 8.4 since the hdd in my HEAD system croaked. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-office@FreeBSD.ORG Mon Dec 1 20:58:44 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1026EAE6 for ; Mon, 1 Dec 2014 20:58:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 E55607CE for ; Mon, 1 Dec 2014 20:58:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sB1KwhAW076536 for ; Mon, 1 Dec 2014 20:58:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: office@FreeBSD.org Subject: [Bug 195563] New: editors/openoffice-4 crashes upon PDF export Date: Mon, 01 Dec 2014 20:58:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: scf@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: office@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2014 20:58:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195563 Bug ID: 195563 Summary: editors/openoffice-4 crashes upon PDF export Product: Ports Tree Version: Latest Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: office@FreeBSD.org Reporter: scf@FreeBSD.org Assignee: office@FreeBSD.org Flags: maintainer-feedback?(office@FreeBSD.org) I am experiencing an issue with OpenOffice v4.1.1 (and earlier) when exporting PDF of a document on FreeBSD 10 but not 9. It crashes with a SIGSEGV. Even taking the package from 9 and running it on 10 crashes. This is on the same system too. I had thought it was an issue with another computer that had some quirkiness, but I found that it happened on this computer after upgrading to FreeBSD 10. To reproduce, create a document with a small amount of text such as "This is a test." and try to select "Export as PDF..." from File menu. Clicking the equivalent button results in a crash too. This does not get to the Export PDF dialog box. Stacktrace (minus debugging symbols): #0 0x0000000000000000 in ?? () #1 0x00000008012218af in __cxxabiv1::__dynamic_cast (src_ptr=0x81b054c10, src_type=0x805480200 , dst_type=0x80547f790 , src2dst=0) at ../../.././../gcc-4.8.3/libstdc++-v3/libsupc++/dyncast.cc:60 #2 0x000000080514a62e in Window::SetPosSizePixel(long, long, long, long, unsigned short) () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #3 0x000000080513daa2 in Window::SetOutputSizePixel(Size const&) () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #4 0x00000008051286c0 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #5 0x0000000805128a48 in TabDialog::StateChanged(unsigned short) () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #6 0x000000080513f840 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #7 0x000000080514b305 in Window::Show(unsigned char, unsigned short) () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #8 0x00000008050ee84f in Dialog::ImplStartExecuteModal() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #9 0x00000008050ee873 in Dialog::Execute() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #10 0x0000000803d3a067 in svt::OGenericUnoDialog::execute() () from /usr/local/openoffice-4.1.1/openoffice4/program/libsvt.so #11 0x000000080340b4ab in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #12 0x000000080340dfda in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #13 0x00000008034211dc in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #14 0x00000008034b4581 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #15 0x0000000803370d10 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #16 0x000000080337e4eb in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #17 0x000000080337ebcc in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #18 0x0000000809d587a8 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libfwk.so #19 0x00000008050ff682 in Menu::Select() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #20 0x00000008050fe136 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #21 0x00000008051562f5 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #22 0x000000080d286d97 in SalDisplay::DispatchInternalEvent() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvclplug_gen.so #23 0x000000080d02338a in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvclplug_gtk.so #24 0x000000080e242fc8 in g_main_context_dispatch () from /usr/local/lib/libglib-2.0.so.0 #25 0x000000080e24335e in ?? () from /usr/local/lib/libglib-2.0.so.0 #26 0x000000080e2433e4 in g_main_context_iteration () from /usr/local/lib/libglib-2.0.so.0 #27 0x000000080d022269 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvclplug_gtk.so #28 0x0000000804f937bd in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #29 0x0000000804f91466 in Application::Execute() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #30 0x0000000800f72ad6 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsofficeapp.so #31 0x0000000804f968a7 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #32 0x0000000804f96a06 in SVMain() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #33 0x0000000800f9423b in soffice_main () from /usr/local/openoffice-4.1.1/openoffice4/program/libsofficeapp.so #34 0x0000000000400deb in main () --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer office@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-office@FreeBSD.ORG Mon Dec 1 20:58:43 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B23E9AE4 for ; Mon, 1 Dec 2014 20:58:43 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 9328E7CC for ; Mon, 1 Dec 2014 20:58:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sB1Kwh64076530 for ; Mon, 1 Dec 2014 20:58:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: office@FreeBSD.org Subject: maintainer-feedback requested: [Bug 195563] editors/openoffice-4 crashes upon PDF export Date: Mon, 01 Dec 2014 20:58:43 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2014 20:58:43 -0000 Sean Farley has reassigned Bugzilla Automation 's request for maintainer-feedback to office@FreeBSD.= org: Bug 195563: editors/openoffice-4 crashes upon PDF export https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D195563 --- Description --- I am experiencing an issue with OpenOffice v4.1.1 (and earlier) when export= ing PDF of a document on FreeBSD 10 but not 9. It crashes with a SIGSEGV. Even taking the package from 9 and running it on 10 crashes. This is on the same system too. I had thought it was an issue with another computer that had s= ome quirkiness, but I found that it happened on this computer after upgrading to FreeBSD 10. To reproduce, create a document with a small amount of text such as "This i= s a test." and try to select "Export as PDF..." from File menu. Clicking the equivalent button results in a crash too. This does not get to the Export = PDF dialog box. Stacktrace (minus debugging symbols): #0 0x0000000000000000 in ?? () #1 0x00000008012218af in __cxxabiv1::__dynamic_cast (src_ptr=3D0x81b054c10, src_type=3D0x805480200 , dst_type=3D0x80547f790 , src2dst=3D0) at ../../.././../gcc-4.8.3/libstdc++-v3/libsupc++/dyncast.cc:60 #2 0x000000080514a62e in Window::SetPosSizePixel(long, long, long, long, unsigned short) () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #3 0x000000080513daa2 in Window::SetOutputSizePixel(Size const&) () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #4 0x00000008051286c0 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #5 0x0000000805128a48 in TabDialog::StateChanged(unsigned short) () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #6 0x000000080513f840 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #7 0x000000080514b305 in Window::Show(unsigned char, unsigned short) () fr= om /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #8 0x00000008050ee84f in Dialog::ImplStartExecuteModal() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #9 0x00000008050ee873 in Dialog::Execute() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #10 0x0000000803d3a067 in svt::OGenericUnoDialog::execute() () from /usr/local/openoffice-4.1.1/openoffice4/program/libsvt.so #11 0x000000080340b4ab in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #12 0x000000080340dfda in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #13 0x00000008034211dc in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #14 0x00000008034b4581 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #15 0x0000000803370d10 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #16 0x000000080337e4eb in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #17 0x000000080337ebcc in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsfx.so #18 0x0000000809d587a8 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libfwk.so #19 0x00000008050ff682 in Menu::Select() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #20 0x00000008050fe136 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #21 0x00000008051562f5 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #22 0x000000080d286d97 in SalDisplay::DispatchInternalEvent() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvclplug_gen.so #23 0x000000080d02338a in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvclplug_gtk.so #24 0x000000080e242fc8 in g_main_context_dispatch () from /usr/local/lib/libglib-2.0.so.0 #25 0x000000080e24335e in ?? () from /usr/local/lib/libglib-2.0.so.0 #26 0x000000080e2433e4 in g_main_context_iteration () from /usr/local/lib/libglib-2.0.so.0 #27 0x000000080d022269 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvclplug_gtk.so #28 0x0000000804f937bd in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #29 0x0000000804f91466 in Application::Execute() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #30 0x0000000800f72ad6 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libsofficeapp.so #31 0x0000000804f968a7 in ?? () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #32 0x0000000804f96a06 in SVMain() () from /usr/local/openoffice-4.1.1/openoffice4/program/libvcl.so #33 0x0000000800f9423b in soffice_main () from /usr/local/openoffice-4.1.1/openoffice4/program/libsofficeapp.so #34 0x0000000000400deb in main () --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer office@FreeBSD.org= From owner-freebsd-office@FreeBSD.ORG Tue Dec 2 19:08:25 2014 Return-Path: Delivered-To: office@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF6BAE25 for ; Tue, 2 Dec 2014 19:08:25 +0000 (UTC) Received: from smtp.rcn.com (smtp.rcn.com [69.168.97.78]) (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 78CE534B for ; Tue, 2 Dec 2014 19:08:24 +0000 (UTC) X_CMAE_Category: , , X-CNFS-Analysis: v=2.0 cv=J64oHXbS c=1 sm=1 a=PfRRqASh+22Lc+SRmnf6GA==:17 a=L9H7d07YOLsA:10 a=kj9zAlcOel0A:10 a=sIt-5M63AAAA:8 a=FP58Ms26AAAA:8 a=YlHCwauSzCOIc83Uv1IA:9 a=CjuIK1q_8ugA:10 a=PfRRqASh+22Lc+SRmnf6GA==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine X-Authed-Username: cm9iZXJ0aHVmZkByY24uY29t Authentication-Results: smtp01.rcn.cmh.synacor.com smtp.mail=roberthuff@rcn.com; spf=neutral; sender-id=neutral Received-SPF: neutral (smtp01.rcn.cmh.synacor.com: 209.6.231.137 is neither permitted nor denied by domain of rcn.com) Received: from [209.6.231.137] ([209.6.231.137:64116] helo=jerusalem.litteratus.org.litteratus.org) by smtp.rcn.com (envelope-from ) (ecelerity 3.6.2.43620 r(Platform:3.6.2.0)) with ESMTP id F7/06-42112-12E0E745; Tue, 02 Dec 2014 14:08:18 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <21630.3617.772937.691757@jerusalem.litteratus.org> Date: Tue, 2 Dec 2014 14:08:17 -0500 To: office@freebsd.org Subject: hunspell can't find distfile X-Mailer: VM 8.2.0b under 24.4.1 (amd64-portbld-freebsd10.1) Cc: roberthuff@rcn.com X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Dec 2014 19:08:25 -0000 Hello: This should be self-explanatory: huff@>> make clean ===> Cleaning for en-hunspell-7.1_1 huff@>> pwd /usr/ports/textproc/en-hunspell huff@>> make fetch ===> License BSD3CLAUSE LGPL3 accepted by the user ===> en-hunspell-7.1_1 depends on file: /usr/local/sbin/pkg - found => hunspell-en_CA-7.1-0.zip doesn't seem to exist in /usr/ports/distfiles/hunspell. => Attempting to fetch http://downloads.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://downloads.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://heanet.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://heanet.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://sunet.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://sunet.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://iweb.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://iweb.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://switch.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://switch.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://freefr.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://freefr.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://garr.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://garr.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://aarnet.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://aarnet.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://jaist.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://jaist.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://master.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://master.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://nchc.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://nchc.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://ncu.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://ncu.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Connection reset by peer => Attempting to fetch http://internode.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://internode.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://waix.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://waix.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://hivelocity.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip fetch: http://hivelocity.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip: Not Found => Attempting to fetch http://superb-dca3.dl.sourceforge.net/project/wordlist/Hunspell%20en_CA/7.1-0/hunspell-en_CA-7.1-0.zip ^Cfetch: transfer interrupted What's up? :-) Respectfully, Robert Huff From owner-freebsd-office@FreeBSD.ORG Wed Dec 3 23:48:00 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55EFB465; Wed, 3 Dec 2014 23:48:00 +0000 (UTC) Received: from beefy1.isc.freebsd.org (beefy1.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:38]) (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 343CC81; Wed, 3 Dec 2014 23:48:00 +0000 (UTC) Received: from beefy1.isc.freebsd.org (localhost [127.0.0.1]) by beefy1.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sB3Nlx93038260; Wed, 3 Dec 2014 23:47:59 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.isc.freebsd.org (8.14.9/8.14.9/Submit) id sB3NlxAG038259; Wed, 3 Dec 2014 23:47:59 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Wed, 3 Dec 2014 23:47:59 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412032347.sB3NlxAG038259@beefy1.isc.freebsd.org> To: office@FreeBSD.org Subject: [package - 91i386-default][graphics/libgltf] Failed for libgltf-0.0.2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Dec 2014 23:48:00 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: office@FreeBSD.org Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ Log URL: http://beefy1.isc.freebsd.org/data/91i386-default/2014-12-03_21h38m53s/logs/libgltf-0.0.2.log Build URL: http://beefy1.isc.freebsd.org/build.html?mastername=91i386-default&build=2014-12-03_21h38m53s Log: ====>> Building graphics/libgltf build started at Wed Dec 3 23:47:22 UTC 2014 port directory: /usr/ports/graphics/libgltf building for: FreeBSD 91i386-default-job-17 9.1-RELEASE-p19 FreeBSD 9.1-RELEASE-p19 i386 maintained by: office@FreeBSD.org Makefile ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ Poudriere version: 3.1-pre Host OSVERSION: 1100047 Jail OSVERSION: 901000 ---Begin Environment--- UNAME_m=i386 UNAME_p=i386 OSVERSION=901000 UNAME_v=FreeBSD 9.1-RELEASE-p19 UNAME_r=9.1-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/91i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=libgltf-0.0.2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/91i386-default/ref/.p/pool MASTERNAME=91i386-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-werror --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/graphics/libgltf/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/graphics/libgltf/work HOME=/wrkdirs/usr/ports/graphics/libgltf/work TMPDIR="/tmp" PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/graphics/libgltf/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/graphics/libgltf/work HOME=/wrkdirs/usr/ports/graphics/libgltf/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="/usr/local/bin/clang34" CFLAGS="-O2 -pipe -fno-strict-aliasing" CPP="/usr/local/bin/clang-cpp34" CPPFLAGS="-I/usr/local/include" LDFLAGS="" LIBS="" CXX="/usr/local/bin/clang++34" CXXFLAGS="-O2 -pipe -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- OSREL=9.1 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/libgltf" EXAMPLESDIR="share/examples/libgltf" DATADIR="share/libgltf" WWWDIR="www/libgltf" ETCDIR="etc/libgltf" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/libgltf DOCSDIR=/usr/local/share/doc/libgltf EXAMPLESDIR=/usr/local/share/examples/libgltf WWWDIR=/usr/local/www/libgltf ETCDIR=/usr/local/etc/libgltf --End SUB_LIST-- ---Begin make.conf--- ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 MPL accepted by the user =========================================================================== =================================================== ===> libgltf-0.0.2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.3.8_3.txz [91i386-default-job-17] Installing pkg-1.3.8_3... done Message for pkg-1.3.8_3: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building => SHA256 Checksum OK for libgltf-0.0.2.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building ===> Extracting for libgltf-0.0.2 => SHA256 Checksum OK for libgltf-0.0.2.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for libgltf-0.0.2 =========================================================================== =================================================== ===> libgltf-0.0.2 depends on file: /usr/local/include/boost/ptr_container/ptr_map.hpp - not found ===> Verifying install for /usr/local/include/boost/ptr_container/ptr_map.hpp in /usr/ports/devel/boost-libs ===> Installing existing package /packages/All/boost-libs-1.55.0_4.txz [91i386-default-job-17] Installing icu-53.1... done [91i386-default-job-17] Installing boost-libs-1.55.0_4... done Message for boost-libs-1.55.0_4: You have built the Boost library with thread support. Don't forget to add -pthread to your linker options when linking your code. ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/include/glm/glm.hpp - not found ===> Verifying install for /usr/local/include/glm/glm.hpp in /usr/ports/math/glm ===> Installing existing package /packages/All/glm-0.9.6.0.txz [91i386-default-job-17] Installing glm-0.9.6.0... done ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/bin/clang34 - not found ===> Verifying install for /usr/local/bin/clang34 in /usr/ports/lang/clang34 ===> Installing existing package /packages/All/clang34-3.4.2_1.txz [91i386-default-job-17] Installing libexecinfo-1.1_3... done [91i386-default-job-17] Installing perl5-5.18.4_10... done [91i386-default-job-17] Installing indexinfo-0.2... done [91i386-default-job-17] Installing libiconv-1.14_6... done [91i386-default-job-17] Installing gettext-runtime-0.19.3... done [91i386-default-job-17] Installing libffi-3.0.13_3... done [91i386-default-job-17] Installing python27-2.7.8_6... done [91i386-default-job-17] Installing llvm34-3.4.2... done [91i386-default-job-17] Installing clang34-3.4.2_1... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [91i386-default-job-17] Installing pkgconf-0.9.7... done ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== ===> libgltf-0.0.2 depends on shared library: libGLEW.so - not found ===> Verifying for libGLEW.so in /usr/ports/graphics/glew ===> Installing existing package /packages/All/glew-1.11.0_2.txz [91i386-default-job-17] Installing dri2proto-2.8... done [91i386-default-job-17] Installing expat-2.1.0_1... done [91i386-default-job-17] Installing kbproto-1.0.6... done [91i386-default-job-17] Installing xproto-7.0.26... done [91i386-default-job-17] Installing libXau-1.0.8_2... done [91i386-default-job-17] Installing libXdmcp-1.1.1_2... done [91i386-default-job-17] Installing libpthread-stubs-0.3_6... done [91i386-default-job-17] Installing libxml2-2.9.2_2... done [91i386-default-job-17] Installing libxcb-1.11... done [91i386-default-job-17] Installing libX11-1.6.2_2,1... done [91i386-default-job-17] Installing damageproto-1.2.1... done [91i386-default-job-17] Installing fixesproto-5.0... done [91i386-default-job-17] Installing libXfixes-5.0.1_2... done [91i386-default-job-17] Installing libXdamage-1.1.4_2... done [91i386-default-job-17] Installing xextproto-7.3.0... done [91i386-default-job-17] Installing libXext-1.3.3,1... done [91i386-default-job-17] Installing xf86vidmodeproto-2.3.1... done [91i386-default-job-17] Installing libXxf86vm-1.1.3_2... done [91i386-default-job-17] Installing libdevq-0.0.2... done [91i386-default-job-17] Installing pciids-20141115... done [91i386-default-job-17] Installing libpciaccess-0.13.2_2... done [91i386-default-job-17] Installing libdrm-2.4.58_1,1... done [91i386-default-job-17] Installing libxshmfence-1.1_3... done [91i386-default-job-17] Installing libglapi-9.1.7_2... done [91i386-default-job-17] Installing libGL-9.1.7_4... done [91i386-default-job-17] Installing libGLU-9.0.0_2... done [91i386-default-job-17] Installing inputproto-2.3.1... done [91i386-default-job-17] Installing libXi-1.7.4,1... done [91i386-default-job-17] Installing libICE-1.0.9,1... done [91i386-default-job-17] Installing libSM-1.2.2_2,1... done [91i386-default-job-17] Installing libXt-1.1.4_2,1... done [91i386-default-job-17] Installing libXmu-1.1.2_2,1... done [91i386-default-job-17] Installing glew-1.11.0_2... done ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== ===> Configuring for libgltf-0.0.2 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether /usr/local/bin/clang++34 accepts -g... yes checking for style of include used by make... GNU checking dependency style of /usr/local/bin/clang++34... gcc3 checking how to run the C++ preprocessor... /usr/local/bin/clang++34 -E checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking build system type... i386-portbld-freebsd9.1 checking host system type... i386-portbld-freebsd9.1 checking how to print strings... printf checking for gcc... /usr/local/bin/clang34 checking whether we are using the GNU C compiler... yes checking whether /usr/local/bin/clang34 accepts -g... yes checking for /usr/local/bin/clang34 option to accept ISO C89... none needed checking dependency style of /usr/local/bin/clang34... gcc3 checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by /usr/local/bin/clang34... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd9.1 file names to i386-portbld-freebsd9.1 format... func_convert_file_noop checking how to convert i386-portbld-freebsd9.1 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from /usr/local/bin/clang34 object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... /usr/local/bin/clang-cpp34 checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if /usr/local/bin/clang34 supports -fno-rtti -fno-exceptions... yes checking for /usr/local/bin/clang34 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/clang34 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/clang34 static flag -static works... yes checking if /usr/local/bin/clang34 supports -c -o file.o... yes checking if /usr/local/bin/clang34 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/clang34 linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking how to run the C++ preprocessor... /usr/local/bin/clang++34 -E checking for ld used by /usr/local/bin/clang++34... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the /usr/local/bin/clang++34 linker (/usr/bin/ld) supports shared libraries... yes checking for /usr/local/bin/clang++34 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/clang++34 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/clang++34 static flag -static works... yes checking if /usr/local/bin/clang++34 supports -c -o file.o... yes checking if /usr/local/bin/clang++34 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/clang++34 linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking pkg-config is at least version 0.20... yes checking boost/property_tree/ptree.hpp usability... yes checking boost/property_tree/ptree.hpp presence... yes checking for boost/property_tree/ptree.hpp... yes checking boost/property_tree/json_parser.hpp usability... yes checking boost/property_tree/json_parser.hpp presence... yes checking for boost/property_tree/json_parser.hpp... yes checking boost/foreach.hpp usability... yes checking boost/foreach.hpp presence... yes checking for boost/foreach.hpp... yes checking for GLEW... yes checking GL/glew.h usability... yes checking GL/glew.h presence... yes checking for GL/glew.h... yes checking glm/glm.hpp usability... no checking glm/glm.hpp presence... no checking for glm/glm.hpp... no configure: error: Required glm headers not found. Install glm >= 0.9.0.0 ===> Script "configure" failed unexpectedly. Please report the problem to office@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/graphics/libgltf/work/libgltf-0.0.2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** [do-configure] Error code 1 Stop in /usr/ports/graphics/libgltf. From owner-freebsd-office@FreeBSD.ORG Thu Dec 4 00:23:30 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from hammer.pct.niksun.com (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by hub.freebsd.org (Postfix) with ESMTP id 170D9BD6; Thu, 4 Dec 2014 00:23:30 +0000 (UTC) Message-ID: <547FA981.4090508@FreeBSD.org> Date: Wed, 03 Dec 2014 19:23:29 -0500 From: Jung-uk Kim User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: office@FreeBSD.org Subject: Re: [package - 91i386-default][graphics/libgltf] Failed for libgltf-0.0.2 in configure References: <201412032347.sB3NlxAG038259@beefy1.isc.freebsd.org> In-Reply-To: <201412032347.sB3NlxAG038259@beefy1.isc.freebsd.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Cc: Dmitry Sivachenko X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Dec 2014 00:23:30 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 On 12/03/2014 18:47, pkg-fallout@FreeBSD.org wrote: > You are receiving this mail as a port that you maintain is failing > to build on the FreeBSD package build server. Please investigate > the failure and submit a PR to fix build. > > Maintainer: office@FreeBSD.org Last committer: bapt@FreeBSD.org > Ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 > 2014-12-02 08:12:11Z bapt $ Log URL: > http://beefy1.isc.freebsd.org/data/91i386-default/2014-12-03_21h38m53s/logs/libgltf-0.0.2.log ... Unfortunately, > math/glm 0.9.6.0 broke it. Basically, GCC 4.2 support was completely removed and now it requires some header files (e.g., type_traits, cstdint, etc.) from standard location (i.e., some types must be in standard namespace). Switching to modern compiler (r373755) was not enough because of this reason. Actually, graphics/gource is similarly broken for 8.x and 9.x. I spent some time to fix this problem but I was not able to find a good solution. :-( Jung-uk Kim From owner-freebsd-office@FreeBSD.ORG Thu Dec 4 00:30:40 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from hammer.pct.niksun.com (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by hub.freebsd.org (Postfix) with ESMTP id 5F96FD46; Thu, 4 Dec 2014 00:30:40 +0000 (UTC) Message-ID: <547FAB2F.1090208@FreeBSD.org> Date: Wed, 03 Dec 2014 19:30:39 -0500 From: Jung-uk Kim User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: office@FreeBSD.org Subject: Re: [package - 91i386-default][graphics/libgltf] Failed for libgltf-0.0.2 in configure References: <201412032347.sB3NlxAG038259@beefy1.isc.freebsd.org> <547FA981.4090508@FreeBSD.org> In-Reply-To: <547FA981.4090508@FreeBSD.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: Dmitry Sivachenko X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Dec 2014 00:30:40 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 On 12/03/2014 19:23, Jung-uk Kim wrote: > -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 > > On 12/03/2014 18:47, pkg-fallout@FreeBSD.org wrote: >> You are receiving this mail as a port that you maintain is >> failing to build on the FreeBSD package build server. Please >> investigate the failure and submit a PR to fix build. >> >> Maintainer: office@FreeBSD.org Last committer: >> bapt@FreeBSD.org Ident: $FreeBSD: >> head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ >> Log URL: >> http://beefy1.isc.freebsd.org/data/91i386-default/2014-12-03_21h38m53s/logs/libgltf-0.0.2.log > >> ... > > Unfortunately, >> > math/glm 0.9.6.0 broke it. Basically, GCC 4.2 support was > completely removed and now it requires some header files (e.g., > type_traits, cstdint, etc.) from standard location (i.e., some > types must be in standard namespace). Switching to modern > compiler (r373755) was not enough because of this reason. > Actually, graphics/gource is similarly broken for 8.x and 9.x. graphics/cegui is also broken. http://beefy1.isc.freebsd.org/data/91i386-default/2014-12-03_21h38m53s/logs/errors/cegui-0.8.3_7.log In other words, every port depending on it broke on 8.x and 9.x. I guess we should back it out until the maintainer resolves this problem. Jung-uk Kim -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJUf6srAAoJEHyflib82/FGJ4wH/iiPWhTjVCcXKNitcBYZxtA0 M0N1UbKdLrWvqvXd3S1Sds+2qidb/xSEdoH+sh1v+gQzvByMDIpDq8rOsuGW8fms p4dd9pGX/daO5thdprJC1TmKKfN6jRFtK94lfNJpPpo3jB+kg4++lekDhC2qBpSv tUJpcMyyPfxbyfIZbxENE3kVFJW9lYEXHDDErhqae5GJl1lVG78vTSGyOg4DOA5q FzgUnCJn/HircDncinVAFGPm9Vmn6PPtCFP9NYPDcjT7PvWlE1w+pq+m3nMvp+uW GnO4W6x47SkN4H+eLtazoyfXk8K98UkwXrvMjJrB5B74AEtR2FNxytHOPyCg5lo= =dgmk -----END PGP SIGNATURE----- From owner-freebsd-office@FreeBSD.ORG Thu Dec 4 00:55:31 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A93E4F6; Thu, 4 Dec 2014 00:55:31 +0000 (UTC) Received: from beefy2.isc.freebsd.org (beefy2.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:39]) (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 192CB9BD; Thu, 4 Dec 2014 00:55:31 +0000 (UTC) Received: from beefy2.isc.freebsd.org (localhost [127.0.0.1]) by beefy2.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sB40tUQe037145; Thu, 4 Dec 2014 00:55:30 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy2.isc.freebsd.org (8.14.9/8.14.9/Submit) id sB40tUiC037095; Thu, 4 Dec 2014 00:55:30 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 4 Dec 2014 00:55:30 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412040055.sB40tUiC037095@beefy2.isc.freebsd.org> To: office@FreeBSD.org Subject: [package - 91amd64-default][graphics/libgltf] Failed for libgltf-0.0.2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Dec 2014 00:55:31 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: office@FreeBSD.org Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ Log URL: http://beefy2.isc.freebsd.org/data/91amd64-default/2014-12-03_22h28m43s/logs/libgltf-0.0.2.log Build URL: http://beefy2.isc.freebsd.org/build.html?mastername=91amd64-default&build=2014-12-03_22h28m43s Log: ====>> Building graphics/libgltf build started at Thu Dec 4 00:54:51 UTC 2014 port directory: /usr/ports/graphics/libgltf building for: FreeBSD 91amd64-default-job-15 9.1-RELEASE-p19 FreeBSD 9.1-RELEASE-p19 amd64 maintained by: office@FreeBSD.org Makefile ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ Poudriere version: 3.1-pre Host OSVERSION: 1100047 Jail OSVERSION: 901000 ---Begin Environment--- OSVERSION=901000 UNAME_v=FreeBSD 9.1-RELEASE-p19 UNAME_r=9.1-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/91amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=libgltf-0.0.2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/91amd64-default/ref/.p/pool MASTERNAME=91amd64-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-werror --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/graphics/libgltf/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/graphics/libgltf/work HOME=/wrkdirs/usr/ports/graphics/libgltf/work TMPDIR="/tmp" PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/graphics/libgltf/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/graphics/libgltf/work HOME=/wrkdirs/usr/ports/graphics/libgltf/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="/usr/local/bin/clang34" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="/usr/local/bin/clang-cpp34" CPPFLAGS="-I/usr/local/include" LDFLAGS=" -fstack-protector" LIBS="" CXX="/usr/local/bin/clang++34" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- OSREL=9.1 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/libgltf" EXAMPLESDIR="share/examples/libgltf" DATADIR="share/libgltf" WWWDIR="www/libgltf" ETCDIR="etc/libgltf" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/libgltf DOCSDIR=/usr/local/share/doc/libgltf EXAMPLESDIR=/usr/local/share/examples/libgltf WWWDIR=/usr/local/www/libgltf ETCDIR=/usr/local/etc/libgltf --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted ran via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 MPL accepted by the user =========================================================================== =================================================== ===> libgltf-0.0.2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.3.8_3.txz [91amd64-default-job-15] Installing pkg-1.3.8_3... done Message for pkg-1.3.8_3: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building => SHA256 Checksum OK for libgltf-0.0.2.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building ===> Extracting for libgltf-0.0.2 => SHA256 Checksum OK for libgltf-0.0.2.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for libgltf-0.0.2 =========================================================================== =================================================== ===> libgltf-0.0.2 depends on file: /usr/local/include/boost/ptr_container/ptr_map.hpp - not found ===> Verifying install for /usr/local/include/boost/ptr_container/ptr_map.hpp in /usr/ports/devel/boost-libs ===> Installing existing package /packages/All/boost-libs-1.55.0_4.txz [91amd64-default-job-15] Installing icu-53.1... done [91amd64-default-job-15] Installing boost-libs-1.55.0_4... done Message for boost-libs-1.55.0_4: You have built the Boost library with thread support. Don't forget to add -pthread to your linker options when linking your code. ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/include/glm/glm.hpp - not found ===> Verifying install for /usr/local/include/glm/glm.hpp in /usr/ports/math/glm ===> Installing existing package /packages/All/glm-0.9.6.0.txz [91amd64-default-job-15] Installing glm-0.9.6.0... done ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/bin/clang34 - not found ===> Verifying install for /usr/local/bin/clang34 in /usr/ports/lang/clang34 ===> Installing existing package /packages/All/clang34-3.4.2_1.txz [91amd64-default-job-15] Installing libexecinfo-1.1_3... done [91amd64-default-job-15] Installing perl5-5.18.4_10... done [91amd64-default-job-15] Installing indexinfo-0.2... done [91amd64-default-job-15] Installing libiconv-1.14_6... done [91amd64-default-job-15] Installing gettext-runtime-0.19.3... done [91amd64-default-job-15] Installing libffi-3.0.13_3... done [91amd64-default-job-15] Installing python27-2.7.8_6... done [91amd64-default-job-15] Installing llvm34-3.4.2... done [91amd64-default-job-15] Installing clang34-3.4.2_1... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [91amd64-default-job-15] Installing pkgconf-0.9.7... done ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== ===> libgltf-0.0.2 depends on shared library: libGLEW.so - not found ===> Verifying for libGLEW.so in /usr/ports/graphics/glew ===> Installing existing package /packages/All/glew-1.11.0_2.txz [91amd64-default-job-15] Installing dri2proto-2.8... done [91amd64-default-job-15] Installing expat-2.1.0_1... done [91amd64-default-job-15] Installing kbproto-1.0.6... done [91amd64-default-job-15] Installing xproto-7.0.26... done [91amd64-default-job-15] Installing libXau-1.0.8_2... done [91amd64-default-job-15] Installing libXdmcp-1.1.1_2... done [91amd64-default-job-15] Installing libpthread-stubs-0.3_6... done [91amd64-default-job-15] Installing libxml2-2.9.2_2... done [91amd64-default-job-15] Installing libxcb-1.11... done [91amd64-default-job-15] Installing libX11-1.6.2_2,1... done [91amd64-default-job-15] Installing damageproto-1.2.1... done [91amd64-default-job-15] Installing fixesproto-5.0... done [91amd64-default-job-15] Installing libXfixes-5.0.1_2... done [91amd64-default-job-15] Installing libXdamage-1.1.4_2... done [91amd64-default-job-15] Installing xextproto-7.3.0... done [91amd64-default-job-15] Installing libXext-1.3.3,1... done [91amd64-default-job-15] Installing xf86vidmodeproto-2.3.1... done [91amd64-default-job-15] Installing libXxf86vm-1.1.3_2... done [91amd64-default-job-15] Installing libdevq-0.0.2... done [91amd64-default-job-15] Installing pciids-20141115... done [91amd64-default-job-15] Installing libpciaccess-0.13.2_2... done [91amd64-default-job-15] Installing libdrm-2.4.58_1,1... done [91amd64-default-job-15] Installing libxshmfence-1.1_3... done [91amd64-default-job-15] Installing libglapi-9.1.7_2... done [91amd64-default-job-15] Installing libGL-9.1.7_4... done [91amd64-default-job-15] Installing libGLU-9.0.0_2... done [91amd64-default-job-15] Installing inputproto-2.3.1... done [91amd64-default-job-15] Installing libXi-1.7.4,1... done [91amd64-default-job-15] Installing libICE-1.0.9,1... done [91amd64-default-job-15] Installing libSM-1.2.2_2,1... done [91amd64-default-job-15] Installing libXt-1.1.4_2,1... done [91amd64-default-job-15] Installing libXmu-1.1.2_2,1... done [91amd64-default-job-15] Installing glew-1.11.0_2... done ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== ===> Configuring for libgltf-0.0.2 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether /usr/local/bin/clang++34 accepts -g... yes checking for style of include used by make... GNU checking dependency style of /usr/local/bin/clang++34... gcc3 checking how to run the C++ preprocessor... /usr/local/bin/clang++34 -E checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking build system type... amd64-portbld-freebsd9.1 checking host system type... amd64-portbld-freebsd9.1 checking how to print strings... printf checking for gcc... /usr/local/bin/clang34 checking whether we are using the GNU C compiler... yes checking whether /usr/local/bin/clang34 accepts -g... yes checking for /usr/local/bin/clang34 option to accept ISO C89... none needed checking dependency style of /usr/local/bin/clang34... gcc3 checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by /usr/local/bin/clang34... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd9.1 file names to amd64-portbld-freebsd9.1 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd9.1 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from /usr/local/bin/clang34 object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... /usr/local/bin/clang-cpp34 checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if /usr/local/bin/clang34 supports -fno-rtti -fno-exceptions... yes checking for /usr/local/bin/clang34 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/clang34 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/clang34 static flag -static works... yes checking if /usr/local/bin/clang34 supports -c -o file.o... yes checking if /usr/local/bin/clang34 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/clang34 linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking how to run the C++ preprocessor... /usr/local/bin/clang++34 -E checking for ld used by /usr/local/bin/clang++34... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the /usr/local/bin/clang++34 linker (/usr/bin/ld) supports shared libraries... yes checking for /usr/local/bin/clang++34 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/clang++34 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/clang++34 static flag -static works... yes checking if /usr/local/bin/clang++34 supports -c -o file.o... yes checking if /usr/local/bin/clang++34 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/clang++34 linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking pkg-config is at least version 0.20... yes checking boost/property_tree/ptree.hpp usability... yes checking boost/property_tree/ptree.hpp presence... yes checking for boost/property_tree/ptree.hpp... yes checking boost/property_tree/json_parser.hpp usability... yes checking boost/property_tree/json_parser.hpp presence... yes checking for boost/property_tree/json_parser.hpp... yes checking boost/foreach.hpp usability... yes checking boost/foreach.hpp presence... yes checking for boost/foreach.hpp... yes checking for GLEW... yes checking GL/glew.h usability... yes checking GL/glew.h presence... yes checking for GL/glew.h... yes checking glm/glm.hpp usability... no checking glm/glm.hpp presence... no checking for glm/glm.hpp... no configure: error: Required glm headers not found. Install glm >= 0.9.0.0 ===> Script "configure" failed unexpectedly. Please report the problem to office@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/graphics/libgltf/work/libgltf-0.0.2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** [do-configure] Error code 1 Stop in /usr/ports/graphics/libgltf. From owner-freebsd-office@FreeBSD.ORG Fri Dec 5 21:01:22 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87908C05; Fri, 5 Dec 2014 21:01:22 +0000 (UTC) Received: from beefy1.isc.freebsd.org (beefy1.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:38]) (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 7339F7DD; Fri, 5 Dec 2014 21:01:22 +0000 (UTC) Received: from beefy1.isc.freebsd.org (localhost [127.0.0.1]) by beefy1.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sB5L1MfM062674; Fri, 5 Dec 2014 21:01:22 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.isc.freebsd.org (8.14.9/8.14.9/Submit) id sB5L1Mwd062649; Fri, 5 Dec 2014 21:01:22 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Fri, 5 Dec 2014 21:01:22 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412052101.sB5L1Mwd062649@beefy1.isc.freebsd.org> To: office@FreeBSD.org Subject: [package - 84i386-default][graphics/libgltf] Failed for libgltf-0.0.2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Dec 2014 21:01:22 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: office@FreeBSD.org Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ Log URL: http://beefy1.isc.freebsd.org/data/84i386-default/2014-12-05_18h55m43s/logs/libgltf-0.0.2.log Build URL: http://beefy1.isc.freebsd.org/build.html?mastername=84i386-default&build=2014-12-05_18h55m43s Log: ====>> Building graphics/libgltf build started at Fri Dec 5 21:00:44 UTC 2014 port directory: /usr/ports/graphics/libgltf building for: FreeBSD 84i386-default-job-10 8.4-RELEASE-p16 FreeBSD 8.4-RELEASE-p16 i386 maintained by: office@FreeBSD.org Makefile ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ Poudriere version: 3.1-pre Host OSVERSION: 1100047 Jail OSVERSION: 804000 ---Begin Environment--- UNAME_m=i386 UNAME_p=i386 OSVERSION=804000 UNAME_v=FreeBSD 8.4-RELEASE-p16 UNAME_r=8.4-RELEASE-p16 FTP_PASSIVE_MODE=YES BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/84i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=libgltf-0.0.2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/84i386-default/ref/.p/pool MASTERNAME=84i386-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-werror --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/graphics/libgltf/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/graphics/libgltf/work HOME=/wrkdirs/usr/ports/graphics/libgltf/work TMPDIR="/tmp" PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/graphics/libgltf/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/graphics/libgltf/work HOME=/wrkdirs/usr/ports/graphics/libgltf/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="/usr/local/bin/clang34" CFLAGS="-O2 -pipe -fno-strict-aliasing" CPP="/usr/local/bin/clang-cpp34" CPPFLAGS="-I/usr/local/include" LDFLAGS=" -B/usr/local/bin" LIBS="" CXX="/usr/local/bin/clang++34" CXXFLAGS="-O2 -pipe -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="i nstall -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- OSREL=8.4 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/libgltf" EXAMPLESDIR="share/examples/libgltf" DATADIR="share/libgltf" WWWDIR="www/libgltf" ETCDIR="etc/libgltf" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/libgltf DOCSDIR=/usr/local/share/doc/libgltf EXAMPLESDIR=/usr/local/share/examples/libgltf WWWDIR=/usr/local/www/libgltf ETCDIR=/usr/local/etc/libgltf --End SUB_LIST-- ---Begin make.conf--- ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 MPL accepted by the user =========================================================================== =================================================== ===> libgltf-0.0.2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.3.8_3.txz [84i386-default-job-10] Installing pkg-1.3.8_3... done Message for pkg-1.3.8_3: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building => SHA256 Checksum OK for libgltf-0.0.2.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building ===> Extracting for libgltf-0.0.2 => SHA256 Checksum OK for libgltf-0.0.2.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for libgltf-0.0.2 =========================================================================== =================================================== ===> libgltf-0.0.2 depends on file: /usr/local/include/boost/ptr_container/ptr_map.hpp - not found ===> Verifying install for /usr/local/include/boost/ptr_container/ptr_map.hpp in /usr/ports/devel/boost-libs ===> Installing existing package /packages/All/boost-libs-1.55.0_4.txz [84i386-default-job-10] Installing icu-53.1... done [84i386-default-job-10] Installing boost-libs-1.55.0_4... done Message for boost-libs-1.55.0_4: You have built the Boost library with thread support. Don't forget to add -pthread to your linker options when linking your code. ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/include/glm/glm.hpp - not found ===> Verifying install for /usr/local/include/glm/glm.hpp in /usr/ports/math/glm ===> Installing existing package /packages/All/glm-0.9.6.0.txz [84i386-default-job-10] Installing glm-0.9.6.0... done ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/bin/clang34 - not found ===> Verifying install for /usr/local/bin/clang34 in /usr/ports/lang/clang34 ===> Installing existing package /packages/All/clang34-3.4.2_1.txz [84i386-default-job-10] Installing libexecinfo-1.1_3... done [84i386-default-job-10] Installing perl5-5.18.4_10... done [84i386-default-job-10] Installing indexinfo-0.2... done [84i386-default-job-10] Installing libiconv-1.14_6... done [84i386-default-job-10] Installing gettext-runtime-0.19.3... done [84i386-default-job-10] Installing libffi-3.0.13_3... done [84i386-default-job-10] Installing python27-2.7.8_6... done [84i386-default-job-10] Installing llvm34-3.4.2... done [84i386-default-job-10] Installing clang34-3.4.2_1... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [84i386-default-job-10] Installing pkgconf-0.9.7... done ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/bin/as - not found ===> Verifying install for /usr/local/bin/as in /usr/ports/devel/binutils ===> Installing existing package /packages/All/binutils-2.24_1.txz [84i386-default-job-10] Installing binutils-2.24_1... done ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== ===> libgltf-0.0.2 depends on shared library: libGLEW.so - not found ===> Verifying for libGLEW.so in /usr/ports/graphics/glew ===> Installing existing package /packages/All/glew-1.11.0_2.txz [84i386-default-job-10] Installing dri2proto-2.8... done [84i386-default-job-10] Installing expat-2.1.0_1... done [84i386-default-job-10] Installing kbproto-1.0.6... done [84i386-default-job-10] Installing xproto-7.0.26... done [84i386-default-job-10] Installing libXau-1.0.8_2... done [84i386-default-job-10] Installing libXdmcp-1.1.1_2... done [84i386-default-job-10] Installing libpthread-stubs-0.3_6... done [84i386-default-job-10] Installing libxml2-2.9.2_2... done [84i386-default-job-10] Installing libxcb-1.11... done [84i386-default-job-10] Installing libX11-1.6.2_2,1... done [84i386-default-job-10] Installing damageproto-1.2.1... done [84i386-default-job-10] Installing fixesproto-5.0... done [84i386-default-job-10] Installing libXfixes-5.0.1_2... done [84i386-default-job-10] Installing libXdamage-1.1.4_2... done [84i386-default-job-10] Installing xextproto-7.3.0... done [84i386-default-job-10] Installing libXext-1.3.3,1... done [84i386-default-job-10] Installing xf86vidmodeproto-2.3.1... done [84i386-default-job-10] Installing libXxf86vm-1.1.3_2... done [84i386-default-job-10] Installing libdevq-0.0.2... done [84i386-default-job-10] Installing pciids-20141115... done [84i386-default-job-10] Installing libpciaccess-0.13.2_2... done [84i386-default-job-10] Installing libdrm-2.4.58_1,1... done [84i386-default-job-10] Installing libxshmfence-1.1_3... done [84i386-default-job-10] Installing libglapi-9.1.7_2... done [84i386-default-job-10] Installing libGL-9.1.7_4... done [84i386-default-job-10] Installing libGLU-9.0.0_2... done [84i386-default-job-10] Installing inputproto-2.3.1... done [84i386-default-job-10] Installing libXi-1.7.4,1... done [84i386-default-job-10] Installing libICE-1.0.9,1... done [84i386-default-job-10] Installing libSM-1.2.2_2,1... done [84i386-default-job-10] Installing libXt-1.1.4_2,1... done [84i386-default-job-10] Installing libXmu-1.1.2_2,1... done [84i386-default-job-10] Installing glew-1.11.0_2... done ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== ===> Configuring for libgltf-0.0.2 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether /usr/local/bin/clang++34 accepts -g... yes checking for style of include used by make... GNU checking dependency style of /usr/local/bin/clang++34... gcc3 checking how to run the C++ preprocessor... /usr/local/bin/clang++34 -E checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking build system type... i386-portbld-freebsd8.4 checking host system type... i386-portbld-freebsd8.4 checking how to print strings... printf checking for gcc... /usr/local/bin/clang34 checking whether we are using the GNU C compiler... yes checking whether /usr/local/bin/clang34 accepts -g... yes checking for /usr/local/bin/clang34 option to accept ISO C89... none needed checking dependency style of /usr/local/bin/clang34... gcc3 checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by /usr/local/bin/clang34... /usr/local/bin/ld checking if the linker (/usr/local/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/local/bin/nm checking the name lister (/usr/local/bin/nm) interface... BSD nm checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd8.4 file names to i386-portbld-freebsd8.4 format... func_convert_file_noop checking how to convert i386-portbld-freebsd8.4 file names to toolchain format... func_convert_file_noop checking for /usr/local/bin/ld option to reload object files... -r checking for objdump... /usr/local/bin/objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... /usr/local/bin/ranlib checking command to parse /usr/local/bin/nm output from /usr/local/bin/clang34 object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... /usr/local/bin/clang-cpp34 checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if /usr/local/bin/clang34 supports -fno-rtti -fno-exceptions... yes checking for /usr/local/bin/clang34 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/clang34 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/clang34 static flag -static works... yes checking if /usr/local/bin/clang34 supports -c -o file.o... yes checking if /usr/local/bin/clang34 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/clang34 linker (/usr/local/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd8.4 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking how to run the C++ preprocessor... /usr/local/bin/clang++34 -E checking for ld used by /usr/local/bin/clang++34... /usr/local/bin/ld checking if the linker (/usr/local/bin/ld) is GNU ld... yes checking whether the /usr/local/bin/clang++34 linker (/usr/local/bin/ld) supports shared libraries... yes checking for /usr/local/bin/clang++34 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/clang++34 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/clang++34 static flag -static works... yes checking if /usr/local/bin/clang++34 supports -c -o file.o... yes checking if /usr/local/bin/clang++34 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/clang++34 linker (/usr/local/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd8.4 ld.so checking how to hardcode library paths into programs... immediate checking pkg-config is at least version 0.20... yes checking boost/property_tree/ptree.hpp usability... yes checking boost/property_tree/ptree.hpp presence... yes checking for boost/property_tree/ptree.hpp... yes checking boost/property_tree/json_parser.hpp usability... yes checking boost/property_tree/json_parser.hpp presence... yes checking for boost/property_tree/json_parser.hpp... yes checking boost/foreach.hpp usability... yes checking boost/foreach.hpp presence... yes checking for boost/foreach.hpp... yes checking for GLEW... yes checking GL/glew.h usability... yes checking GL/glew.h presence... yes checking for GL/glew.h... yes checking glm/glm.hpp usability... no checking glm/glm.hpp presence... no checking for glm/glm.hpp... no configure: error: Required glm headers not found. Install glm >= 0.9.0.0 ===> Script "configure" failed unexpectedly. Please report the problem to office@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/graphics/libgltf/work/libgltf-0.0.2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop in /usr/ports/graphics/libgltf. From owner-freebsd-office@FreeBSD.ORG Sat Dec 6 00:38:00 2014 Return-Path: Delivered-To: office@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1BB92551; Sat, 6 Dec 2014 00:38:00 +0000 (UTC) Received: from beefy2.isc.freebsd.org (beefy2.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:39]) (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 077C0FB1; Sat, 6 Dec 2014 00:38:00 +0000 (UTC) Received: from beefy2.isc.freebsd.org (localhost [127.0.0.1]) by beefy2.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id sB60bxxA019549; Sat, 6 Dec 2014 00:37:59 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy2.isc.freebsd.org (8.14.9/8.14.9/Submit) id sB60bxOF019534; Sat, 6 Dec 2014 00:37:59 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 6 Dec 2014 00:37:59 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201412060037.sB60bxOF019534@beefy2.isc.freebsd.org> To: office@FreeBSD.org Subject: [package - 84amd64-default][graphics/libgltf] Failed for libgltf-0.0.2 in configure Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Dec 2014 00:38:00 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: office@FreeBSD.org Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ Log URL: http://beefy2.isc.freebsd.org/data/84amd64-default/2014-12-05_22h15m17s/logs/libgltf-0.0.2.log Build URL: http://beefy2.isc.freebsd.org/build.html?mastername=84amd64-default&build=2014-12-05_22h15m17s Log: ====>> Building graphics/libgltf build started at Sat Dec 6 00:37:20 UTC 2014 port directory: /usr/ports/graphics/libgltf building for: FreeBSD 84amd64-default-job-14 8.4-RELEASE-p16 FreeBSD 8.4-RELEASE-p16 amd64 maintained by: office@FreeBSD.org Makefile ident: $FreeBSD: head/graphics/libgltf/Makefile 373755 2014-12-02 08:12:11Z bapt $ Poudriere version: 3.1-pre Host OSVERSION: 1100047 Jail OSVERSION: 804000 ---Begin Environment--- OSVERSION=804000 UNAME_v=FreeBSD 8.4-RELEASE-p16 UNAME_r=8.4-RELEASE-p16 FTP_PASSIVE_MODE=YES BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/84amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=libgltf-0.0.2 OLDPWD=/root PWD=/usr/local/poudriere/data/.m/84amd64-default/ref/.p/pool MASTERNAME=84amd64-default USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-werror --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/graphics/libgltf/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/graphics/libgltf/work HOME=/wrkdirs/usr/ports/graphics/libgltf/work TMPDIR="/tmp" PKG_CONFIG=pkgconf SHELL=/bin/sh CONFIG_SHELL=/bin/sh ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/graphics/libgltf/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/graphics/libgltf/work HOME=/wrkdirs/usr/ports/graphics/libgltf/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="/usr/local/bin/clang34" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="/usr/local/bin/clang-cpp34" CPPFLAGS="-I/usr/local/include" LDFLAGS=" -B/usr/local/bin -fstack-protector" LIBS="" CXX="/usr/local/bin/clang++34" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="in stall -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 0644" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- OSREL=8.4 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/libgltf" EXAMPLESDIR="share/examples/libgltf" DATADIR="share/libgltf" WWWDIR="www/libgltf" ETCDIR="etc/libgltf" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/libgltf DOCSDIR=/usr/local/share/doc/libgltf EXAMPLESDIR=/usr/local/share/examples/libgltf WWWDIR=/usr/local/www/libgltf ETCDIR=/usr/local/etc/libgltf --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel # clean-restricted ran via poudriere.conf NO_RESTRICTED #NO_RESTRICTED=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL21 MPL accepted by the user =========================================================================== =================================================== ===> libgltf-0.0.2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.3.8_3.txz [84amd64-default-job-14] Installing pkg-1.3.8_3... done Message for pkg-1.3.8_3: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building => SHA256 Checksum OK for libgltf-0.0.2.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL21 MPL accepted by the user ===> Fetching all distfiles required by libgltf-0.0.2 for building ===> Extracting for libgltf-0.0.2 => SHA256 Checksum OK for libgltf-0.0.2.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for libgltf-0.0.2 =========================================================================== =================================================== ===> libgltf-0.0.2 depends on file: /usr/local/include/boost/ptr_container/ptr_map.hpp - not found ===> Verifying install for /usr/local/include/boost/ptr_container/ptr_map.hpp in /usr/ports/devel/boost-libs ===> Installing existing package /packages/All/boost-libs-1.55.0_4.txz [84amd64-default-job-14] Installing icu-53.1... done [84amd64-default-job-14] Installing boost-libs-1.55.0_4... done Message for boost-libs-1.55.0_4: You have built the Boost library with thread support. Don't forget to add -pthread to your linker options when linking your code. ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/include/glm/glm.hpp - not found ===> Verifying install for /usr/local/include/glm/glm.hpp in /usr/ports/math/glm ===> Installing existing package /packages/All/glm-0.9.6.0.txz [84amd64-default-job-14] Installing glm-0.9.6.0... done ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/bin/clang34 - not found ===> Verifying install for /usr/local/bin/clang34 in /usr/ports/lang/clang34 ===> Installing existing package /packages/All/clang34-3.4.2_1.txz [84amd64-default-job-14] Installing libexecinfo-1.1_3... done [84amd64-default-job-14] Installing perl5-5.18.4_10... done [84amd64-default-job-14] Installing indexinfo-0.2... done [84amd64-default-job-14] Installing libiconv-1.14_6... done [84amd64-default-job-14] Installing gettext-runtime-0.19.3... done [84amd64-default-job-14] Installing libffi-3.0.13_3... done [84amd64-default-job-14] Installing python27-2.7.8_6... done [84amd64-default-job-14] Installing llvm34-3.4.2... done [84amd64-default-job-14] Installing clang34-3.4.2_1... done Message for python27-2.7.8_6: ===================================================================== Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter ===================================================================== ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on executable: pkgconf - not found ===> Verifying install for pkgconf in /usr/ports/devel/pkgconf ===> Installing existing package /packages/All/pkgconf-0.9.7.txz [84amd64-default-job-14] Installing pkgconf-0.9.7... done ===> Returning to build of libgltf-0.0.2 ===> libgltf-0.0.2 depends on file: /usr/local/bin/as - not found ===> Verifying install for /usr/local/bin/as in /usr/ports/devel/binutils ===> Installing existing package /packages/All/binutils-2.24_1.txz [84amd64-default-job-14] Installing binutils-2.24_1... done ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== ===> libgltf-0.0.2 depends on shared library: libGLEW.so - not found ===> Verifying for libGLEW.so in /usr/ports/graphics/glew ===> Installing existing package /packages/All/glew-1.11.0_2.txz [84amd64-default-job-14] Installing dri2proto-2.8... done [84amd64-default-job-14] Installing expat-2.1.0_1... done [84amd64-default-job-14] Installing kbproto-1.0.6... done [84amd64-default-job-14] Installing xproto-7.0.26... done [84amd64-default-job-14] Installing libXau-1.0.8_2... done [84amd64-default-job-14] Installing libXdmcp-1.1.1_2... done [84amd64-default-job-14] Installing libpthread-stubs-0.3_6... done [84amd64-default-job-14] Installing libxml2-2.9.2_2... done [84amd64-default-job-14] Installing libxcb-1.11... done [84amd64-default-job-14] Installing libX11-1.6.2_2,1... done [84amd64-default-job-14] Installing damageproto-1.2.1... done [84amd64-default-job-14] Installing fixesproto-5.0... done [84amd64-default-job-14] Installing libXfixes-5.0.1_2... done [84amd64-default-job-14] Installing libXdamage-1.1.4_2... done [84amd64-default-job-14] Installing xextproto-7.3.0... done [84amd64-default-job-14] Installing libXext-1.3.3,1... done [84amd64-default-job-14] Installing xf86vidmodeproto-2.3.1... done [84amd64-default-job-14] Installing libXxf86vm-1.1.3_2... done [84amd64-default-job-14] Installing libdevq-0.0.2... done [84amd64-default-job-14] Installing pciids-20141115... done [84amd64-default-job-14] Installing libpciaccess-0.13.2_2... done [84amd64-default-job-14] Installing libdrm-2.4.58_1,1... done [84amd64-default-job-14] Installing libxshmfence-1.1_3... done [84amd64-default-job-14] Installing libglapi-9.1.7_2... done [84amd64-default-job-14] Installing libGL-9.1.7_4... done [84amd64-default-job-14] Installing libGLU-9.0.0_2... done [84amd64-default-job-14] Installing inputproto-2.3.1... done [84amd64-default-job-14] Installing libXi-1.7.4,1... done [84amd64-default-job-14] Installing libICE-1.0.9,1... done [84amd64-default-job-14] Installing libSM-1.2.2_2,1... done [84amd64-default-job-14] Installing libXt-1.1.4_2,1... done [84amd64-default-job-14] Installing libXmu-1.1.2_2,1... done [84amd64-default-job-14] Installing glew-1.11.0_2... done ===> Returning to build of libgltf-0.0.2 =========================================================================== =================================================== ===> Configuring for libgltf-0.0.2 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether /usr/local/bin/clang++34 accepts -g... yes checking for style of include used by make... GNU checking dependency style of /usr/local/bin/clang++34... gcc3 checking how to run the C++ preprocessor... /usr/local/bin/clang++34 -E checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking build system type... amd64-portbld-freebsd8.4 checking host system type... amd64-portbld-freebsd8.4 checking how to print strings... printf checking for gcc... /usr/local/bin/clang34 checking whether we are using the GNU C compiler... yes checking whether /usr/local/bin/clang34 accepts -g... yes checking for /usr/local/bin/clang34 option to accept ISO C89... none needed checking dependency style of /usr/local/bin/clang34... gcc3 checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by /usr/local/bin/clang34... /usr/local/bin/ld checking if the linker (/usr/local/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/local/bin/nm checking the name lister (/usr/local/bin/nm) interface... BSD nm checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd8.4 file names to amd64-portbld-freebsd8.4 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd8.4 file names to toolchain format... func_convert_file_noop checking for /usr/local/bin/ld option to reload object files... -r checking for objdump... /usr/local/bin/objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... /usr/local/bin/ranlib checking command to parse /usr/local/bin/nm output from /usr/local/bin/clang34 object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... /usr/local/bin/clang-cpp34 checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if /usr/local/bin/clang34 supports -fno-rtti -fno-exceptions... yes checking for /usr/local/bin/clang34 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/clang34 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/clang34 static flag -static works... yes checking if /usr/local/bin/clang34 supports -c -o file.o... yes checking if /usr/local/bin/clang34 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/clang34 linker (/usr/local/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd8.4 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking how to run the C++ preprocessor... /usr/local/bin/clang++34 -E checking for ld used by /usr/local/bin/clang++34... /usr/local/bin/ld checking if the linker (/usr/local/bin/ld) is GNU ld... yes checking whether the /usr/local/bin/clang++34 linker (/usr/local/bin/ld) supports shared libraries... yes checking for /usr/local/bin/clang++34 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/clang++34 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/clang++34 static flag -static works... yes checking if /usr/local/bin/clang++34 supports -c -o file.o... yes checking if /usr/local/bin/clang++34 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/clang++34 linker (/usr/local/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd8.4 ld.so checking how to hardcode library paths into programs... immediate checking pkg-config is at least version 0.20... yes checking boost/property_tree/ptree.hpp usability... yes checking boost/property_tree/ptree.hpp presence... yes checking for boost/property_tree/ptree.hpp... yes checking boost/property_tree/json_parser.hpp usability... yes checking boost/property_tree/json_parser.hpp presence... yes checking for boost/property_tree/json_parser.hpp... yes checking boost/foreach.hpp usability... yes checking boost/foreach.hpp presence... yes checking for boost/foreach.hpp... yes checking for GLEW... yes checking GL/glew.h usability... yes checking GL/glew.h presence... yes checking for GL/glew.h... yes checking glm/glm.hpp usability... no checking glm/glm.hpp presence... no checking for glm/glm.hpp... no configure: error: Required glm headers not found. Install glm >= 0.9.0.0 ===> Script "configure" failed unexpectedly. Please report the problem to office@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/graphics/libgltf/work/libgltf-0.0.2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop in /usr/ports/graphics/libgltf.