From owner-svn-ports-head@freebsd.org Sun Nov 13 23:53:09 2016 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 1AF8CC40DF3; Sun, 13 Nov 2016 23:53:09 +0000 (UTC) (envelope-from dinoex@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 DAE181215; Sun, 13 Nov 2016 23:53:08 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uADNr8uj068364; Sun, 13 Nov 2016 23:53:08 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uADNr7AE068362; Sun, 13 Nov 2016 23:53:07 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201611132353.uADNr7AE068362@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Sun, 13 Nov 2016 23:53:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426075 - in head/graphics/graphviz: . files 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.23 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: Sun, 13 Nov 2016 23:53:09 -0000 Author: dinoex Date: Sun Nov 13 23:53:07 2016 New Revision: 426075 URL: https://svnweb.freebsd.org/changeset/ports/426075 Log: - fix build on aarch64 PR: 213864 Submitted by: Andrew Turner Added: head/graphics/graphviz/files/patch-lib-vmalloc-vmhdr.h (contents, props changed) Modified: head/graphics/graphviz/Makefile Modified: head/graphics/graphviz/Makefile ============================================================================== --- head/graphics/graphviz/Makefile Sun Nov 13 23:09:06 2016 (r426074) +++ head/graphics/graphviz/Makefile Sun Nov 13 23:53:07 2016 (r426075) @@ -3,7 +3,7 @@ PORTNAME= graphviz PORTVERSION= 2.38.0 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= graphics tk MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/ @@ -17,7 +17,7 @@ LIB_DEPENDS= libltdl.so:devel/libltdl \ libexpat.so:textproc/expat2 \ libgd.so:${GD_PORT} -ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS= aarch64 amd64 i386 USES= bison cpe gmake jpeg libtool:keepla pkgconfig pathfix shebangfix GNU_CONFIGURE= yes Added: head/graphics/graphviz/files/patch-lib-vmalloc-vmhdr.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/graphviz/files/patch-lib-vmalloc-vmhdr.h Sun Nov 13 23:53:07 2016 (r426075) @@ -0,0 +1,13 @@ +--- lib/vmalloc/vmhdr.h.orig 2016-11-07 02:32:54.935418000 +0000 ++++ lib/vmalloc/vmhdr.h 2016-11-07 02:38:16.506108000 +0000 +@@ -20,6 +20,10 @@ + #ifndef _BLD_vmalloc + #define _BLD_vmalloc 1 + #endif ++#if defined(__FreeBSD__) && defined(__aarch64__) ++/* No sbrk on FreeBSD/AArch64 */ ++#define _std_malloc 1 ++#endif + #ifdef WIN32 + #include + #endif