svn commit: r414294 - head/devel/libhoard/files

Kurt Jaeger pi at FreeBSD.org
Fri Apr 29 21:21:18 UTC 2016


Author: pi
Date: Fri Apr 29 21:21:17 2016
New Revision: 414294
URL: https://svnweb.freebsd.org/changeset/ports/414294

Log:
  devel/libhoard: Fix build with libc++ 3.8.0
  
  PR:		208621
  Submitted by:	dim
  Approved by:	uffe at uffe.org (maintainer timeout)

Added:
  head/devel/libhoard/files/patch-src_Heap-Layers_heaps_debug_sanitycheckheap.h   (contents, props changed)

Added: head/devel/libhoard/files/patch-src_Heap-Layers_heaps_debug_sanitycheckheap.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libhoard/files/patch-src_Heap-Layers_heaps_debug_sanitycheckheap.h	Fri Apr 29 21:21:17 2016	(r414294)
@@ -0,0 +1,11 @@
+--- Heap-Layers/heaps/debug/sanitycheckheap.h.orig	2013-10-21 01:01:57.000000000 +0200
++++ Heap-Layers/heaps/debug/sanitycheckheap.h	2016-04-07 23:39:09.104819000 +0200
+@@ -27,7 +27,7 @@ namespace HL {
+     /// This approach lets us use SanityCheckHeaps when we're replacing malloc.
+ 
+     // The objects are pairs, mapping void * pointers to sizes.
+-    typedef std::pair<const void *, size_t> objType;
++    typedef std::pair<void * const, size_t> objType;
+ 
+     // The heap is a simple freelist heap.
+     typedef HL::FreelistHeap<HL::ZoneHeap<HL::MmapHeap, 16384> > heapType;


More information about the svn-ports-all mailing list