From 5b863350faf0df44bb8caae33af48b82384d2e99 Mon Sep 17 00:00:00 2001 From: joerg Date: Mon, 9 Jul 2012 19:08:23 +0000 Subject: [PATCH] Fix template lookup. --- devel/ptlib/distinfo | 3 ++- devel/ptlib/patches/patch-include_ptlib_array.h | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 devel/ptlib/patches/patch-include_ptlib_array.h diff --git a/devel/ptlib/distinfo b/devel/ptlib/distinfo index 4c7c79fe547d..70c758895345 100644 --- a/devel/ptlib/distinfo +++ b/devel/ptlib/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.12 2012/04/19 12:34:43 hans Exp $ +$NetBSD: distinfo,v 1.13 2012/07/09 19:08:23 joerg Exp $ SHA1 (ptlib-2.6.5.tar.bz2) = 919487aee09d5a1ea5c4f0abdc01bc49d9dcb596 RMD160 (ptlib-2.6.5.tar.bz2) = ab2f8897b64ab7b1eb9fecc35470ce09af42bcf2 @@ -9,6 +9,7 @@ SHA1 (patch-configure) = 3af145c86d6a7060cb197228ae8046edbde437d4 SHA1 (patch-configure.ac) = 0813261dd595f2980bf691ad6fc69b27a527f803 SHA1 (patch-include_ptbuildopts.h.in) = 93559a280ec01e3eaa8396cd83bce7cf4ac275c5 SHA1 (patch-include_ptclib_pldap.h) = 0a6d27519797174883de7c1c5dfe47b6f187d491 +SHA1 (patch-include_ptlib_array.h) = 494b5a5f3e012500c05a7b66ee7a62c7eb1a6500 SHA1 (patch-make_unix.mak) = 03a436317afc6f77e574bf712b1926327bf00f6e SHA1 (patch-plugins_sound_esd_sound_esd.h) = 6caff0b4890fe3b137e5dd7ceb1013abe1f7fec8 SHA1 (patch-plugins_sound_oss_sound_oss.cxx) = d00476fb46a0bf2474e8963a8fe9f1765d393d04 diff --git a/devel/ptlib/patches/patch-include_ptlib_array.h b/devel/ptlib/patches/patch-include_ptlib_array.h new file mode 100644 index 000000000000..59357a0234a2 --- /dev/null +++ b/devel/ptlib/patches/patch-include_ptlib_array.h @@ -0,0 +1,13 @@ +$NetBSD: patch-include_ptlib_array.h,v 1.1 2012/07/09 19:08:23 joerg Exp $ + +--- include/ptlib/array.h.orig 2012-07-06 18:14:53.000000000 +0000 ++++ include/ptlib/array.h +@@ -523,7 +523,7 @@ template class PScalarArray : + T t; + stream >> t; + if (!stream.fail()) +- SetAt(index, t); ++ this->SetAt(index, t); + } + }; +