From owner-freebsd-ports@FreeBSD.ORG Tue Mar 8 08:52:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFCC616A4CE for ; Tue, 8 Mar 2005 08:52:31 +0000 (GMT) Received: from ares.wolfpond.org (ns1.wolfpond.org [62.212.96.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2D0E43D2F for ; Tue, 8 Mar 2005 08:52:29 +0000 (GMT) (envelope-from ftigeot@wolfpond.org) Received: from aoi.wolfpond.org (aoi.wolfpond.org [IPv6:2001:7a8:24db:1:20c:76ff:feb4:27e1]) by ares.wolfpond.org (8.13.3/8.13.3) with ESMTP id j288qS9m011957 for ; Tue, 8 Mar 2005 09:52:28 +0100 (CET) (envelope-from ftigeot@aoi.wolfpond.org) Received: from aoi.wolfpond.org (localhost [127.0.0.1]) by aoi.wolfpond.org (8.13.3/8.13.1) with ESMTP id j288qZ4Z023422 for ; Tue, 8 Mar 2005 09:52:35 +0100 (CET) (envelope-from ftigeot@aoi.wolfpond.org) Received: (from ftigeot@localhost) by aoi.wolfpond.org (8.13.3/8.13.1/Submit) id j288qZxr023421 for freebsd-ports@freebsd.org; Tue, 8 Mar 2005 09:52:35 +0100 (CET) (envelope-from ftigeot) Date: Tue, 8 Mar 2005 09:52:34 +0100 From: Francois Tigeot To: freebsd-ports@freebsd.org Message-ID: <20050308085234.GA22654@aoi.wolfpond.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="OgqxwSJOaUobr8KG" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: x11/xlockmore disables MESAGL on amd64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Mar 2005 08:52:32 -0000 --OgqxwSJOaUobr8KG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline GL modes have been disabled on amd64 more than a year ago. According to the commit message, it was done to fix build problems. I re-enabled them locally; xlockmore built without trouble and all GL modes work fine on a 5.4-PRERELEASE/amd64 host. Should I submit a PR or is the attached patch sufficient ? -- Francois Tigeot --OgqxwSJOaUobr8KG Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-xlockmore-Makefile --- x11/xlockmore/Makefile.orig Sat Feb 5 08:38:43 2005 +++ x11/xlockmore/Makefile Tue Mar 8 09:34:34 2005 @@ -34,11 +34,8 @@ USE_XPM= yes MAN1= xlock.1 -.if ${MACHINE_ARCH} == "amd64" -WITH_MESAGL= no -.else WITH_MESAGL?= yes -.endif + .if ${WITH_MESAGL} == yes CONFIGURE_ARGS+= --with-mesa MESALIB=${PTHREAD_LIBS} --OgqxwSJOaUobr8KG--