From owner-svn-ports-head@freebsd.org Tue Oct 20 18:49:48 2015 Return-Path: Delivered-To: svn-ports-head@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 5A908A1A906; Tue, 20 Oct 2015 18:49:48 +0000 (UTC) (envelope-from jmmv@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 264EAA9E; Tue, 20 Oct 2015 18:49:48 +0000 (UTC) (envelope-from jmmv@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9KInlmp028980; Tue, 20 Oct 2015 18:49:47 GMT (envelope-from jmmv@FreeBSD.org) Received: (from jmmv@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9KInlit028979; Tue, 20 Oct 2015 18:49:47 GMT (envelope-from jmmv@FreeBSD.org) Message-Id: <201510201849.t9KInlit028979@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jmmv set sender to jmmv@FreeBSD.org using -f From: Julio Merino Date: Tue, 20 Oct 2015 18:49:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399873 - head/x11/pixman X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Oct 2015 18:49:48 -0000 Author: jmmv (src committer) Date: Tue Oct 20 18:49:47 2015 New Revision: 399873 URL: https://svnweb.freebsd.org/changeset/ports/399873 Log: Avoid building unnecessary demos and tests. The pixmap package does not install neither the demos nor the tests it includes, yet these get built as part of "make all". Disable them to shorten build times and, particularly, to workaround ld(1) crashes triggered by them in powerpc64; see PR bin/202284 for details. Reviewed by: kwm (maintainer), bdrewery (mentor) Differential Revision: https://reviews.freebsd.org/D3372 Modified: head/x11/pixman/Makefile Modified: head/x11/pixman/Makefile ============================================================================== --- head/x11/pixman/Makefile Tue Oct 20 16:53:08 2015 (r399872) +++ head/x11/pixman/Makefile Tue Oct 20 18:49:47 2015 (r399873) @@ -18,4 +18,9 @@ XORG_CAT= lib CONFIGURE_ARGS= --disable-gtk INSTALL_TARGET= install-strip +# Build the library exclusively, thus disabling the demos and the tests (which +# do not get installed anyway). This is to workaround a problem in powerpc64 +# where the build of the tests crashes ld; see PR bin/202284. +MAKE_ARGS= SUBDIRS=pixman + .include