From owner-freebsd-emulation@freebsd.org  Sun Mar  5 14:22:55 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00244CFA536
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sun,  5 Mar 2017 14:22:54 +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 DDD361C33
 for <freebsd-emulation@freebsd.org>; Sun,  5 Mar 2017 14:22:54 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id DD36FCFA535; Sun,  5 Mar 2017 14:22:54 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCDFCCFA534
 for <emulation@mailman.ysv.freebsd.org>; Sun,  5 Mar 2017 14:22:54 +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 mx1.freebsd.org (Postfix) with ESMTPS id CBF551C32
 for <emulation@FreeBSD.org>; Sun,  5 Mar 2017 14:22:54 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v25EMsbv003785
 for <emulation@FreeBSD.org>; Sun, 5 Mar 2017 14:22:54 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="UTF-8"
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: maintainer-feedback requested: [Bug 217562] emulators/linux_base-c7:
 strange path truncating when exec'ing in bash scripts
Date: Sun, 05 Mar 2017 14:22:54 +0000
X-Bugzilla-Type: request
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: 
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
Message-ID: <bug-217562-4077-V2PsxI3EFE@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 05 Mar 2017 14:22:55 -0000

Matthieu Volat <mazhe@alkumuna.eu> has reassigned Bugzilla Automation
<bugzilla@FreeBSD.org>'s request for maintainer-feedback to
emulation@FreeBSD.org:
Bug 217562: emulators/linux_base-c7: strange path truncating when exec'ing =
in
bash scripts
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217562



--- Description ---
Hi,

I found a strange issue when running linux's bash scripts:

If you try to exec from a shell script (ran from /compat/linux/bin/bash) in=
to
another, the exec'ed script path will be truncated by 8 bytes from the left
(and will obviously result in a failure).

Simple demonstrator, file 1 is "test_linux_exec_bash.sh":

  #!/usr/bin/env bash
  echo $0
  exec ./test_linux_exec_bash_2.sh

file 2 is "test_linux_exec_bash_2.sh":

  #!/usr/bin/env bash
  echo $0

Then the result:

  % /compat/linux/bin/bash ./test_linux_exec_bash.sh
  ./test_linux_exec_bash.sh
  /compat/linux/usr/bin/env: zhe/tmp/test_linux_exec_bash_2.sh: No such fil=
e or
directory

This will not happen if the 1st script try to exec into a binary
(/compat/linux/usr/bin/env issue??)

I've ran the demo through ktrace, but it revealed nothing really interestin=
g:
at some point after execing into env, the path is corrupted... valgrind can=
't
be run on linux binaries, so I did not found anything on that front...

At that point, I'm failing to see what is going wrong here.

Any ideas? Thanks

From owner-freebsd-emulation@freebsd.org  Sun Mar  5 14:22:55 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41E9ECFA53A
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sun,  5 Mar 2017 14:22:55 +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 2B23A1C36
 for <freebsd-emulation@freebsd.org>; Sun,  5 Mar 2017 14:22:55 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 2A811CFA539; Sun,  5 Mar 2017 14:22:55 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A33CCFA538
 for <emulation@mailman.ysv.freebsd.org>; Sun,  5 Mar 2017 14:22:55 +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 mx1.freebsd.org (Postfix) with ESMTPS id F3A0C1C34
 for <emulation@FreeBSD.org>; Sun,  5 Mar 2017 14:22:54 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v25EMsbx003785
 for <emulation@FreeBSD.org>; Sun, 5 Mar 2017 14:22:54 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217562] emulators/linux_base-c7: strange path truncating when
 exec'ing in bash scripts
Date: Sun, 05 Mar 2017 14:22:54 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: mazhe@alkumuna.eu
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
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: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 05 Mar 2017 14:22:55 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217562

            Bug ID: 217562
           Summary: emulators/linux_base-c7: strange path truncating when
                    exec'ing in bash scripts
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: emulation@FreeBSD.org
          Reporter: mazhe@alkumuna.eu
          Assignee: emulation@FreeBSD.org
             Flags: maintainer-feedback?(emulation@FreeBSD.org)

Hi,

I found a strange issue when running linux's bash scripts:

If you try to exec from a shell script (ran from /compat/linux/bin/bash) in=
to
another, the exec'ed script path will be truncated by 8 bytes from the left
(and will obviously result in a failure).

Simple demonstrator, file 1 is "test_linux_exec_bash.sh":

  #!/usr/bin/env bash
  echo $0
  exec ./test_linux_exec_bash_2.sh

file 2 is "test_linux_exec_bash_2.sh":

  #!/usr/bin/env bash
  echo $0

Then the result:

  % /compat/linux/bin/bash ./test_linux_exec_bash.sh
  ./test_linux_exec_bash.sh
  /compat/linux/usr/bin/env: zhe/tmp/test_linux_exec_bash_2.sh: No such fil=
e or
directory

This will not happen if the 1st script try to exec into a binary
(/compat/linux/usr/bin/env issue??)

I've ran the demo through ktrace, but it revealed nothing really interestin=
g:
at some point after execing into env, the path is corrupted... valgrind can=
't
be run on linux binaries, so I did not found anything on that front...

At that point, I'm failing to see what is going wrong here.

Any ideas? Thanks

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Sun Mar  5 14:23:26 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37ED1CFA5C6
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sun,  5 Mar 2017 14:23:26 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 212371D0E
 for <freebsd-emulation@freebsd.org>; Sun,  5 Mar 2017 14:23:26 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 2081ECFA5C5; Sun,  5 Mar 2017 14:23:26 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20216CFA5C4
 for <emulation@mailman.ysv.freebsd.org>; Sun,  5 Mar 2017 14:23:26 +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 mx1.freebsd.org (Postfix) with ESMTPS id 0F6541D0D
 for <emulation@FreeBSD.org>; Sun,  5 Mar 2017 14:23:26 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v25ENPp0004526
 for <emulation@FreeBSD.org>; Sun, 5 Mar 2017 14:23:25 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217562] emulators/linux_base-c7: strange path truncating when
 exec'ing in bash scripts
Date: Sun, 05 Mar 2017 14:23:26 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: mazhe@alkumuna.eu
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-217562-4077-2VqmmF7fSR@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 05 Mar 2017 14:23:26 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217562

--- Comment #1 from Matthieu Volat <mazhe@alkumuna.eu> ---
Created attachment 180535
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180535&action=
=3Dedit
Demo script, first file

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Sun Mar  5 14:23:45 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63D68CFA5F6
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sun,  5 Mar 2017 14:23:45 +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 4BB681D5D
 for <freebsd-emulation@freebsd.org>; Sun,  5 Mar 2017 14:23:45 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 4B0C8CFA5F5; Sun,  5 Mar 2017 14:23:45 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A3CACFA5F2
 for <emulation@mailman.ysv.freebsd.org>; Sun,  5 Mar 2017 14:23:45 +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 mx1.freebsd.org (Postfix) with ESMTPS id 38E361D5C
 for <emulation@FreeBSD.org>; Sun,  5 Mar 2017 14:23:45 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v25ENjU3005012
 for <emulation@FreeBSD.org>; Sun, 5 Mar 2017 14:23:45 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217562] emulators/linux_base-c7: strange path truncating when
 exec'ing in bash scripts
Date: Sun, 05 Mar 2017 14:23:45 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: mazhe@alkumuna.eu
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-217562-4077-rVpgmoHpn2@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 05 Mar 2017 14:23:45 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217562

--- Comment #2 from Matthieu Volat <mazhe@alkumuna.eu> ---
Created attachment 180536
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180536&action=
=3Dedit
Demo script, secon file

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Sun Mar  5 14:24:57 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id A065FCFA650
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sun,  5 Mar 2017 14:24:57 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 89AC11DB7
 for <freebsd-emulation@freebsd.org>; Sun,  5 Mar 2017 14:24:57 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 8915DCFA64F; Sun,  5 Mar 2017 14:24:57 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88C02CFA64E
 for <emulation@mailman.ysv.freebsd.org>; Sun,  5 Mar 2017 14:24:57 +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 mx1.freebsd.org (Postfix) with ESMTPS id 779C41DB6
 for <emulation@FreeBSD.org>; Sun,  5 Mar 2017 14:24:57 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v25EOvd0006681
 for <emulation@FreeBSD.org>; Sun, 5 Mar 2017 14:24:57 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217562] emulators/linux_base-c7: strange path truncating when
 exec'ing in bash scripts
Date: Sun, 05 Mar 2017 14:24:57 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: mazhe@alkumuna.eu
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-217562-4077-9zRwvvqfW2@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 05 Mar 2017 14:24:57 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217562

--- Comment #3 from Matthieu Volat <mazhe@alkumuna.eu> ---
Created attachment 180537
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180537&action=
=3Dedit
Trace file

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Sun Mar  5 21:00:07 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9A3BCFA43D
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sun,  5 Mar 2017 21:00:07 +0000 (UTC)
 (envelope-from bugzilla-noreply@FreeBSD.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id AA63B1346
 for <freebsd-emulation@freebsd.org>; Sun,  5 Mar 2017 21:00:07 +0000 (UTC)
 (envelope-from bugzilla-noreply@FreeBSD.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id A9C68CFA43C; Sun,  5 Mar 2017 21:00:07 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9738CFA43B
 for <emulation@mailman.ysv.freebsd.org>; Sun,  5 Mar 2017 21:00:07 +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 mx1.freebsd.org (Postfix) with ESMTPS id 881B01344
 for <emulation@FreeBSD.org>; Sun,  5 Mar 2017 21:00:07 +0000 (UTC)
 (envelope-from bugzilla-noreply@FreeBSD.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v25L01G6038950
 for <emulation@FreeBSD.org>; Sun, 5 Mar 2017 21:00:07 GMT
 (envelope-from bugzilla-noreply@FreeBSD.org)
Message-Id: <201703052100.v25L01G6038950@kenobi.freebsd.org>
From: bugzilla-noreply@FreeBSD.org
To: emulation@FreeBSD.org
Subject: Problem reports for emulation@FreeBSD.org that need special attention
Date: Sun, 05 Mar 2017 21:00:07 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 05 Mar 2017 21:00:07 -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
------------+-----------+---------------------------------------------------
New         |    206711 | Export linux_ioctl_{,un}register_handler from lin 

1 problems total for which you should take action.

From owner-freebsd-emulation@freebsd.org  Sun Mar  5 21:01:17 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC97FCFA90C
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sun,  5 Mar 2017 21:01:17 +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 8F95F1ACE
 for <freebsd-emulation@freebsd.org>; Sun,  5 Mar 2017 21:01:17 +0000 (UTC)
 (envelope-from bugzilla-noreply@FreeBSD.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 8DB27CFA90A; Sun,  5 Mar 2017 21:01:17 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D65DCFA909
 for <emulation@mailman.ysv.freebsd.org>; Sun,  5 Mar 2017 21:01:17 +0000 (UTC)
 (envelope-from bugzilla-noreply@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 68EF41ACA
 for <emulation@freebsd.org>; Sun,  5 Mar 2017 21:01:17 +0000 (UTC)
 (envelope-from bugzilla-noreply@FreeBSD.org)
Received: by freefall.freebsd.org (Postfix)
 id B1B891F5D; Sun,  5 Mar 2017 21:01:16 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 944661F5C
 for <vbox@localmail.freebsd.org>; Sun,  5 Mar 2017 21:01:16 +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 mx1.freebsd.org (Postfix) with ESMTPS id 9FCA21838
 for <vbox@FreeBSD.org>; Sun,  5 Mar 2017 21:00:55 +0000 (UTC)
 (envelope-from bugzilla-noreply@FreeBSD.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v25L01LI038950
 for <vbox@FreeBSD.org>; Sun, 5 Mar 2017 21:00:55 GMT
 (envelope-from bugzilla-noreply@FreeBSD.org)
Message-Id: <201703052100.v25L01LI038950@kenobi.freebsd.org>
From: bugzilla-noreply@FreeBSD.org
To: vbox@FreeBSD.org
Subject: Problem reports for vbox@FreeBSD.org that need special attention
Date: Sun, 05 Mar 2017 21:00:55 +0000
X-Mailman-Approved-At: Sun, 05 Mar 2017 22:06:21 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 05 Mar 2017 21:01:17 -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
------------+-----------+---------------------------------------------------
Open        |    202982 | Installation of gnome related ports (xfce, vbox,  
In Progress |    211320 | emulators/virtualbox-ose-additions 5.0.26 wrong s 

2 problems total for which you should take action.

From owner-freebsd-emulation@freebsd.org  Mon Mar  6 15:23:22 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49580CFB73D
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Mon,  6 Mar 2017 15:23:22 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 322E81644
 for <freebsd-emulation@freebsd.org>; Mon,  6 Mar 2017 15:23:22 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 319DBCFB73B; Mon,  6 Mar 2017 15:23:22 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31519CFB73A
 for <emulation@mailman.ysv.freebsd.org>; Mon,  6 Mar 2017 15:23:22 +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 mx1.freebsd.org (Postfix) with ESMTPS id 203C61643
 for <emulation@FreeBSD.org>; Mon,  6 Mar 2017 15:23:22 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v26FNLkB069446
 for <emulation@FreeBSD.org>; Mon, 6 Mar 2017 15:23:21 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217396] devel/linux-c7-devtools: update kernel-headers to
 3.10.0-514.6.2.el7
Date: Mon, 06 Mar 2017 15:23:21 +0000
X-Bugzilla-Reason: AssignedTo CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: pkubaj@anongoth.pl
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: attachments.isobsolete cc flagtypes.name
 attachments.created
Message-ID: <bug-217396-4077-NOPqGOq1Ez@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217396-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217396-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 06 Mar 2017 15:23:22 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217396

Piotr Kubaj <pkubaj@anongoth.pl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #180340|0                           |1
        is obsolete|                            |
                 CC|                            |emulation@FreeBSD.org
 Attachment #180562|                            |maintainer-approval?(emulat
              Flags|                            |ion@FreeBSD.org)

--- Comment #1 from Piotr Kubaj <pkubaj@anongoth.pl> ---
Created attachment 180562
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180562&action=
=3Dedit
patch

Updated to 514.10.2.

--=20
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.=

From owner-freebsd-emulation@freebsd.org  Mon Mar  6 15:23:22 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B647CFB739
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Mon,  6 Mar 2017 15:23:22 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 0547A1642
 for <freebsd-emulation@freebsd.org>; Mon,  6 Mar 2017 15:23:22 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 01BBDCFB738; Mon,  6 Mar 2017 15:23:22 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 015FBCFB737
 for <emulation@mailman.ysv.freebsd.org>; Mon,  6 Mar 2017 15:23:22 +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 mx1.freebsd.org (Postfix) with ESMTPS id E54FE1641
 for <emulation@FreeBSD.org>; Mon,  6 Mar 2017 15:23:21 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v26FNLk9069446
 for <emulation@FreeBSD.org>; Mon, 6 Mar 2017 15:23:21 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="UTF-8"
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: maintainer-approval requested: [Bug 217396] devel/linux-c7-devtools:
 update kernel-headers to 3.10.0-514.6.2.el7 : [Attachment 180562]
 patch
Date: Mon, 06 Mar 2017 15:23:21 +0000
X-Bugzilla-Type: request
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: 
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
Message-ID: <bug-217396-4077-ZsW6QeTePM@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217396-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217396-4077@https.bugs.freebsd.org/bugzilla/>
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 06 Mar 2017 15:23:22 -0000

Piotr Kubaj <pkubaj@anongoth.pl> has asked emulation@FreeBSD.org for
maintainer-approval:
Bug 217396: devel/linux-c7-devtools: update kernel-headers to
3.10.0-514.6.2.el7
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217396

Attachment 180562: patch
https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180562&action=3Dedit



--- Comment #1 from Piotr Kubaj <pkubaj@anongoth.pl> ---
Created attachment 180562
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180562&action=
=3Dedit
patch

Updated to 514.10.2.

From owner-freebsd-emulation@freebsd.org  Mon Mar  6 16:37:59 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 661BECFB37A
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Mon,  6 Mar 2017 16:37:59 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 4F2291178
 for <freebsd-emulation@freebsd.org>; Mon,  6 Mar 2017 16:37:59 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 4B7AECFB379; Mon,  6 Mar 2017 16:37:59 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B20ECFB378
 for <emulation@mailman.ysv.freebsd.org>; Mon,  6 Mar 2017 16:37:59 +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 mx1.freebsd.org (Postfix) with ESMTPS id 393EC1177
 for <emulation@FreeBSD.org>; Mon,  6 Mar 2017 16:37:59 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v26Gbwdc042676
 for <emulation@FreeBSD.org>; Mon, 6 Mar 2017 16:37:59 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217562] emulators/linux_base-c7: strange path truncating when
 exec'ing in bash scripts
Date: Mon, 06 Mar 2017 16:37:59 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: tijl@FreeBSD.org
X-Bugzilla-Status: Closed
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: tijl@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: assigned_to resolution bug_status
Message-ID: <bug-217562-4077-Nwk7XNJkNB@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217562-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 06 Mar 2017 16:37:59 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217562

Tijl Coosemans <tijl@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|emulation@FreeBSD.org       |tijl@FreeBSD.org
         Resolution|---                         |FIXED
             Status|New                         |Closed

--- Comment #4 from Tijl Coosemans <tijl@FreeBSD.org> ---
This has been fixed in base r312699 and merged to stable/10 and 11 a few da=
ys
later, so try updating to one of these.

As a workaround you can replace '#! ...' with '#! /compat/linux/bin/bash'. =
 The
problem only exists in the 64 bit linux support so another possibility is to
use the 32 bit version of linux_base-c6.  To do that add
DEFAULT_VERSIONS+=3Dlinux=3Dc6 to /etc/make.conf and build/install
emulators/linux_base-c6.

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 15:26:08 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6437CD049DE
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 15:26:08 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 4EA471653
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 15:26:08 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 4E091D049DD; Thu,  9 Mar 2017 15:26:08 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DA81D049DC
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 15:26:08 +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 mx1.freebsd.org (Postfix) with ESMTPS id 3BD741652
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 15:26:08 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29FQ8wO016564
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 15:26:08 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="UTF-8"
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: maintainer-feedback requested: [Bug 217662] devel/linux-c7-nspr:
 update to 4.13.1
Date: Thu, 09 Mar 2017 15:26:07 +0000
X-Bugzilla-Type: request
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: 
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
Message-ID: <bug-217662-4077-wZpyJc62vW@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217662-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217662-4077@https.bugs.freebsd.org/bugzilla/>
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 15:26:08 -0000

Piotr Kubaj <pkubaj@anongoth.pl> has reassigned Bugzilla Automation
<bugzilla@FreeBSD.org>'s request for maintainer-feedback to
emulation@FreeBSD.org:
Bug 217662: devel/linux-c7-nspr: update to 4.13.1
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217662



--- Description ---
Created attachment 180671
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180671&action=
=3Dedit
patch

This patch updates the port to the version 4.13.1.

Changelog: https://rhn.redhat.com/errata/RHEA-2017-0460.html

Builds fine on 10.3-RELEASE on Poudriere.

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 15:26:08 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89FFED049E5
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 15:26:08 +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 72D901656
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 15:26:08 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 724BED049E0; Thu,  9 Mar 2017 15:26:08 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72025D049DF
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 15:26:08 +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 mx1.freebsd.org (Postfix) with ESMTPS id 61C161655
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 15:26:08 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29FQ8wQ016564
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 15:26:08 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217662] devel/linux-c7-nspr: update to 4.13.1
Date: Thu, 09 Mar 2017 15:26:07 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: pkubaj@anongoth.pl
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
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 attachments.created
Message-ID: <bug-217662-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 15:26:08 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217662

            Bug ID: 217662
           Summary: devel/linux-c7-nspr: update to 4.13.1
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: emulation@FreeBSD.org
          Reporter: pkubaj@anongoth.pl
          Assignee: emulation@FreeBSD.org
             Flags: maintainer-feedback?(emulation@FreeBSD.org)

Created attachment 180671
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180671&action=
=3Dedit
patch

This patch updates the port to the version 4.13.1.

Changelog: https://rhn.redhat.com/errata/RHEA-2017-0460.html

Builds fine on 10.3-RELEASE on Poudriere.

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 15:27:21 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B7DCD04B8A
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 15:27:21 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 853B518CE
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 15:27:21 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 84AA6D04B88; Thu,  9 Mar 2017 15:27:21 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 84566D04B87
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 15:27:21 +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 mx1.freebsd.org (Postfix) with ESMTPS id 743B018CC
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 15:27:21 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29FRLTA018403
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 15:27:21 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217663] security/linux-c7-nss: update to 3.28.2
Date: Thu, 09 Mar 2017 15:27:21 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: pkubaj@anongoth.pl
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
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 attachments.created
Message-ID: <bug-217663-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 15:27:21 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217663

            Bug ID: 217663
           Summary: security/linux-c7-nss: update to 3.28.2
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: emulation@FreeBSD.org
          Reporter: pkubaj@anongoth.pl
             Flags: maintainer-feedback?(emulation@FreeBSD.org)
          Assignee: emulation@FreeBSD.org

Created attachment 180672
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180672&action=
=3Dedit
patch

This patch updates the port to 3.28.2.

Changelog: https://rhn.redhat.com/errata/RHEA-2017-0460.html

Builds fine with Poudriere on 10.3-RELEASE.

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 15:27:21 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74490D04B85
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 15:27:21 +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 5E4BC18CB
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 15:27:21 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 5D9C8D04B84; Thu,  9 Mar 2017 15:27:21 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A946D04B83
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 15:27:21 +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 mx1.freebsd.org (Postfix) with ESMTPS id 4B16718CA
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 15:27:21 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29FRLT8018403
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 15:27:21 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="UTF-8"
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: maintainer-feedback requested: [Bug 217663] security/linux-c7-nss:
 update to 3.28.2
Date: Thu, 09 Mar 2017 15:27:21 +0000
X-Bugzilla-Type: request
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: 
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
Message-ID: <bug-217663-4077-7rwPrTetQa@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217663-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217663-4077@https.bugs.freebsd.org/bugzilla/>
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 15:27:21 -0000

Piotr Kubaj <pkubaj@anongoth.pl> has reassigned Bugzilla Automation
<bugzilla@FreeBSD.org>'s request for maintainer-feedback to
emulation@FreeBSD.org:
Bug 217663: security/linux-c7-nss: update to 3.28.2
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217663



--- Description ---
Created attachment 180672
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180672&action=
=3Dedit
patch

This patch updates the port to 3.28.2.

Changelog: https://rhn.redhat.com/errata/RHEA-2017-0460.html

Builds fine with Poudriere on 10.3-RELEASE.

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 17:19:13 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC50BD04A80
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 17:19:13 +0000 (UTC) (envelope-from jrm@ftfl.ca)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 88126171
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 17:19:13 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 8480AD04A7F; Thu,  9 Mar 2017 17:19:13 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 841ECD04A7C
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 17:19:13 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 5235C170
 for <emulation@freebsd.org>; Thu,  9 Mar 2017 17:19:13 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by freefall.freebsd.org (Postfix)
 id 90EA52B86; Thu,  9 Mar 2017 17:19:12 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 78B2A2B85
 for <vbox@localmail.freebsd.org>; Thu,  9 Mar 2017 17:19:12 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: from mail-qk0-f193.google.com (mail-qk0-f193.google.com
 [209.85.220.193])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 8A84A16F
 for <vbox@freebsd.org>; Thu,  9 Mar 2017 17:19:11 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by mail-qk0-f193.google.com with SMTP id n141so21198291qke.3
 for <vbox@freebsd.org>; Thu, 09 Mar 2017 09:19:11 -0800 (PST)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:from:to:subject:date:message-id:user-agent
 :mime-version;
 bh=gCyfUGvUx/IjAYDw5IwZsKz8SdGuKUIFUHdNB/Dc3CE=;
 b=o0WYymKkV5EqHbYiZoXicOUJ+hCbQE8A6xwXIbwmZwGILv9gGdos8KTh0k7AAmYEAJ
 kAupQbL6teUyi96KxhfLGaWxGeO0+agoIKPIbeYMahAE8SbquJh8CgTbxVaNSLgYjGiM
 SRS4DOOxVC5NkuZiBJST3WWiWjN2nmuK+YvhZpjWraTMIqgIE2xjK2ncOmx30sLKpKLm
 Lm3wnryT4cumEwJLwu1oG3OtCKo8k9VlPckkmou1MQAw/TT7t3HOpk/CFBe5QL8FydvR
 Pj70k0u4gC2mF69iPsznJRfgukuyfwpPAZFnGHZkDaJIVl3no30MdBYUZR2XD3P/JjFP
 MBQw==
X-Gm-Message-State: AMke39nUMapLpIY+rBqQtsfQkhrvnFCbjt7xniecXGo8fG/08o0K71O90a3E+wlrqXkyXw==
X-Received: by 10.200.45.216 with SMTP id q24mr14499101qta.41.1489070937576;
 Thu, 09 Mar 2017 06:48:57 -0800 (PST)
Received: from phe.ftfl.ca.ftfl.ca
 (hlfxns017vw-142068129158.dhcp-dynamic.FibreOp.ns.bellaliant.net.
 [142.68.129.158])
 by smtp.gmail.com with ESMTPSA id t30sm4351923qtt.56.2017.03.09.06.48.56
 for <vbox@freebsd.org>
 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256);
 Thu, 09 Mar 2017 06:48:56 -0800 (PST)
From: Joseph Mingrone <jrm@FreeBSD.org>
To: vbox@FreeBSD.org
Subject: emulators/virtualbox-ose build failure
Date: Thu, 09 Mar 2017 10:48:55 -0400
Message-ID: <86efy68q08.fsf@phe.ftfl.ca>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (berkeley-unix)
MIME-Version: 1.0
Content-Type: multipart/signed; boundary="=-=-=";
 micalg=pgp-sha512; protocol="application/pgp-signature"
X-Mailman-Approved-At: Thu, 09 Mar 2017 18:04:19 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 17:19:13 -0000

--=-=-=
Content-Type: text/plain

Hi,

After to latest commit to update to version 5.16.1, the build fails.  I'm using non-default options.

http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/2017-03-09_07h03m13s/logs/errors/virtualbox-ose-5.1.16.log

Regards,

Joseph

--=-=-=
Content-Type: application/pgp-signature; name="signature.asc"

-----BEGIN PGP SIGNATURE-----

iQJ8BAEBCgBmBQJYwWtXXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ1NUIwOTNBNzI2QzM4ODU1NzEyMkJBRDUz
NkE0MEM4M0IwRDZFRjlFAAoJEDakDIOw1u+eHDQP/R2Mo7crvvxi2C8a10ZcpSi8
1pB3C4D7FER5n3xOdrcaylS1E8DcPC2FpT8lsVKrRmT/tS3moVeJ7RiyereewIYa
Z+OjiYnPXah2uTshRYvNe9vTp/Va1BmWla1So7vOyBh1H2fCFpDqW8zEF/dN1zPg
EMBZ8Injly76nC7GJxDV3ltok2WHAXGr0Yn5HSweCeCdic61k/p/wCAjtn8xnleR
5xpFb7qkrvDaNGC3et7WAAJGikdjGMZOsYoPDfdVuvLErmIRtV9nIowOsd83US1J
/4OPnuX1BTkIyR9LHylfbHza4/mNJSWl9KIhPU3b7j4mldVO4jploPs6F+kfvnyf
HkA3u6Wn9WQl1PCa1ziuDwG0hXZa/xltCKMFhe3UZxKimKoJ9F7QVViNU48eplFn
b0XdlH06C5pyVnQmyswQBxu2UzYHvLyvFJnYVjmui4eeS1tJH+JYb4fMsAcDTsx2
nOVcJKy56cu7GKYktWHfb/fADD0+OVs+RRa5S68TtSM98fNLd/dNxvVZNFwEeeXC
NU/MOk/ylVy2Q3n8aO4NNkssE4xOBHeYoXI6LyJpoDGJPq6wt+yPOW8F6Dx6LHoB
KSutsFUCNbmY3z4z/66bZ5xySuNSXJzHlvG8vXnp3w8pP9EbV3bH507DWMBGHLye
9BI9+fyLmN13O81olWQy
=pitl
-----END PGP SIGNATURE-----
--=-=-=--

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 18:16:52 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02918D0504C
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 18:16:52 +0000 (UTC)
 (envelope-from gpalmer@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id DCA7D1342
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 18:16:51 +0000 (UTC)
 (envelope-from gpalmer@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id DBF2CD0504B; Thu,  9 Mar 2017 18:16:51 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB977D0504A
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 18:16:51 +0000 (UTC)
 (envelope-from gpalmer@freebsd.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id AE8361341
 for <emulation@freebsd.org>; Thu,  9 Mar 2017 18:16:51 +0000 (UTC)
 (envelope-from gpalmer@freebsd.org)
Received: by freefall.freebsd.org (Postfix)
 id 0007B3F6B; Thu,  9 Mar 2017 18:16:51 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id DA13B3F6A;
 Thu,  9 Mar 2017 18:16:50 +0000 (UTC)
 (envelope-from gpalmer@freebsd.org)
Received: from mail.in-addr.com (mail.in-addr.com
 [IPv6:2a01:4f8:191:61e8::2525:2525])
 (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 CFFF6133A;
 Thu,  9 Mar 2017 18:16:46 +0000 (UTC)
 (envelope-from gpalmer@freebsd.org)
Received: from gjp by mail.in-addr.com with local (Exim 4.89 (FreeBSD))
 (envelope-from <gpalmer@freebsd.org>)
 id 1cm2cG-0005Gg-1X; Thu, 09 Mar 2017 18:16:44 +0000
Date: Thu, 9 Mar 2017 18:16:44 +0000
From: Gary Palmer <gpalmer@freebsd.org>
To: Joseph Mingrone <jrm@FreeBSD.org>
Cc: vbox@FreeBSD.org
Subject: Re: emulators/virtualbox-ose build failure
Message-ID: <20170309181643.GA32477@in-addr.com>
References: <86efy68q08.fsf@phe.ftfl.ca>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <86efy68q08.fsf@phe.ftfl.ca>
X-SA-Exim-Connect-IP: <locally generated>
X-SA-Exim-Mail-From: gpalmer@freebsd.org
X-SA-Exim-Scanned: No (on mail.in-addr.com); SAEximRunCond expanded to false
X-Mailman-Approved-At: Thu, 09 Mar 2017 18:49:08 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 18:16:52 -0000

On Thu, Mar 09, 2017 at 10:48:55AM -0400, Joseph Mingrone wrote:
> Hi,
> 
> After to latest commit to update to version 5.16.1, the build fails.  I'm using non-default options.
> 
> http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/2017-03-09_07h03m13s/logs/errors/virtualbox-ose-5.1.16.log

I see the same issue on one of my systems.

Regards,

Gary

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:10:50 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E466D05388
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:10:50 +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 575D211A
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:10:50 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 53B1AD05387; Thu,  9 Mar 2017 19:10:50 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 53551D05386
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:10:50 +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 mx1.freebsd.org (Postfix) with ESMTPS id 42D1C118
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:10:50 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JAnFO098377
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:10:50 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217394] emulators/linux_base-c6: update util-linux-ng to
 2.17.2-12.24.el6_8.3
Date: Thu, 09 Mar 2017 19:10:50 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: commit-hook@freebsd.org
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: 
Message-ID: <bug-217394-4077-2F0rs4dA7K@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217394-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217394-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:10:50 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217394

--- Comment #1 from commit-hook@freebsd.org ---
A commit references this bug:

Author: tijl
Date: Thu Mar  9 19:10:16 UTC 2017
New revision: 435785
URL: https://svnweb.freebsd.org/changeset/ports/435785

Log:
  Update util-linux-ng to 2.17.2-12.24.el6_8.3.

  PR:           217394
  Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>

Changes:
  head/emulators/linux_base-c6/Makefile
  head/emulators/linux_base-c6/distinfo

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:12:53 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD476D055BE
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:12:53 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id A690B6E7
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:12:53 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id A5FD5D055BC; Thu,  9 Mar 2017 19:12:53 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id A57CFD055BA
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:12:53 +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 mx1.freebsd.org (Postfix) with ESMTPS id 924556E6
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:12:53 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JCrBE009509
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:12:53 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 216220] devel/linux-c6-devtools: update kernel-headers to
 2.6.32-642.13.1.el6
Date: Thu, 09 Mar 2017 19:12:53 +0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: commit-hook@freebsd.org
X-Bugzilla-Status: Closed
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: tijl@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: 
Message-ID: <bug-216220-4077-djMVCCyoRr@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-216220-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-216220-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:12:53 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D216220

--- Comment #3 from commit-hook@freebsd.org ---
A commit references this bug:

Author: tijl
Date: Thu Mar  9 19:12:41 UTC 2017
New revision: 435786
URL: https://svnweb.freebsd.org/changeset/ports/435786

Log:
  Update kernel-headers to 2.6.32-642.13.2.el6.

  PR:           216220
  Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>

Changes:
  head/devel/linux-c6-devtools/Makefile
  head/devel/linux-c6-devtools/distinfo

--=20
You are receiving this mail because:
You are on the CC list for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:16:58 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0BC7D0578D
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:16:58 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 93FD4ADB
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:16:58 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 934A8D0578C; Thu,  9 Mar 2017 19:16:58 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92E56D0578B
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:16:58 +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 mx1.freebsd.org (Postfix) with ESMTPS id 7F2A9AD5
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:16:58 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JGw85017840
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:16:58 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217396] devel/linux-c7-devtools: update kernel-headers to
 3.10.0-514.6.2.el7
Date: Thu, 09 Mar 2017 19:16:58 +0000
X-Bugzilla-Reason: CC AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: commit-hook@freebsd.org
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: 
Message-ID: <bug-217396-4077-ug0TQWPtcH@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217396-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217396-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:16:58 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217396

--- Comment #2 from commit-hook@freebsd.org ---
A commit references this bug:

Author: tijl
Date: Thu Mar  9 19:16:35 UTC 2017
New revision: 435789
URL: https://svnweb.freebsd.org/changeset/ports/435789

Log:
  Update kernel-headers to 3.10.0-514.10.2.el7.

  PR:           217396
  Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>

Changes:
  head/devel/linux-c7-devtools/Makefile
  head/devel/linux-c7-devtools/distinfo

--=20
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:19:03 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE1C8D0584B
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:19:03 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id B7DA610DC
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:19:03 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id B46E7D0584A; Thu,  9 Mar 2017 19:19:03 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4194D05849
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:19:03 +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 mx1.freebsd.org (Postfix) with ESMTPS id A405310DB
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:19:03 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JJ3kX020576
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:19:03 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217662] devel/linux-c7-nspr: update to 4.13.1
Date: Thu, 09 Mar 2017 19:19:03 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: commit-hook@freebsd.org
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: 
Message-ID: <bug-217662-4077-SDjD9xLh0I@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217662-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217662-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:19:03 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217662

--- Comment #1 from commit-hook@freebsd.org ---
A commit references this bug:

Author: tijl
Date: Thu Mar  9 19:18:39 UTC 2017
New revision: 435795
URL: https://svnweb.freebsd.org/changeset/ports/435795

Log:
  Update to 4.13.1-1.0.el7_3.

  PR:           217662
  Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>

Changes:
  head/devel/linux-c7-nspr/Makefile
  head/devel/linux-c7-nspr/distinfo

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 18:35:24 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74B6ED05714
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 18:35:24 +0000 (UTC)
 (envelope-from jkim@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 574C8178
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 18:35:24 +0000 (UTC)
 (envelope-from jkim@FreeBSD.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 53A2DD05713; Thu,  9 Mar 2017 18:35:24 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5340ED05712
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 18:35:24 +0000 (UTC)
 (envelope-from jkim@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 28CCD177
 for <emulation@freebsd.org>; Thu,  9 Mar 2017 18:35:24 +0000 (UTC)
 (envelope-from jkim@FreeBSD.org)
Received: by freefall.freebsd.org (Postfix)
 id 6EFED44C1; Thu,  9 Mar 2017 18:35:23 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 5853D44C0;
 Thu,  9 Mar 2017 18:35:23 +0000 (UTC)
 (envelope-from jkim@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 by mx1.freebsd.org (Postfix) with ESMTP id 42C08175;
 Thu,  9 Mar 2017 18:35:22 +0000 (UTC)
 (envelope-from jkim@FreeBSD.org)
Subject: Re: emulators/virtualbox-ose build failure
To: Joseph Mingrone <jrm@FreeBSD.org>, vbox@FreeBSD.org
References: <86efy68q08.fsf@phe.ftfl.ca>
From: Jung-uk Kim <jkim@FreeBSD.org>
Message-ID: <cd9b1cd3-7901-0eef-5c02-5e506edfdabf@FreeBSD.org>
Date: Thu, 9 Mar 2017 13:35:21 -0500
User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101
 Thunderbird/45.8.0
MIME-Version: 1.0
In-Reply-To: <86efy68q08.fsf@phe.ftfl.ca>
Content-Type: multipart/signed; micalg=pgp-sha256;
 protocol="application/pgp-signature";
 boundary="4fCvuIRUAuCPSFWgi39cb11Wnc2Cqu23V"
X-Mailman-Approved-At: Thu, 09 Mar 2017 19:20:54 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 18:35:24 -0000

This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
--4fCvuIRUAuCPSFWgi39cb11Wnc2Cqu23V
Content-Type: multipart/mixed; boundary="8mVTDTjjski6dbHpXBhR2EbbhL1u14XHd";
 protected-headers="v1"
From: Jung-uk Kim <jkim@FreeBSD.org>
To: Joseph Mingrone <jrm@FreeBSD.org>, vbox@FreeBSD.org
Message-ID: <cd9b1cd3-7901-0eef-5c02-5e506edfdabf@FreeBSD.org>
Subject: Re: emulators/virtualbox-ose build failure
References: <86efy68q08.fsf@phe.ftfl.ca>
In-Reply-To: <86efy68q08.fsf@phe.ftfl.ca>

--8mVTDTjjski6dbHpXBhR2EbbhL1u14XHd
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable

On 03/09/2017 09:48, Joseph Mingrone wrote:
> Hi,
>=20
> After to latest commit to update to version 5.16.1, the build fails.  I=
'm using non-default options.
>=20
> http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/2017-03-09_07h=
03m13s/logs/errors/virtualbox-ose-5.1.16.log

Yes, I am aware of that.  In fact, Qt4 support is rotting pretty fast.
I'll fix it for now but we may have to remove the option in the future.

Jung-uk Kim


--8mVTDTjjski6dbHpXBhR2EbbhL1u14XHd--

--4fCvuIRUAuCPSFWgi39cb11Wnc2Cqu23V
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: OpenPGP digital signature
Content-Disposition: attachment; filename="signature.asc"

-----BEGIN PGP SIGNATURE-----

iQEzBAEBCAAdFiEEl1bqgKaRyqfWXu/CfJ+WJvzb8UYFAljBoGkACgkQfJ+WJvzb
8UaQIgf+PAp1UoEezCxPn7UwvJ0h4DMb26I88BX5D7FK0z0NjkssYfd6uHiSolmc
ZPqhbrAdNZBt3K0nEBPmKmGf7pQfrkmOgJCO/Xuti7qjZj9NOrSs75LsImH5Kr3O
DnycgIj/YNWa0v+28U0b5HDzB5mFUWdqVToaCbkWV7xs69gvB73m3ihDCU5XLZta
STzDhTYBg9SFdXKZOsuXTRyndaooCcivMUvZJy3eegzWoI/pA4FpazGYu+kwO0N2
+p+E6geKeGn03skSzLmr4G/nw1wg3CE+EAsEthALZYBtp5STekQ/Hb9EUXwU8/WB
pxH0AG744owXYfv32oxWP9vaBrCdbQ==
=1i9a
-----END PGP SIGNATURE-----

--4fCvuIRUAuCPSFWgi39cb11Wnc2Cqu23V--

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:21:07 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26501D058FA
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:21:07 +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 0FD2C133D
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:21:07 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 0C457D058F9; Thu,  9 Mar 2017 19:21:07 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BC56D058F8
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:21:07 +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 mx1.freebsd.org (Postfix) with ESMTPS id EFD80133B
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:21:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JL6uY024620
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:21:06 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217663] security/linux-c7-nss: update to 3.28.2
Date: Thu, 09 Mar 2017 19:21:07 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: commit-hook@freebsd.org
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: emulation@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: 
Message-ID: <bug-217663-4077-n6IvEnohjl@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217663-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217663-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:21:07 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217663

--- Comment #1 from commit-hook@freebsd.org ---
A commit references this bug:

Author: tijl
Date: Thu Mar  9 19:20:19 UTC 2017
New revision: 435796
URL: https://svnweb.freebsd.org/changeset/ports/435796

Log:
  Update to 3.28.2-1.6.el7_3.

  PR:           217663
  Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>

Changes:
  head/security/linux-c7-nss/Makefile
  head/security/linux-c7-nss/distinfo

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:21:09 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFB0BD0590D
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:21:09 +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 B56671352
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:21:09 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id B4AB2D0590C; Thu,  9 Mar 2017 19:21:09 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4115D0590B
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:21:09 +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 mx1.freebsd.org (Postfix) with ESMTPS id A0B47134E
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:21:09 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JL9EA024745
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:21:09 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217394] emulators/linux_base-c6: update util-linux-ng to
 2.17.2-12.24.el6_8.3
Date: Thu, 09 Mar 2017 19:21:09 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: tijl@FreeBSD.org
X-Bugzilla-Status: Closed
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: tijl@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: bug_status assigned_to resolution
Message-ID: <bug-217394-4077-k3n0hA3L6q@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217394-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217394-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:21:09 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217394

Tijl Coosemans <tijl@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|New                         |Closed
           Assignee|emulation@FreeBSD.org       |tijl@FreeBSD.org
         Resolution|---                         |FIXED

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:21:20 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E6E7D05A34
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:21:20 +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 171541418
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:21:20 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 1675BD05A33; Thu,  9 Mar 2017 19:21:20 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 161D3D05A32
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:21:20 +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 mx1.freebsd.org (Postfix) with ESMTPS id 054001410
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:21:20 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JLJ0h024984
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:21:19 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217395] devel/linux-c6-devtools: update kernel-headers to
 2.6.32-642.13.2.el6
Date: Thu, 09 Mar 2017 19:21:20 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: tijl@FreeBSD.org
X-Bugzilla-Status: Closed
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: tijl@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: bug_status assigned_to resolution
Message-ID: <bug-217395-4077-3F4iyKgb9Y@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217395-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217395-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:21:20 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217395

Tijl Coosemans <tijl@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|New                         |Closed
           Assignee|emulation@FreeBSD.org       |tijl@FreeBSD.org
         Resolution|---                         |FIXED

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:21:34 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 743DED05B02
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:21:34 +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 5CE061515
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:21:34 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 5C45ED05B01; Thu,  9 Mar 2017 19:21:34 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BB99D05B00
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:21:34 +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 mx1.freebsd.org (Postfix) with ESMTPS id 4AD631512
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:21:34 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JLYOu027180
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:21:34 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217396] devel/linux-c7-devtools: update kernel-headers to
 3.10.0-514.6.2.el7
Date: Thu, 09 Mar 2017 19:21:34 +0000
X-Bugzilla-Reason: CC AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: tijl@FreeBSD.org
X-Bugzilla-Status: Closed
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: tijl@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: resolution bug_status assigned_to
Message-ID: <bug-217396-4077-CghNzuDcyI@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217396-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217396-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:21:34 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217396

Tijl Coosemans <tijl@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|New                         |Closed
           Assignee|emulation@FreeBSD.org       |tijl@FreeBSD.org

--=20
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:21:46 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FC61D05B92
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:21:46 +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 57E4016D7
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:21:46 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 5755DD05B91; Thu,  9 Mar 2017 19:21:46 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5706ED05B90
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:21:46 +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 mx1.freebsd.org (Postfix) with ESMTPS id 467F916D6
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:21:46 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JLkeg030004
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:21:46 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217662] devel/linux-c7-nspr: update to 4.13.1
Date: Thu, 09 Mar 2017 19:21:46 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: tijl@FreeBSD.org
X-Bugzilla-Status: Closed
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: tijl@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: assigned_to resolution bug_status
Message-ID: <bug-217662-4077-NmwMRm3NWJ@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217662-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217662-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:21:46 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217662

Tijl Coosemans <tijl@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|emulation@FreeBSD.org       |tijl@FreeBSD.org
         Resolution|---                         |FIXED
             Status|New                         |Closed

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 18:44:39 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id AADD0D05A02
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 18:44:39 +0000 (UTC) (envelope-from jrm@ftfl.ca)
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 83C91A19
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 18:44:39 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 8040FD05A01; Thu,  9 Mar 2017 18:44:39 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D31AD05A00
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 18:44:39 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 3E25EA18
 for <emulation@freebsd.org>; Thu,  9 Mar 2017 18:44:39 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by freefall.freebsd.org (Postfix)
 id 903AB4764; Thu,  9 Mar 2017 18:44:38 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 798FA4763
 for <vbox@localmail.freebsd.org>; Thu,  9 Mar 2017 18:44:38 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: from mail-qk0-f169.google.com (mail-qk0-f169.google.com
 [209.85.220.169])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 73537A17
 for <vbox@freebsd.org>; Thu,  9 Mar 2017 18:44:36 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by mail-qk0-f169.google.com with SMTP id v125so130914481qkh.2
 for <vbox@freebsd.org>; Thu, 09 Mar 2017 10:44:36 -0800 (PST)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to
 :message-id:user-agent:mime-version;
 bh=UEgIWLa/35UJnP2NDQhYC+5ItiE26l5Dt5aHAD+/h3o=;
 b=bvJ94ro8d2r5lLAcVWWuCl+tMC2X1pe4M366srlyLqpsPlZLJU1etMXRu+Rv0v7q5W
 30FOHRUNmX0Rpue3Zd+//YX6EQTRekC+kjZ9acH4HxgUmcDPQQuUghlvc8gQpqC/Vbn4
 zXOGceRzy/j7/F47uCKpKetV6Yrna03er4af4QVwwyhFU7lHHaLcZjQkbCMWQ1h0s4Gm
 sWVwDEcO4xA2hfIjVevxVAQQBchOV9vtD8epubvla+btJ8kR2lfWAsai/wEPM3eQ/qLc
 RRAS3LDyrKlyFuLUs7vlAncWxXG8dG78Kae48KYrhouggBSAyQVRp4864YoOiCxpUN6b
 wE1w==
X-Gm-Message-State: AMke39mhpopqHgwna7/vOPgr2Btxfp6/UTbzEtgQaiXNlM7Qcz51pGEHTcjIlU36xrDeNQ==
X-Received: by 10.237.60.65 with SMTP id u1mr15297914qte.176.1489084661261;
 Thu, 09 Mar 2017 10:37:41 -0800 (PST)
Received: from phe.ftfl.ca.ftfl.ca
 (hlfxns017vw-142068129158.dhcp-dynamic.FibreOp.ns.bellaliant.net.
 [142.68.129.158])
 by smtp.gmail.com with ESMTPSA id m67sm4746513qte.54.2017.03.09.10.37.40
 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256);
 Thu, 09 Mar 2017 10:37:40 -0800 (PST)
From: Joseph Mingrone <jrm@FreeBSD.org>
To: Jung-uk Kim <jkim@FreeBSD.org>
Cc: vbox@FreeBSD.org
Subject: Re: emulators/virtualbox-ose build failure
References: <86efy68q08.fsf@phe.ftfl.ca>
 <cd9b1cd3-7901-0eef-5c02-5e506edfdabf@FreeBSD.org>
Date: Thu, 09 Mar 2017 14:37:39 -0400
In-Reply-To: <cd9b1cd3-7901-0eef-5c02-5e506edfdabf@FreeBSD.org> (Jung-uk Kim's
 message of "Thu, 9 Mar 2017 13:35:21 -0500")
Message-ID: <86vari70uk.fsf@phe.ftfl.ca>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (berkeley-unix)
MIME-Version: 1.0
Content-Type: multipart/signed; boundary="=-=-=";
 micalg=pgp-sha512; protocol="application/pgp-signature"
X-Mailman-Approved-At: Thu, 09 Mar 2017 19:21:49 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 18:44:39 -0000

--=-=-=
Content-Type: text/plain

Jung-uk Kim <jkim@FreeBSD.org> writes:

> On 03/09/2017 09:48, Joseph Mingrone wrote:
>> Hi,

>> After to latest commit to update to version 5.16.1, the build fails.  I'm using non-default options.

>> http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/2017-03-09_07h03m13s/logs/errors/virtualbox-ose-5.1.16.log

> Yes, I am aware of that.  In fact, Qt4 support is rotting pretty fast.
> I'll fix it for now but we may have to remove the option in the future.

Understood.  Thanks.  I cling to Qt4 because, IIRC, Qt5 pulls in DBus.

--=-=-=
Content-Type: application/pgp-signature; name="signature.asc"

-----BEGIN PGP SIGNATURE-----

iQJ8BAEBCgBmBQJYwaDzXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ1NUIwOTNBNzI2QzM4ODU1NzEyMkJBRDUz
NkE0MEM4M0IwRDZFRjlFAAoJEDakDIOw1u+eYqsP/23l+sF4+uW6ECzQavtJUdxr
BxN4V/2+Ypp61oSW76+A8I6/YjXJRY161E6mnmpF5Rle2hADlU6itDCxdHtmg9Js
2Ny4iPls3Mp/1kaBHbTxHh/JoMT3OqPfra2grG/XYmgw+nu0IqeGHuDWa3W8auTp
WAfE5zXnYgek1JODgB205juVkWMZ7qMBz6zSSV7KuR/nuHatLRECp8nLpbvvOyn1
tPvKKgJRZ0aT6gYIH/eP9FxAeGHwv36j2RovYK09uqUWVF4x628VJ4MxbbNcave/
Rk141IqeGz5/Ff6LQ6DiqvQzVRufDexgn9O2i+GpjEru2Z1fuIFQXuFxwPquHOTm
D8xlQBB/XMBYb1quBtc/eqCA9PBqkeNlUrW+82cXPf4/mfYu9p4a8RvldQV/R4C2
DKtjai282lJBWhdfTz06uSQww7tBHoq4nZNrWNXKacWB2i3M8Xou8G71AHuT7mgZ
keSQrcgsZLnfPs7TB0UGL/vLESBz8+AZUDLueXMmfNeOtPxiyB1lXGHd9jhKmcKS
Eb3TtPFYzVbcj9WXR4PYn76PJysmjnnFvlKvoHs2DdmrL/eS374u6zd2GY7bOwkW
NC0B+axPaIuClcOoNhfSTV3walNmhIcrgfFND0FyWoZCV36x1YD8BIA/q8bl06MV
dHM6ioZxpiW/aX8McW/o
=FUdh
-----END PGP SIGNATURE-----
--=-=-=--

From owner-freebsd-emulation@freebsd.org  Thu Mar  9 19:22:13 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E6C7D05C31
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Thu,  9 Mar 2017 19:22:13 +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 3EB3B18E4
 for <freebsd-emulation@freebsd.org>; Thu,  9 Mar 2017 19:22:13 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 3E181D05C30; Thu,  9 Mar 2017 19:22:13 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DC89D05C2F
 for <emulation@mailman.ysv.freebsd.org>; Thu,  9 Mar 2017 19:22:13 +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 mx1.freebsd.org (Postfix) with ESMTPS id 2D61618E2
 for <emulation@FreeBSD.org>; Thu,  9 Mar 2017 19:22:13 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v29JMD4R033480
 for <emulation@FreeBSD.org>; Thu, 9 Mar 2017 19:22:13 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: emulation@FreeBSD.org
Subject: [Bug 217663] security/linux-c7-nss: update to 3.28.2
Date: Thu, 09 Mar 2017 19:22:13 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: tijl@FreeBSD.org
X-Bugzilla-Status: Closed
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: tijl@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: resolution assigned_to bug_status
Message-ID: <bug-217663-4077-NXMf7lNTRh@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217663-4077@https.bugs.freebsd.org/bugzilla/>
References: <bug-217663-4077@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Mar 2017 19:22:13 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217663

Tijl Coosemans <tijl@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
           Assignee|emulation@FreeBSD.org       |tijl@FreeBSD.org
             Status|New                         |Closed

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 04:48:37 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7979ED05813
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 04:48:37 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 4F719165A
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 04:48:37 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 4BE17D05812; Fri, 10 Mar 2017 04:48:37 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B823D05811
 for <emulation@mailman.ysv.freebsd.org>; Fri, 10 Mar 2017 04:48:37 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 142B71659
 for <emulation@freebsd.org>; Fri, 10 Mar 2017 04:48:37 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: by freefall.freebsd.org (Postfix)
 id 51CFE493F; Fri, 10 Mar 2017 04:48:36 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 2CBB4493E;
 Fri, 10 Mar 2017 04:48:36 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: from mail-ot0-x234.google.com (mail-ot0-x234.google.com
 [IPv6:2607:f8b0:4003:c0f::234])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 294B91656;
 Fri, 10 Mar 2017 04:48:35 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: by mail-ot0-x234.google.com with SMTP id x37so70230653ota.2;
 Thu, 09 Mar 2017 20:48:35 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:sender:in-reply-to:references:from:date:message-id
 :subject:to:cc;
 bh=6YwBVAtlEVjfxLZtFVI8BkUXE4Ldl3OZA6Njf6vNWos=;
 b=OOEZKbXCd46gQgieCbjlBO8A5wdm6QmgTBzDUT8b80V5r6lrePSx1aExGa5VO1KU8X
 meR4/AKOV5bDDtiz9EVU8T0mTeoY7UPgyRj2vJqsOvBZsdiiU5k3k9A2cUfWUQ+BFhZK
 n0QioACNyFOJWEvZnXwNUkrCB7GA/d3Ya6oZAeHCoCyf1Dxd7+zAZ5PepIjxlJhCiE8/
 ZaEr8h/TLifAw1RzC+x2caZtpQnw4KOMLe7fJapD15lRxyKAzXsyMCPL0FfhdRqyJX3o
 iQV60Xg1QRqX52DdeonvgMreVRY66WveHI6E/1bSghQsq5fUFTCIapc+ol6r+IeXfsf7
 XqHQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:sender:in-reply-to:references:from
 :date:message-id:subject:to:cc;
 bh=6YwBVAtlEVjfxLZtFVI8BkUXE4Ldl3OZA6Njf6vNWos=;
 b=c5A93mvL6wiZnQ3VJDNHd5sWzcjJ7nB7Xyc4p93zUP5TnLY5+8NdKI/1PMQWQjOeFV
 rHVCXhRKlk3z8rp86e4Q4ZHOiMzfOH6LE3ctfYmUIZkmrd74fb0CGFyo3R17puewCzjG
 jjiSodYL5LdIXOOMXYLMKsOVjTJsHcz4s9fE+G82qiKZxYrLNaoGiXet1H2OhIGyKJPm
 rzzJX/hnSblv3ahHZvPgAi82Qn8dgSOpU0cAXZpvVztqArF2/15xPQkKy61RsY8BOD0m
 5bepWnTBdCZn/e8lS4D8HY4jkkLBwIPUK7QsK1CF5L6QVFCgoPF/Rt5wARFjCWcg8i+o
 i6bw==
X-Gm-Message-State: AMke39nvFAoyMWVRESskqSiBA2ygc/C6hdRbUjbFhajqc0YEqNSXAaeWU7vB4TKTKHpzvKpSgIZXHoQZnvf26Q==
X-Received: by 10.157.50.6 with SMTP id t6mr8465033otc.266.1489121314347; Thu,
 09 Mar 2017 20:48:34 -0800 (PST)
MIME-Version: 1.0
Sender: kob6558@gmail.com
Received: by 10.74.32.79 with HTTP; Thu, 9 Mar 2017 20:48:34 -0800 (PST)
In-Reply-To: <86vari70uk.fsf@phe.ftfl.ca>
References: <86efy68q08.fsf@phe.ftfl.ca>
 <cd9b1cd3-7901-0eef-5c02-5e506edfdabf@FreeBSD.org>
 <86vari70uk.fsf@phe.ftfl.ca>
From: Kevin Oberman <rkoberman@gmail.com>
Date: Thu, 9 Mar 2017 20:48:34 -0800
X-Google-Sender-Auth: 6hah0EAWz250Ac4ESFwj864QyMk
Message-ID: <CAN6yY1vtDeCfGu22zEnMa_tq3+AMw-do_Mn0zCB2AXMHFd48kQ@mail.gmail.com>
Subject: Re: emulators/virtualbox-ose build failure
To: Joseph Mingrone <jrm@freebsd.org>
Cc: Jung-uk Kim <jkim@freebsd.org>, vbox@freebsd.org
X-Mailman-Approved-At: Fri, 10 Mar 2017 06:19:34 +0000
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 04:48:37 -0000

On Thu, Mar 9, 2017 at 10:37 AM, Joseph Mingrone <jrm@freebsd.org> wrote:

> Jung-uk Kim <jkim@FreeBSD.org> writes:
>
> > On 03/09/2017 09:48, Joseph Mingrone wrote:
> >> Hi,
>
> >> After to latest commit to update to version 5.16.1, the build fails.
> I'm using non-default options.
>
> >> http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/
> 2017-03-09_07h03m13s/logs/errors/virtualbox-ose-5.1.16.log
>
> > Yes, I am aware of that.  In fact, Qt4 support is rotting pretty fast.
> > I'll fix it for now but we may have to remove the option in the future.
>
> Understood.  Thanks.  I cling to Qt4 because, IIRC, Qt5 pulls in DBus.


Just tried with the "fixed" version with no success. Guess I'll move to Qt5
and see how that goes. I already live with DBus.
--
Kevin Oberman, Part time kid herder and retired Network Engineer
E-mail: rkoberman@gmail.com
PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 04:51:01 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id D6DBED058D3
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 04:51:01 +0000 (UTC) (envelope-from jrm@ftfl.ca)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id AE8E1183E
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 04:51:01 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by mailman.ysv.freebsd.org (Postfix)
 id AB06FD058D2; Fri, 10 Mar 2017 04:51:01 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id AAADED058D1
 for <emulation@mailman.ysv.freebsd.org>; Fri, 10 Mar 2017 04:51:01 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 6B45B183D
 for <emulation@freebsd.org>; Fri, 10 Mar 2017 04:51:01 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by freefall.freebsd.org (Postfix)
 id BAE174A6A; Fri, 10 Mar 2017 04:51:00 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 784D74A68
 for <vbox@localmail.freebsd.org>; Fri, 10 Mar 2017 04:51:00 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: from mail-qk0-f193.google.com (mail-qk0-f193.google.com
 [209.85.220.193])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 7E3371836
 for <vbox@freebsd.org>; Fri, 10 Mar 2017 04:50:59 +0000 (UTC)
 (envelope-from jrm@ftfl.ca)
Received: by mail-qk0-f193.google.com with SMTP id v125so24672979qkh.1
 for <vbox@freebsd.org>; Thu, 09 Mar 2017 20:50:59 -0800 (PST)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to
 :message-id:user-agent:mime-version;
 bh=XrTZUOYz1OinGNk2FNuGPK/OE6clYQ2wp0PRlWsvI0g=;
 b=UYsjN4+CM67VSaa4xhEnlBNQVSV4l1sK0yFBusO+rFaAgY6t/oiWUGFZEjvRMZztl7
 LIzEyfrvX3O+8zcIUrzsp3S4hDuIH9sWw7onawlF0GKJe1YWPX2FAyAML0LQhWhA+fhP
 CUrM3S1gglaqC2KUVMEAdC/q6i901bDIinUCg437/Slk4s9WpvhO6qC7M/FjI2f+WYgp
 8pBa3wFKPLG6u9eX3N1jiYwi8uHIe/4dxOFIK6zYCUUZiMWltVhOUwVpBSpYAKbU4rCN
 zl8n5Vnk6h77NkWymlM2Wkqmpyc25YM2zD2v3alYTCHBbGg/WZrA96O1/5laAr3o0fL7
 gxCg==
X-Gm-Message-State: AMke39nruEL1aKzqqmWmrUQnWPmrAZjsFoadbrBcJvpZ05c2DPyV2SpLzA/7qVBYQBPk3w==
X-Received: by 10.55.105.6 with SMTP id e6mr17134925qkc.252.1489121457354;
 Thu, 09 Mar 2017 20:50:57 -0800 (PST)
Received: from phe.ftfl.ca.ftfl.ca
 (hlfxns017vw-142068129158.dhcp-dynamic.FibreOp.ns.bellaliant.net.
 [142.68.129.158])
 by smtp.gmail.com with ESMTPSA id m12sm5729163qtf.25.2017.03.09.20.50.56
 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256);
 Thu, 09 Mar 2017 20:50:56 -0800 (PST)
From: Joseph Mingrone <jrm@FreeBSD.org>
To: Kevin Oberman <rkoberman@gmail.com>
Cc: Jung-uk Kim <jkim@freebsd.org>,  vbox@freebsd.org
Subject: Re: emulators/virtualbox-ose build failure
References: <86efy68q08.fsf@phe.ftfl.ca>
 <cd9b1cd3-7901-0eef-5c02-5e506edfdabf@FreeBSD.org>
 <86vari70uk.fsf@phe.ftfl.ca>
 <CAN6yY1vtDeCfGu22zEnMa_tq3+AMw-do_Mn0zCB2AXMHFd48kQ@mail.gmail.com>
Date: Fri, 10 Mar 2017 00:50:43 -0400
In-Reply-To: <CAN6yY1vtDeCfGu22zEnMa_tq3+AMw-do_Mn0zCB2AXMHFd48kQ@mail.gmail.com>
 (Kevin Oberman's message of "Thu, 9 Mar 2017 20:48:34 -0800")
Message-ID: <864lz1ybto.fsf@phe.ftfl.ca>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (berkeley-unix)
MIME-Version: 1.0
Content-Type: multipart/signed; boundary="=-=-=";
 micalg=pgp-sha512; protocol="application/pgp-signature"
X-Mailman-Approved-At: Fri, 10 Mar 2017 12:07:16 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 04:51:01 -0000

--=-=-=
Content-Type: text/plain

Kevin Oberman <rkoberman@gmail.com> writes:

> On Thu, Mar 9, 2017 at 10:37 AM, Joseph Mingrone <jrm@freebsd.org> wrote:

>> Jung-uk Kim <jkim@FreeBSD.org> writes:

>> > On 03/09/2017 09:48, Joseph Mingrone wrote:
>> >> Hi,

>> >> After to latest commit to update to version 5.16.1, the build fails.
>> I'm using non-default options.

>> >> http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/
>> 2017-03-09_07h03m13s/logs/errors/virtualbox-ose-5.1.16.log

>> > Yes, I am aware of that.  In fact, Qt4 support is rotting pretty fast.
>> > I'll fix it for now but we may have to remove the option in the future.

>> Understood.  Thanks.  I cling to Qt4 because, IIRC, Qt5 pulls in DBus.


> Just tried with the "fixed" version with no success. Guess I'll move to Qt5
> and see how that goes. I already live with DBus.

The fix worked here.

http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/2017-03-09_19h38m01s/logs/virtualbox-ose-5.1.16_1.log

--=-=-=
Content-Type: application/pgp-signature; name="signature.asc"

-----BEGIN PGP SIGNATURE-----

iQJ8BAEBCgBmBQJYwjCjXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ1NUIwOTNBNzI2QzM4ODU1NzEyMkJBRDUz
NkE0MEM4M0IwRDZFRjlFAAoJEDakDIOw1u+eg4kP/A3vMgGCR86t+RSC63ETOU3M
n2t5czwEbZgHwziVuIH7TYZncTI0tSx3H6b7XGGzCD6SAOCYrSXon0z+YD4etWIc
VlHBXNP/3YLR6Bk/Y/yA037ES7x+S/3jij7YGLm/LxJ0GPlaNFC8EEtZLPmlhAX5
Cxddviq8IbaqPlP8YEP2EEzJpbI3iLDOkDgSmkD2w6MXrIqmvVme2YGAjO+/n7E1
M9BU0XM4OGje/aME+mPuRel34I2867fqTNt3KAhI5AvZrDgt4wuWk43xkIyC3x2u
pyR36/g7ALxP9M0bbS6uCftr88IL/8ITjdykt+wkMTtSnBFAvY9As5IDMUmIo6Aw
9XuGXxBWdLoseCzBOboeR8Wwru6Mz5asNuY50v7HSm3VV4YfLitqB2OrIkQ+EGVg
qxiHjWlOST0qCerHn+ArOuXfn9rtnmWQfXZ7l18xg0SQlVZYfvwMjKVkGhCcwGDI
OujE0ADtR44Xh+AnH1MiXB+o8J5bjpDBIL9JZ5L+PjVUbiBtyfVVNehTAw8a3EFt
E4JWDJLq//b8+YMUDFWWpFqvPIt9GpluKQGtbhi0UFfLXkIG85PtKrfb45a6mnnH
Ib5EGw26pbNP0xrtn69BxCvbHcqz9YUIaKPPnQ+3lZoawvFy1zrAIa21ymfNx5hx
2xJYbWsm5J3lC1B4TDjU
=Cxih
-----END PGP SIGNATURE-----
--=-=-=--

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 07:14:25 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B239AD02043
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 07:14:25 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
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 85DD617FA
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 07:14:25 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 8543AD02042; Fri, 10 Mar 2017 07:14:25 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 84E3CD02041
 for <emulation@mailman.ysv.freebsd.org>; Fri, 10 Mar 2017 07:14:25 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 4CDE117F6
 for <emulation@freebsd.org>; Fri, 10 Mar 2017 07:14:25 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: by freefall.freebsd.org (Postfix)
 id 95D495BF7; Fri, 10 Mar 2017 07:14:24 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 582775BF6;
 Fri, 10 Mar 2017 07:14:24 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: from mail-ot0-x22f.google.com (mail-ot0-x22f.google.com
 [IPv6:2607:f8b0:4003:c0f::22f])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 5B56E17F5;
 Fri, 10 Mar 2017 07:14:23 +0000 (UTC)
 (envelope-from kob6558@gmail.com)
Received: by mail-ot0-x22f.google.com with SMTP id 19so71800215oti.0;
 Thu, 09 Mar 2017 23:14:23 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:sender:in-reply-to:references:from:date:message-id
 :subject:to:cc;
 bh=KFIK/JIKuBkwD9Ja5N/WaAOlGqxo8K1+eYpn8H5nLag=;
 b=R0Z/wp4jKbtopadDoim0SIbV77kcnm/xQmvPD85pgKJx8PLPcj+Kg0SrhQd0xSJI+g
 36P4wzhHCucochEKmaJ/VhahGK1d/UZapIlckBmsRlK5At3rMi+s8fisMJO+DiZEwYYt
 Xlt7tv+p9s7piqB431l/B/Dmi4ytBBLYhEoRI894EFNDANImlA48BXdcQo2mvhV4sDL9
 Vz6K01iIE/nd3sPZ68dJuWZzgXZ7xGitZoDmU3HuOW3OyQM5Qp5aKd8Ph3qlMg65EJ7x
 EupHSX3ApERppOe4Fys8/9robpzAxjENl9jKyUlmo2C1rZ+ovAW5/aVCOPvVKB92bkDd
 Qj6g==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:sender:in-reply-to:references:from
 :date:message-id:subject:to:cc;
 bh=KFIK/JIKuBkwD9Ja5N/WaAOlGqxo8K1+eYpn8H5nLag=;
 b=X7kDVrn0c2+oK/e3WeICTgnx3e90TwizTANuxSJsmBuRsOYQziQyZsMh/l80WI53PQ
 K2zvdv6hzyDSpEmH0LdCfm0fbNr7B50yfQhmBdWN7vEkMXDL/2AzjdYUehyBOhkKJjxR
 pX7jgYA0p0Z1LyC2fsdt+UxuqR71fKFt/wPokdTO0XNiZzMBW3BRb2oJz6MFBaqnOqOW
 2GReCYZ2CzLST77Z5QUneTy7Bti/iIAJ+HLmWQrY8iWnt0RPQaGd2eBuRwqOBl3KGsIR
 CsbtTctGl/qSJLAhGP46HJP8I9Rf8jLCF38w/aiyvKjHLFWmFl6iUukC4ULcUp50ro8n
 cXiw==
X-Gm-Message-State: AMke39nyxcdtS8BAufntp+OPIQHtjOjHFIUAgLUp4EXs4a+U7vlWI5GVljEgK9fSufes0Xe/hHvfSJFtEzUhYQ==
X-Received: by 10.157.12.40 with SMTP id 37mr8620745otr.92.1489130062423; Thu,
 09 Mar 2017 23:14:22 -0800 (PST)
MIME-Version: 1.0
Sender: kob6558@gmail.com
Received: by 10.74.32.79 with HTTP; Thu, 9 Mar 2017 23:14:22 -0800 (PST)
In-Reply-To: <864lz1ybto.fsf@phe.ftfl.ca>
References: <86efy68q08.fsf@phe.ftfl.ca>
 <cd9b1cd3-7901-0eef-5c02-5e506edfdabf@FreeBSD.org>
 <86vari70uk.fsf@phe.ftfl.ca>
 <CAN6yY1vtDeCfGu22zEnMa_tq3+AMw-do_Mn0zCB2AXMHFd48kQ@mail.gmail.com>
 <864lz1ybto.fsf@phe.ftfl.ca>
From: Kevin Oberman <rkoberman@gmail.com>
Date: Thu, 9 Mar 2017 23:14:22 -0800
X-Google-Sender-Auth: yOb8Kvl13Lt_xuF5MfLZTM52W5E
Message-ID: <CAN6yY1s=L9w3tsewaAVOiAXiwXrUKrWZ=OaA1kLGZPNvBKZfXg@mail.gmail.com>
Subject: Re: emulators/virtualbox-ose build failure
To: Joseph Mingrone <jrm@freebsd.org>
Cc: Jung-uk Kim <jkim@freebsd.org>, vbox@freebsd.org
X-Mailman-Approved-At: Fri, 10 Mar 2017 12:14:15 +0000
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 07:14:25 -0000

On Thu, Mar 9, 2017 at 8:50 PM, Joseph Mingrone <jrm@freebsd.org> wrote:

> Kevin Oberman <rkoberman@gmail.com> writes:
>
> > On Thu, Mar 9, 2017 at 10:37 AM, Joseph Mingrone <jrm@freebsd.org>
> wrote:
>
> >> Jung-uk Kim <jkim@FreeBSD.org> writes:
>
> >> > On 03/09/2017 09:48, Joseph Mingrone wrote:
> >> >> Hi,
>
> >> >> After to latest commit to update to version 5.16.1, the build fails.
> >> I'm using non-default options.
>
> >> >> http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/
> >> 2017-03-09_07h03m13s/logs/errors/virtualbox-ose-5.1.16.log
>
> >> > Yes, I am aware of that.  In fact, Qt4 support is rotting pretty fast.
> >> > I'll fix it for now but we may have to remove the option in the
> future.
>
> >> Understood.  Thanks.  I cling to Qt4 because, IIRC, Qt5 pulls in DBus.
>
>
> > Just tried with the "fixed" version with no success. Guess I'll move to
> Qt5
> > and see how that goes. I already live with DBus.
>
> The fix worked here.
>
> http://pkg.awarnach.mathstat.dal.ca/data/11amd64-default/
> 2017-03-09_19h38m01s/logs/virtualbox-ose-5.1.16_1.log
>

Just tried building with Qt5, and it still fails.
kBuild: Compiling VBoxRemPrimary -
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/translate-all.c
In file included from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/iprt/types.h:179:0,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/iprt/log.h:30,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/VBox/log.h:36,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/Sun/crt/stdio.h:25,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/VBoxRecompiler.c:34:
/usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd11.0/4.9.4/include-fixed/sys/types.h:266:9:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
         ^
/usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd11.0/4.9.4/include-fixed/sys/types.h:268:9:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
         ^
In file included from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/iprt/types.h:179:0,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/iprt/log.h:30,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/VBox/log.h:36,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/Sun/crt/stdio.h:25,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/dyngen-exec.h:70,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/target-i386/exec.h:30,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/cpu-exec.c:30:
/usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd11.0/4.9.4/include-fixed/sys/types.h:266:9:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
         ^
/usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd11.0/4.9.4/include-fixed/sys/types.h:268:9:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
         ^
In file included from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/iprt/types.h:179:0,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/iprt/log.h:30,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/VBox/log.h:36,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/Sun/crt/stdio.h:25,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/translate-all.c:31:
/usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd11.0/4.9.4/include-fixed/sys/types.h:266:9:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
         ^
In file included from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/iprt/types.h:179:0,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/iprt/log.h:30,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/include/VBox/log.h:36,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/Sun/crt/stdio.h:25,
                 from
/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/recompiler/exec.c:46:
/usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd11.0/4.9.4/include-fixed/sys/types.h:266:9:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
         ^
/usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd11.0/4.9.4/include-fixed/sys/types.h:268:9:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
         ^
/usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd11.0/4.9.4/include-fixed/sys/types.h:268:9:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
         ^
I have pretty vanilla options:
===> The following configuration options are available for
virtualbox-ose-5.1.16_1:
     ALSA=off: ALSA audio architecture support
     DBUS=on: D-Bus IPC system support
     DEBUG=off: Debug symbols, additional logs and assertions
     GUESTADDITIONS=off: Build with Guest Additions
     MANUAL=off: Build with user manual
     NLS=on: Native Language Support
     PULSEAUDIO=off: PulseAudio sound server support
     PYTHON=on: Python bindings or support
     R0LOGGING=off: Enable R0 logging
     UDPTUNNEL=on: Build with UDP tunnel support
     VDE=off: Build with VDE support
     VNC=on: Build with VNC support
     VPX=off: Use vpx for video capturing
     WEBSERVICE=on: Build Webservice
     X11=on: X11 (graphics) support
====> GUI (Graphical User Interface) support: you can only select none or
one of them
     QT4=off: Build with QT4 Frontend
     QT5=on: Build with QT5 Frontend

Any idea what is causing this?
--
Kevin Oberman, Part time kid herder and retired Network Engineer
E-mail: rkoberman@gmail.com
PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 09:25:20 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A7CDD0562E
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 09:25:20 +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 5AC6B1F1D
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 09:25:20 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 572FFD0562C; Fri, 10 Mar 2017 09:25:20 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56D22D0562B
 for <emulation@mailman.ysv.freebsd.org>; Fri, 10 Mar 2017 09:25:20 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 2B6121F1C
 for <emulation@freebsd.org>; Fri, 10 Mar 2017 09:25:20 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by freefall.freebsd.org (Postfix)
 id 7DEB26906; Fri, 10 Mar 2017 09:25:19 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 54E956905
 for <vbox@localmail.freebsd.org>; Fri, 10 Mar 2017 09:25:19 +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 mx1.freebsd.org (Postfix) with ESMTPS id 849AE1F18
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 09:25:18 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2A9PIGN029558
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 09:25:18 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="UTF-8"
From: bugzilla-noreply@freebsd.org
To: vbox@FreeBSD.org
Subject: maintainer-feedback requested: [Bug 217681] emulators/virtualbox-ose
 5.1.16 fails to build
Date: Fri, 10 Mar 2017 09:25:18 +0000
X-Bugzilla-Type: request
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Some People
X-Bugzilla-Who: 
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: vbox@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
Message-ID: <bug-217681-26505-NL9LEmfDYm@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
References: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-Mailman-Approved-At: Fri, 10 Mar 2017 12:14:29 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 09:25:20 -0000

rozhuk.im@gmail.com has reassigned Bugzilla Automation <bugzilla@FreeBSD.or=
g>'s
request for maintainer-feedback to vbox@FreeBSD.org:
Bug 217681: emulators/virtualbox-ose 5.1.16 fails to build
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217681



--- Description ---
kBuild: Compiling VBoxRemPrimary -
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/translate-all.c
In file included from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/ip
rt/types.h:179:0,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/ip
rt/log.h:30,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/VB
ox/log.h:36,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/Sun/crt/stdio.h:25,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/VBoxRecompiler.c:34:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/typ
es.h:266:1:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
 ^
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/typ
es.h:268:1:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
 ^
In file included from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/ip
rt/types.h:179:0,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/ip
rt/log.h:30,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/VB
ox/log.h:36,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/Sun/crt/stdio.h:25,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/dyngen-exec.h:70,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/target-i386/exec.h:30,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/cpu-exec.c:30:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/typ
es.h:266:1:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
 ^
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/typ
es.h:268:1:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
 ^
In file included from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/ip
rt/types.h:179:0,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/ip
rt/log.h:30,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/VB
ox/log.h:36,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/Sun/crt/stdio.h:25,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/translate-all.c:31:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/typ
es.h:266:1:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
 ^
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/typ
es.h:268:1:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
 ^
In file included from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/ip
rt/types.h:179:0,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/ip
rt/log.h:30,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/VB
ox/log.h:36,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/Sun/crt/stdio.h:25,
		 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/exec.c:46:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/typ
es.h:266:1:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
 ^
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/typ
es.h:268:1:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
 ^
kmk: ***
[/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/f=
reeb
sd.amd64/release/obj/VBoxRemPrimary/translate-all.o]
Error 1
The failing command:
@gcc48 -c -O2 -g -pipe -O2 -mtune=3Dgeneric -fno-omit-frame-pointer
-fno-strict-aliasing -fvisibility=3Dhidden -DVBOX_HAVE_VISIBILITY_HIDDEN
-DRT_USE_VISIBILITY_DEFAULT -fPIC -Wno-sign-compare
-Werror-implicit-function-declaration -m64
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
reco
mpiler/Sun/crt
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
reco
mpiler/Sun
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
reco
mpiler/target-i386
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
reco
mpiler/tcg
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
reco
mpiler/fpu
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/=
free
bsd.amd64/release/obj/VBoxRemPrimary
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
VBox
/VMM/include
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
reco
mpiler/tcg/i386
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
reco
mpiler
-I/usr/local/include
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/=
free
bsd.amd64/release/obj/VBoxRemPrimary/dtrace
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/incl=
ude
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/=
free
bsd.amd64/release
-DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM
-DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD6=
4__
-DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING
-DRTPATH_APP_PRIVATE=3D\"/usr/local/share/virtualbox-ose\"
-DRTPATH_APP_PRIVATE_ARCH=3D\"/usr/local/lib/virtualbox\"
-DRTPATH_SHARED_LIBS=3D\"/usr/local/lib/virtualbox\"
-DRTPATH_APP_DOCS=3D\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING3
-DHC_ARCH_BITS=3D64 -DGC_ARCH_BITS=3D64 -DPIC -DIN_REM_R3 -DREM_INCLUDE_CPU=
_H
-DNEED_CPU_H -DVBOX_WITH_NEW_APIC -DVBOX_WITH_RAW_MODE -DVBOX_WITH_RAW_RING1
-DLOG_USE_C99 -D_BSD -D__x86_64__
-Wp,-MD,/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.1=
6/ou
t/freebsd.amd64/release/obj/VBoxRemPrimary/translate-all.o.dep
-Wp,-MT,/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.1=
6/ou
t/freebsd.amd64/release/obj/VBoxRemPrimary/translate-all.o
-Wp,-MP -o
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/fr=
eebs
d.amd64/release/obj/VBoxRemPrimary/translate-all.o
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
comp
iler/translate-all.c
kmk: *** Waiting for unfinished jobs....

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 09:25:20 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id DAA8BD0563B
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 09:25:20 +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 BA6191F20
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 09:25:20 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id B9C2AD0563A; Fri, 10 Mar 2017 09:25:20 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9743D05639
 for <emulation@mailman.ysv.freebsd.org>; Fri, 10 Mar 2017 09:25:20 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 8C29A1F1E
 for <emulation@freebsd.org>; Fri, 10 Mar 2017 09:25:20 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by freefall.freebsd.org (Postfix)
 id D49226908; Fri, 10 Mar 2017 09:25:19 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id ABEAC6907
 for <vbox@localmail.freebsd.org>; Fri, 10 Mar 2017 09:25:19 +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 mx1.freebsd.org (Postfix) with ESMTPS id D04051F1B
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 09:25:18 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2A9PIGR029558
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 09:25:18 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: vbox@FreeBSD.org
Subject: [Bug 217681] emulators/virtualbox-ose 5.1.16 fails to build
Date: Fri, 10 Mar 2017 09:25:18 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Some People
X-Bugzilla-Who: rozhuk.im@gmail.com
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: vbox@FreeBSD.org
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: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-Mailman-Approved-At: Fri, 10 Mar 2017 12:14:51 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 09:25:21 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217681

            Bug ID: 217681
           Summary: emulators/virtualbox-ose 5.1.16 fails to build
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: Individual Port(s)
          Assignee: vbox@FreeBSD.org
          Reporter: rozhuk.im@gmail.com
          Assignee: vbox@FreeBSD.org
             Flags: maintainer-feedback?(vbox@FreeBSD.org)

kBuild: Compiling VBoxRemPrimary -
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/translate-all.c
In file included from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/iprt/types.h:179:0,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/iprt/log.h:30,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/VBox/log.h:36,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/Sun/crt/stdio.h:25,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/VBoxRecompiler.c:34:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:266:1:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
 ^
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:268:1:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
 ^
In file included from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/iprt/types.h:179:0,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/iprt/log.h:30,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/VBox/log.h:36,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/Sun/crt/stdio.h:25,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/dyngen-exec.h:70,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/target-i386/exec.h:30,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/cpu-exec.c:30:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:266:1:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
 ^
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:268:1:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
 ^
In file included from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/iprt/types.h:179:0,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/iprt/log.h:30,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/VBox/log.h:36,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/Sun/crt/stdio.h:25,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/translate-all.c:31:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:266:1:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
 ^
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:268:1:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
 ^
In file included from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/iprt/types.h:179:0,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/iprt/log.h:30,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/includ=
e/VBox/log.h:36,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/Sun/crt/stdio.h:25,
                 from
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/exec.c:46:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:266:1:
error: unknown type name '__vm_ooffset_t'
 typedef __vm_ooffset_t vm_ooffset_t;
 ^
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:268:1:
error: unknown type name '__vm_pindex_t'
 typedef __vm_pindex_t vm_pindex_t;
 ^
kmk: ***
[/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/f=
reebsd.amd64/release/obj/VBoxRemPrimary/translate-all.o]
Error 1
The failing command:
@gcc48 -c -O2 -g -pipe -O2 -mtune=3Dgeneric -fno-omit-frame-pointer
-fno-strict-aliasing -fvisibility=3Dhidden -DVBOX_HAVE_VISIBILITY_HIDDEN
-DRT_USE_VISIBILITY_DEFAULT -fPIC -Wno-sign-compare
-Werror-implicit-function-declaration -m64
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
recompiler/Sun/crt
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
recompiler/Sun
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
recompiler/target-i386
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
recompiler/tcg
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
recompiler/fpu
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/=
freebsd.amd64/release/obj/VBoxRemPrimary
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
VBox/VMM/include
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
recompiler/tcg/i386
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/=
recompiler
-I/usr/local/include
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/=
freebsd.amd64/release/obj/VBoxRemPrimary/dtrace
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/incl=
ude
-I/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/=
freebsd.amd64/release
-DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM
-DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD6=
4__
-DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING
-DRTPATH_APP_PRIVATE=3D\"/usr/local/share/virtualbox-ose\"
-DRTPATH_APP_PRIVATE_ARCH=3D\"/usr/local/lib/virtualbox\"
-DRTPATH_SHARED_LIBS=3D\"/usr/local/lib/virtualbox\"
-DRTPATH_APP_DOCS=3D\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING3
-DHC_ARCH_BITS=3D64 -DGC_ARCH_BITS=3D64 -DPIC -DIN_REM_R3 -DREM_INCLUDE_CPU=
_H
-DNEED_CPU_H -DVBOX_WITH_NEW_APIC -DVBOX_WITH_RAW_MODE -DVBOX_WITH_RAW_RING1
-DLOG_USE_C99 -D_BSD -D__x86_64__
-Wp,-MD,/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.1=
6/out/freebsd.amd64/release/obj/VBoxRemPrimary/translate-all.o.dep
-Wp,-MT,/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.1=
6/out/freebsd.amd64/release/obj/VBoxRemPrimary/translate-all.o
-Wp,-MP -o
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/out/fr=
eebsd.amd64/release/obj/VBoxRemPrimary/translate-all.o
/tmp/ports/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.16/src/re=
compiler/translate-all.c
kmk: *** Waiting for unfinished jobs....

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 13:28:51 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9A1BD06986
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 13:28:51 +0000 (UTC) (envelope-from nbe@renzel.net)
Received: from nijmegen.renzel.net (mx1.renzel.net [195.243.213.130])
 by mx1.freebsd.org (Postfix) with ESMTP id 85ADF16D9
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 13:28:50 +0000 (UTC)
 (envelope-from nbe@renzel.net)
X-Virus-Scanned: GDATA Antivirus at gdata-milter.renzel.de.isb
X-Spam-Score: 0
X-Spam-Level: 
X-Spam-Status: No, score=-8.0 required=7.0 tests=ALL_TRUSTED,BAYES_00
 autolearn=ham version=3.3.2
Received: from dublin.vkf.isb.de.renzel.net (unknown [10.0.0.80])
 by nijmegen.renzel.net (smtpd) with ESMTP id C5DDE141483E
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 14:28:24 +0100 (CET)
Received: from asbach.renzel.net (unknown [172.18.96.1])
 by dublin.vkf.isb.de.renzel.net (Postfix) with ESMTP id C04C381FFD
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 14:28:24 +0100 (CET)
From: Nils Beyer <nbe@renzel.net>
To: freebsd-emulation@freebsd.org
Subject: [linux_base-c7] - no Mesa,
 libGL support under the Linuxolator? Generates segmentation fault.
Date: Fri, 10 Mar 2017 14:28:24 +0100
Message-ID: <1886682.TFOVmAu5zn@asbach.renzel.net>
Organization: VKF Renzel GmbH
User-Agent: KMail/4.14.10 (FreeBSD/11.0-RELEASE-p3; KDE/4.14.10; amd64; ; )
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on nijmegen.renzel.net
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 13:28:51 -0000

Hi,

side note: "tesseract-game" under FreeBSD itself works well on my system;
Intel Skylake system.

So, I'm evaluating "linux_base-c7" emulation to check whether it can run
linux games.

==============================================================================
------------------------------------------------------------------------------
--- my system
------------------------------------------------------------------------------
# #uname -v | awk -F'root@' '{print$1}'
FreeBSD 12.0-CURRENT #0 7e02ee4a000(drm-next)-dirty: Thu Mar  9 09:18:07 CET 2017


# cat /etc/make.conf 
DEFAULT_VERSIONS+=linux=c7


# echo `pkg info -x c7` | fold -s
linux-c7-7.3.1611_1 linux-c7-alsa-lib-1.1.1_2 linux-c7-alsa-plugins-oss-1.1.1 
linux-c7-alsa-plugins-pulseaudio-1.1.1 linux-c7-alsa-utils-1.1.1_1 
linux-c7-aspell-0.60.6.1_1 linux-c7-atk-2.14.0_1 linux-c7-audiofile-0.3.6_1 
linux-c7-avahi-libs-0.6.31_1 linux-c7-cairo-1.14.2_4 linux-c7-cups-libs-1.6.3_2 
linux-c7-curl-7.29.0_2 linux-c7-cyrus-sasl-lib-2.1.26_2 
linux-c7-dbus-glib-0.100_1 linux-c7-dbus-libs-1.6.12_2 
linux-c7-devtools-7.3.1611_4 linux-c7-dri-11.2.2_1 
linux-c7-elfutils-libelf-0.166_1 linux-c7-expat-2.1.0_2 
linux-c7-flac-libs-1.3.0_2 linux-c7-fontconfig-2.10.95_2 
linux-c7-gdk-pixbuf2-2.31.6_2 linux-c7-glx-utils-8.2.0_3 linux-c7-gnutls-3.3.24 
linux-c7-graphite2-1.3.6_1 linux-c7-gtk2-2.24.28_3 linux-c7-harfbuzz-0.9.36_1 
linux-c7-jasper-libs-1.900.1_2 linux-c7-jbigkit-libs-2.0_2 
linux-c7-jpeg-1.2.90_2 linux-c7-libasyncns-0.8_1 linux-c7-libgcrypt-1.5.3_2 
linux-c7-libgfortran-4.8.5_1 linux-c7-libglade2-2.6.4_1 
linux-c7-libgpg-error-1.12_2 linux-c7-libogg-1.3.0_1 
linux-c7-libpciaccess-0.13.4_2 linux-c7-libpng-1.5.13_2 
linux-c7-libsigc++20-2.3.1_1 linux-c7-libsndfile-1.0.25_3 
linux-c7-libssh2-1.4.3_2 linux-c7-libtasn1-3.8_1 linux-c7-libthai-0.1.14_1 
linux-c7-libtheora-1.1.1_1 linux-c7-libtiff-4.0.3_3 linux-c7-libv4l-0.9.5_2 
linux-c7-libvorbis-1.3.3_1 linux-c7-libxml2-2.9.1_1 linux-c7-motif-2.3.4_2 
linux-c7-ncurses-base-5.9_1 linux-c7-nspr-4.13.1 linux-c7-nss-3.28.2 
linux-c7-openal-soft-1.16.0_2 linux-c7-openldap-2.4.40_3 
linux-c7-openssl-libs-1.0.1e_3 linux-c7-pango-1.36.8_3 linux-c7-pixman-0.34.0 
linux-c7-pulseaudio-libs-6.0_1 linux-c7-pulseaudio-utils-6.0_1 
linux-c7-qt-4.8.5_2 linux-c7-qt-x11-4.8.5_3 linux-c7-qtwebkit-2.3.4_2 
linux-c7-sdl-1.2.15_1 linux-c7-sdl20-2.0.3_1 linux-c7-sdl_image-1.2.12_2 
linux-c7-sdl_mixer-1.2.12_1 linux-c7-sdl_ttf-2.0.11_2 linux-c7-sqlite-3.7.17_1 
linux-c7-tcl85-8.5.13_1 linux-c7-tcp_wrappers-libs-7.6_2 linux-c7-tk85-8.5.13_1 
linux-c7-xorg-libs-7.7_3 linux_base-c7-7.3.1611_2


------------------------------------------------------------------------------
--- "glxinfo"
------------------------------------------------------------------------------
# glxinfo
name of display: :0
display: :0  screen: 0
direct rendering: Yes
[...]
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) HD Graphics 520 (Skylake GT2) 
OpenGL core profile version string: 4.5 (Core Profile) Mesa 13.0.5
OpenGL core profile shading language version string: 4.50


------------------------------------------------------------------------------
--- Linux "glxinfo"
------------------------------------------------------------------------------
# ktrace /compat/linux/usr/bin/glxinfo
name of display: :0
libGL error: Couldn't dlopen libudev.so.1 or libudev.so.0, driver detection may be broken.
libGL error: Couldn't dlopen libudev.so.1 or libudev.so.0, driver detection may be broken.
Segmentation fault


# kdump | tail -10
 63081 glxinfo  RET   read 21/0x15
 63081 glxinfo  CALL  linux_time(0)
 63081 glxinfo  RET   linux_time 1489151489/0x58c2a601
 63081 glxinfo  CALL  read(0x5,0x623615,0x1000)
 63081 glxinfo  GIO   fd 5 read 0 bytes
       ""
 63081 glxinfo  RET   read 0
 63081 glxinfo  CALL  close(0x5)
 63081 glxinfo  RET   close 0
 63081 glxinfo  PSIG  SIGSEGV SIG_DFL code=SEGV_MAPERR


------------------------------------------------------------------------------
--- trying "linux-doom3-demo" (32bit)
------------------------------------------------------------------------------
# ktrace /usr/local/lib/linux-doom3-demo/doom.x86
DOOM 1.1.1286 linux-x86 Nov 28 2004 20:09:31
GetLocalAddress failed: gethostbyname failed: localhost host not found
------ Initializing File System ------
Loaded pk4 /usr/local/lib/linux-doom3-demo/demo/demo00.pk4 with checksum 0xfe75bbef
Current search path:
/home/nbe/.doom3-demo/demo
/usr/local/lib/linux-doom3-demo/demo
/usr/local/lib/linux-doom3-demo/demo/demo00.pk4 (12234 files)
game DLL: 0x0 in pak: 0x0
file system initialized.
--------------------------------------

Running in restricted demo mode.

----- Initializing Decls -----
------------------------------
------- Initializing renderSystem --------
using ARB renderSystem
renderSystem initialized.
--------------------------------------
5151 strings read from strings/english.lang
Couldn't open journal files
couldn't exec editor.cfg
execing default.cfg
couldn't exec DoomConfig.cfg
couldn't exec autoexec.cfg
5151 strings read from strings/english.lang
----- Initializing Sound System ------
sound system initialized.
--------------------------------------
----- R_InitOpenGL -----
Setup X display connection
dlopen(libGL.so.1)
Initializing OpenGL display
Using XFree86-VidModeExtension Version 2.2
DGA DirectVideo Mouse (Version 2.0) initialized
Free86-VidModeExtension Activated at 640x480
libGL error: Couldn't dlopen libudev.so.1 or libudev.so.0, driver detection may be broken.
libGL error: Couldn't dlopen libudev.so.1 or libudev.so.0, driver detection may be broken.
signal caught: Segmentation fault
si_code 1
Trying to exit gracefully..
idRenderSystem::Shutdown()
double fault Segmentation fault, bailing out


# kdump | grep -i -B10 sigsegv
       "
 62905 doom.x86 RET   read 21/0x15
 62905 doom.x86 CALL  linux_time(0)
 62905 doom.x86 RET   linux_time 1489150618/0x58c2a29a
 62905 doom.x86 CALL  read(0x6,0xaa4566d,0x1000)
 62905 doom.x86 GIO   fd 6 read 0 bytes
       ""
 62905 doom.x86 RET   read 0
 62905 doom.x86 CALL  close(0x6)
 62905 doom.x86 RET   close 0
 62905 doom.x86 PSIG  SIGSEGV caught handler=0x8208060 mask=0x0 code=SEGV_MAPERR
--

 62905 doom.x86 RET   linux_socketcall 32/0x20
 62905 doom.x86 CALL  poll(0xffffa6a4,0x1,0xffffffff)
 62905 doom.x86 RET   poll 1
 62905 doom.x86 CALL  linux_socketcall(0x11,0xffffa598)
 62905 doom.x86 GIO   fd 4 read 64 bytes
       0x0000 0003 2c00 0000 0000 0000 0400 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0100 2d00 0000 0000 0200 0200 0000  |..,...............................-...........|
       0x002e 0000 0000 0000 0000 0000 0000 0000 0000 0000                                                                        |..................|

 62905 doom.x86 RET   linux_socketcall 64/0x40
 62905 doom.x86 PSIG  SIGSEGV caught handler=0x8208060 mask=0x0 code=SEGV_MAPERR


------------------------------------------------------------------------------
--- trying Unigine Heaven (64bit)
------------------------------------------------------------------------------
# ktrace ./browser_x64 -config ../data/launcher/launcher.xml
Loading "/home/nbe/work/downloads/Unigine_Heaven-4.0/bin/../data/heaven_4.0.cfg"...
Loading "libGPUMonitor_x64.so"...
Loading "libGL.so.1"...
Loading "libopenal.so.1"...
AL lib: (WW) alc_initconfig: Failed to initialize backend "pulse"
Set 1366x768 fullscreen video mode
libGL error: Couldn't dlopen libudev.so.1 or libudev.so.0, driver detection may be broken.
libGL error: Couldn't dlopen libudev.so.1 or libudev.so.0, driver detection may be broken.
Received signal SIGSEGV, invalid memory reference
AL lib: (EE) alc_cleanup: 1 device not closed
^C


# kdump | grep -i sigseg
#
==============================================================================

Why I cannot get the SIGSEGV dump in Unigine, I don't know.

Any ideas how to proceed, debug more and probably get libGL stuff running
under Linux C7 emulation (32bit and 64bit)?



Thanks in advance and regards,
Nils

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 16:15:41 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C239D06248
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 16:15:41 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 6C97D14B1
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 16:15:41 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 6BFE3D06247; Fri, 10 Mar 2017 16:15:41 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BA69D06246
 for <emulation@mailman.ysv.freebsd.org>; Fri, 10 Mar 2017 16:15:41 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 3EE3614B0
 for <emulation@freebsd.org>; Fri, 10 Mar 2017 16:15:41 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by freefall.freebsd.org (Postfix)
 id 868EE4E1E; Fri, 10 Mar 2017 16:15:40 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 6E30B4E1D
 for <vbox@localmail.freebsd.org>; Fri, 10 Mar 2017 16:15:40 +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 mx1.freebsd.org (Postfix) with ESMTPS id 7931214AF
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 16:15:39 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2AGFdw8069780
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 16:15:39 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: vbox@FreeBSD.org
Subject: [Bug 217681] emulators/virtualbox-ose 5.1.16 fails to build
Date: Fri, 10 Mar 2017 16:15:39 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Some People
X-Bugzilla-Who: jkim@FreeBSD.org
X-Bugzilla-Status: New
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: vbox@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-217681-26505-TGmp4r9TXq@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
References: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-Mailman-Approved-At: Fri, 10 Mar 2017 17:05:45 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 16:15:41 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217681

Jung-uk Kim <jkim@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jkim@FreeBSD.org

--- Comment #1 from Jung-uk Kim <jkim@FreeBSD.org> ---
(In reply to rozhuk.im from comment #0)
> kBuild: Compiling VBoxRemPrimary - /tmp/ports/usr/ports/emulators/virtual=
box-ose/work/VirtualBox-5.1.16/src/recompiler/translate-all.c
> In file included from /tmp/ports/usr/ports/emulators/virtualbox-ose/work/=
VirtualBox-5.1.16/include/iprt/types.h:179:0,
>                  from /tmp/ports/usr/ports/emulators/virtualbox-ose/work/=
VirtualBox-5.1.16/include/iprt/log.h:30,
>                  from /tmp/ports/usr/ports/emulators/virtualbox-ose/work/=
VirtualBox-5.1.16/include/VBox/log.h:36,
>                  from /tmp/ports/usr/ports/emulators/virtualbox-ose/work/=
VirtualBox-5.1.16/src/recompiler/Sun/crt/stdio.h:25,
>                  from /tmp/ports/usr/ports/emulators/virtualbox-ose/work/=
VirtualBox-5.1.16/src/recompiler/VBoxRecompiler.c:34:
/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/sys=
/types.h:266:1:
error: unknown type name '__vm_ooffset_t'
>  typedef __vm_ooffset_t vm_ooffset_t;
 ^
> /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd11.0/4.8.5/include-fixed/s=
ys/types.h:268:1: error: unknown type name '__vm_pindex_t'
>  typedef __vm_pindex_t vm_pindex_t;

This is a well-known problem with current lang/gcc, e.g.

https://lists.freebsd.org/pipermail/freebsd-ports/2017-February/107473.html

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 16:16:59 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EA3FD06296
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 16:16:59 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id F33DE14D2
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 16:16:58 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id F2AA0D06295; Fri, 10 Mar 2017 16:16:58 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id F253CD06294
 for <emulation@mailman.ysv.freebsd.org>; Fri, 10 Mar 2017 16:16:58 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id C709114D1
 for <emulation@freebsd.org>; Fri, 10 Mar 2017 16:16:58 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by freefall.freebsd.org (Postfix)
 id 256334E34; Fri, 10 Mar 2017 16:16:58 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 0D3AD4E33
 for <vbox@localmail.freebsd.org>; Fri, 10 Mar 2017 16:16:58 +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 mx1.freebsd.org (Postfix) with ESMTPS id 314A514CF
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 16:16:57 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2AGGvZt071341
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 16:16:57 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: vbox@FreeBSD.org
Subject: [Bug 217681] emulators/virtualbox-ose 5.1.16 fails to build
Date: Fri, 10 Mar 2017 16:16:57 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Some People
X-Bugzilla-Who: jkim@FreeBSD.org
X-Bugzilla-Status: Open
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: vbox@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-217681-26505-sbwdxVwVgl@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
References: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-Mailman-Approved-At: Fri, 10 Mar 2017 17:06:10 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 16:16:59 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217681

Jung-uk Kim <jkim@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|New                         |Open

--- Comment #2 from Jung-uk Kim <jkim@FreeBSD.org> ---
(In reply to Jung-uk Kim from comment #1)

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Fri Mar 10 16:18:06 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A167D062D0
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Fri, 10 Mar 2017 16:18:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 680A51500
 for <freebsd-emulation@freebsd.org>; Fri, 10 Mar 2017 16:18:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 677F0D062CF; Fri, 10 Mar 2017 16:18:06 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67244D062CE
 for <emulation@mailman.ysv.freebsd.org>; Fri, 10 Mar 2017 16:18:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 3BDB414FF
 for <emulation@freebsd.org>; Fri, 10 Mar 2017 16:18:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by freefall.freebsd.org (Postfix)
 id 8E0554E4B; Fri, 10 Mar 2017 16:18:05 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 7679C4E4A
 for <vbox@localmail.freebsd.org>; Fri, 10 Mar 2017 16:18:05 +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 mx1.freebsd.org (Postfix) with ESMTPS id 9B49E14FD
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 16:18:04 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2AGI4sQ072800
 for <vbox@FreeBSD.org>; Fri, 10 Mar 2017 16:18:04 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: vbox@FreeBSD.org
Subject: [Bug 217681] emulators/virtualbox-ose 5.1.16 fails to build
Date: Fri, 10 Mar 2017 16:18:04 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Some People
X-Bugzilla-Who: jkim@FreeBSD.org
X-Bugzilla-Status: Open
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: vbox@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: 
Message-ID: <bug-217681-26505-0QBcrTSjBS@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
References: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-Mailman-Approved-At: Fri, 10 Mar 2017 17:13:35 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 10 Mar 2017 16:18:06 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217681

--- Comment #3 from Jung-uk Kim <jkim@FreeBSD.org> ---
Please rebuild lang/gcc first and recompile emulators/virtualbox-ose.

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Sat Mar 11 02:16:32 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 623E4D047AD
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sat, 11 Mar 2017 02:16:32 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 42CAC1F0B
 for <freebsd-emulation@freebsd.org>; Sat, 11 Mar 2017 02:16:32 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 42311D047AC; Sat, 11 Mar 2017 02:16:32 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41E1ED047AB
 for <emulation@mailman.ysv.freebsd.org>; Sat, 11 Mar 2017 02:16:32 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 1682F1F0A
 for <emulation@freebsd.org>; Sat, 11 Mar 2017 02:16:32 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by freefall.freebsd.org (Postfix)
 id 6916069C2; Sat, 11 Mar 2017 02:16:31 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id 54BB569C1
 for <vbox@localmail.freebsd.org>; Sat, 11 Mar 2017 02:16: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 mx1.freebsd.org (Postfix) with ESMTPS id 82E661F05
 for <vbox@FreeBSD.org>; Sat, 11 Mar 2017 02:16:30 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2B2GU7L092075
 for <vbox@FreeBSD.org>; Sat, 11 Mar 2017 02:16:30 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: vbox@FreeBSD.org
Subject: [Bug 217681] emulators/virtualbox-ose 5.1.16 fails to build
Date: Sat, 11 Mar 2017 02:16:30 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Some People
X-Bugzilla-Who: rozhuk.im@gmail.com
X-Bugzilla-Status: Open
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: vbox@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: 
Message-ID: <bug-217681-26505-n2fdQb3UVT@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
References: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-Mailman-Approved-At: Sat, 11 Mar 2017 02:30:00 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 11 Mar 2017 02:16:32 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217681

--- Comment #4 from rozhuk.im@gmail.com ---
Few days ago I update to 5.1.16 p0 without problems.
Well, I m remove gcc-4.9.4 and VBox update OK.
(gcc48-4.8.5_1 is installed)

--=20
You are receiving this mail because:
You are the assignee for the bug.=

From owner-freebsd-emulation@freebsd.org  Sat Mar 11 05:31:06 2017
Return-Path: <owner-freebsd-emulation@freebsd.org>
Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id D7530D07CBA
 for <freebsd-emulation@mailman.ysv.freebsd.org>;
 Sat, 11 Mar 2017 05:31:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id B7E6C14CC
 for <freebsd-emulation@freebsd.org>; Sat, 11 Mar 2017 05:31:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id B7456D07CB9; Sat, 11 Mar 2017 05:31:06 +0000 (UTC)
Delivered-To: emulation@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6EADD07CB8
 for <emulation@mailman.ysv.freebsd.org>; Sat, 11 Mar 2017 05:31:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from freefall.freebsd.org (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "freefall.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 8B7B214CA
 for <emulation@freebsd.org>; Sat, 11 Mar 2017 05:31:06 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by freefall.freebsd.org (Postfix)
 id DD9C91408; Sat, 11 Mar 2017 05:31:05 +0000 (UTC)
Delivered-To: vbox@localmail.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by freefall.freebsd.org (Postfix) with ESMTPS id C7B9D1407
 for <vbox@localmail.freebsd.org>; Sat, 11 Mar 2017 05:31:05 +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 mx1.freebsd.org (Postfix) with ESMTPS id CF93214C2
 for <vbox@FreeBSD.org>; Sat, 11 Mar 2017 05:31:04 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2B5V4mE044120
 for <vbox@FreeBSD.org>; Sat, 11 Mar 2017 05:31:04 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: vbox@FreeBSD.org
Subject: [Bug 217681] emulators/virtualbox-ose 5.1.16 fails to build
Date: Sat, 11 Mar 2017 05:31:04 +0000
X-Bugzilla-Reason: AssignedTo
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Individual Port(s)
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: 
X-Bugzilla-Severity: Affects Some People
X-Bugzilla-Who: rkoberman@gmail.com
X-Bugzilla-Status: Open
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: vbox@FreeBSD.org
X-Bugzilla-Flags: maintainer-feedback?
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-217681-26505-pHUzD5bZQc@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
References: <bug-217681-26505@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-Mailman-Approved-At: Sat, 11 Mar 2017 12:14:26 +0000
X-BeenThere: freebsd-emulation@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Development of Emulators of other operating systems
 <freebsd-emulation.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-emulation/>
List-Post: <mailto:freebsd-emulation@freebsd.org>
List-Help: <mailto:freebsd-emulation-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-emulation>, 
 <mailto:freebsd-emulation-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 11 Mar 2017 05:31:06 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217681

rkoberman@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rkoberman@gmail.com

--- Comment #5 from rkoberman@gmail.com ---
Ahh. I thought that was only relevant to current. Shouldn't gcc-4.9's
PORT_REVISION have been bumped? But that is a question for another ticket.
Unless someone else has a different issue, this one can be closed, as far as
I'm concerned.

--=20
You are receiving this mail because:
You are the assignee for the bug.=