From owner-svn-ports-all@FreeBSD.ORG Thu Jun 4 11:04:28 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7BFE1EB; Thu, 4 Jun 2015 11:04:28 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 95EBB10E3; Thu, 4 Jun 2015 11:04:28 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t54B4SFX002584; Thu, 4 Jun 2015 11:04:28 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t54B4Smx002583; Thu, 4 Jun 2015 11:04:28 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201506041104.t54B4Smx002583@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 4 Jun 2015 11:04:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388522 - head/graphics/libosmesa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Jun 2015 11:04:28 -0000 Author: kwm Date: Thu Jun 4 11:04:27 2015 New Revision: 388522 URL: https://svnweb.freebsd.org/changeset/ports/388522 Log: Mark libosmesa broken on 11-i386 for now. This should stop the fallout mail. We have a fix for the build issue but the fix depends on other changes to the mesa ports. This mesa update will be commit after 8.4-R has gone EOL. Modified: head/graphics/libosmesa/Makefile Modified: head/graphics/libosmesa/Makefile ============================================================================== --- head/graphics/libosmesa/Makefile Thu Jun 4 10:33:44 2015 (r388521) +++ head/graphics/libosmesa/Makefile Thu Jun 4 11:04:27 2015 (r388522) @@ -35,6 +35,12 @@ MAKE_JOBS_UNSAFE=yes INCLUDES= gl.h gl_mangle.h glext.h glx.h glx_mangle.h \ glxext.h osmesa.h wglext.h wmesa.h +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 && ${ARCH} == i386 +BROKEN= Doesn't build +.endif + post-patch: ${REINPLACE_CMD} \ -e '/^OSMESA_VERSION=/s|8|9|' \ @@ -51,4 +57,4 @@ do-install: ${LN} -s libOSMesa.so.9.0.0 ${STAGEDIR}${PREFIX}/lib/libOSMesa.so ${INSTALL_DATA} ${WRKSRC}/src/mesa/drivers/osmesa/osmesa.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/osmesa.pc -.include +.include