From owner-freebsd-emulation@FreeBSD.ORG Mon Mar 31 19:00:01 2014 Return-Path: Delivered-To: vbox@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 573E4DA5 for ; Mon, 31 Mar 2014 19:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 45223843 for ; Mon, 31 Mar 2014 19:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2VJ01GW011772 for ; Mon, 31 Mar 2014 19:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2VJ01ZS011771; Mon, 31 Mar 2014 19:00:01 GMT (envelope-from gnats) Date: Mon, 31 Mar 2014 19:00:01 GMT Message-Id: <201403311900.s2VJ01ZS011771@freefall.freebsd.org> To: vbox@FreeBSD.org From: Paul Mulders Subject: Re: ports/188053: emulators/virtualbox-ose 4.3.10 doesn't build on 9.2 X-Mailman-Approved-At: Mon, 31 Mar 2014 19:45:17 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Paul Mulders List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2014 19:00:01 -0000 The following reply was made to PR ports/188053; it has been noted by GNATS. From: Paul Mulders To: bug-followup@FreeBSD.org, shuriku@shurik.kiev.ua Cc: Subject: Re: ports/188053: emulators/virtualbox-ose 4.3.10 doesn't build on 9.2 Date: Mon, 31 Mar 2014 20:57:03 +0200 Running into this too, with options DBUS GUEST_ADDITIONS PYTHON UDPTUNNEL VNC WEBSERVICE set. Seems to be due to a bug in recent upstream commits relating to #ifdefs. The offending functions are defined within an #ifdef (starting at line 778 of DevVGA_VDMA.cpp), but are referenced from without it. Obviously, this leads to problems when the #ifdef guard isn't actually defined (VBOX_WITH_CRHGSMI). Solution? This is fairly technical code so I'm not entirely sure. Whatever references all that stuff should probably also be between #ifdefs.