Date: Mon, 7 Oct 2019 08:56:12 +0000 (UTC) From: Dirk Meyer <dinoex@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513932 - in head/graphics/graphviz: . files Message-ID: <201910070856.x978uCnM066660@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dinoex Date: Mon Oct 7 08:56:11 2019 New Revision: 513932 URL: https://svnweb.freebsd.org/changeset/ports/513932 Log: -fix for aarch64 PR: 241073 Modified: head/graphics/graphviz/Makefile head/graphics/graphviz/files/patch-lib-vmalloc-vmhdr.h Modified: head/graphics/graphviz/Makefile ============================================================================== --- head/graphics/graphviz/Makefile Mon Oct 7 08:40:23 2019 (r513931) +++ head/graphics/graphviz/Makefile Mon Oct 7 08:56:11 2019 (r513932) @@ -13,9 +13,6 @@ COMMENT= Graph Visualization Software from AT&T and Be LICENSE= EPL LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_aarch64= missing sbrk ? -BROKEN_arm64= missing sbrk ? - BUILD_DEPENDS= tclsh${TCL_VER}:lang/tcl${_TCLTK_WANTED_VERSION} LIB_DEPENDS= libltdl.so:devel/libltdl \ libpng.so:graphics/png \ Modified: head/graphics/graphviz/files/patch-lib-vmalloc-vmhdr.h ============================================================================== --- head/graphics/graphviz/files/patch-lib-vmalloc-vmhdr.h Mon Oct 7 08:40:23 2019 (r513931) +++ head/graphics/graphviz/files/patch-lib-vmalloc-vmhdr.h Mon Oct 7 08:56:11 2019 (r513932) @@ -6,7 +6,7 @@ #endif +#if defined(__FreeBSD__) && defined(__aarch64__) +/* No sbrk on FreeBSD/AArch64 */ -+#define _std_malloc 1 ++#define _BLD_INSTRUMENT 1 +#endif #ifdef _WIN32 #include <io.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910070856.x978uCnM066660>