mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 02:57:40 -04:00
16 lines
497 B
Plaintext
16 lines
497 B
Plaintext
$NetBSD: patch-aa,v 1.2 2009/06/15 23:07:30 sno Exp $
|
|
|
|
Do not error out if perl was built without PERL_MALLOC_WRAP
|
|
|
|
--- stolen_chunk_of_toke.c.orig 2009-06-05 13:57:22.000000000 +0000
|
|
+++ stolen_chunk_of_toke.c 2009-06-15 22:50:52.000000000 +0000
|
|
@@ -44,7 +44,7 @@
|
|
#ifndef SvPVX_const
|
|
#define SvPVX_const(sv) ((const char*) (0 + SvPVX(sv)))
|
|
#endif
|
|
-#ifndef MEM_WRAP_CHECK_
|
|
+#if defined(PERL_MALLOC_WRAP) && !defined(MEM_WRAP_CHECK_)
|
|
#define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
|
|
#endif
|
|
|