From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 30 18:20:10 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D45A4106566C for ; Thu, 30 Dec 2010 18:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C3D5C8FC12 for ; Thu, 30 Dec 2010 18:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oBUIKAKU021986 for ; Thu, 30 Dec 2010 18:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oBUIKAiN021985; Thu, 30 Dec 2010 18:20:10 GMT (envelope-from gnats) Date: Thu, 30 Dec 2010 18:20:10 GMT Message-Id: <201012301820.oBUIKAiN021985@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Anonymous Cc: Subject: Re: ports/153557: patch to warn birtualbox compiler to unsetenv DISPLAY X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anonymous List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Dec 2010 18:20:10 -0000 The following reply was made to PR ports/153557; it has been noted by GNATS. From: Anonymous To: Julian Stacey Cc: bug-followup@FreeBSD.org Subject: Re: ports/153557: patch to warn birtualbox compiler to unsetenv DISPLAY Date: Thu, 30 Dec 2010 21:19:41 +0300 "Julian Stacey" writes: > + test_display != printenv DISPLAY > + .if ${test_display} != "" > + BROKEN= "unsetenv DISPLAY to avoid: Checking for Mesa / GLU: X Error of failed request: BadRequest (invalid request code or no such operation)" > + .endif > + assignment is redundant here, you can use value from environment directly .if defined(DISPLAY) && ${DISPLAY} != "" I don't use the port but have you tried CONFIGURE_ARGS+=--passive-mesa ?