From owner-freebsd-x11@freebsd.org Tue Mar 27 21:19:33 2018 Return-Path: Delivered-To: freebsd-x11@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB1A4F5D9ED for ; Tue, 27 Mar 2018 21:19:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A870D8279E for ; Tue, 27 Mar 2018 21:19:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 69CB2F5D9DD; Tue, 27 Mar 2018 21:19:32 +0000 (UTC) Delivered-To: x11@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5604CF5D9DC for ; Tue, 27 Mar 2018 21:19:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E386082797 for ; Tue, 27 Mar 2018 21:19:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) 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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 32BA86786 for ; Tue, 27 Mar 2018 21:19:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w2RLJVvo083553 for ; Tue, 27 Mar 2018 21:19:31 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w2RLJVEC083552 for x11@FreeBSD.org; Tue, 27 Mar 2018 21:19:31 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: x11@FreeBSD.org Subject: maintainer-approval requested: [Bug 225415] graphics/mesa-dri: update to 18.0.0 : [Attachment 191881] release Date: Tue, 27 Mar 2018 21:19:30 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: x11@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Mar 2018 21:19:33 -0000 Jan Beich has asked x11@FreeBSD.org for maintainer-approval: Bug 225415: graphics/mesa-dri: update to 18.0.0 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225415 Attachment 191881: release https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D191881&action=3Dedit --- Comment #20 from Jan Beich --- Created attachment 191881 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D191881&action= =3Dedit release https://lists.freedesktop.org/archives/mesa-announce/2018-March/000412.html - Let's start maintainer timeout countdown - No upstream code changes since rc5 - Reordered struct initializers, see -const struct _umtx_time tmo =3D { ._clockid =3D CLOCK_MONOTONIC, ._flags= =3D UMTX_ABSTIME, ._timeout =3D *timeout }; +const struct _umtx_time tmo =3D { ._timeout =3D *timeout, ._flags =3D UMTX_ABSTIME, ._clockid =3D CLOCK_MONOTONIC }; to pacify GCC In file included from ../../src/util/simple_mtx.h:27:0, from ../../src/mesa/main/mtypes.h:49, from glsl/main.cpp:36: ../../src/util/futex.h: In function 'int futex_wait(uint32_t*, int32_t, timespec*)': ../../src/util/futex.h:54:113: sorry, unimplemented: non-trivial designat= ed initializers not supported const struct _umtx_time tmo =3D { ._clockid =3D CLOCK_MONOTONIC, ._flags = =3D UMTX_ABSTIME, ._timeout =3D *timeout }; =09=09=09=09=09=09=09=09=09=20=20=20=20=20=20=20 ^ ../../src/util/futex.h:54:113: sorry, unimplemented: non-trivial designat= ed initializers not supported