summaryrefslogtreecommitdiff
path: root/x11/rxvt-unicode
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2013-12-05 07:52:16 +0000
committerwiz <wiz@pkgsrc.org>2013-12-05 07:52:16 +0000
commit3fa46a8ffc79da2366be2ab0ecb01b905b1d4285 (patch)
treeb8718bde4b0686b508fdaccec92d940e1cfb743b /x11/rxvt-unicode
parent426511546f232f1fb2cb59dfe7c361f1e81abf33 (diff)
downloadpkgsrc-3fa46a8ffc79da2366be2ab0ecb01b905b1d4285.tar.gz
Remove patch after update (hi morr)
Diffstat (limited to 'x11/rxvt-unicode')
-rw-r--r--x11/rxvt-unicode/patches/patch-src_rxvtutil.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/x11/rxvt-unicode/patches/patch-src_rxvtutil.h b/x11/rxvt-unicode/patches/patch-src_rxvtutil.h
deleted file mode 100644
index 30a51ed8b28..00000000000
--- a/x11/rxvt-unicode/patches/patch-src_rxvtutil.h
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD: patch-src_rxvtutil.h,v 1.1 2013/11/10 20:29:24 joerg Exp $
-
-C++ requires replacements for new and delete to be global.
-
---- src/rxvtutil.h.orig 2013-11-09 22:04:25.000000000 +0000
-+++ src/rxvtutil.h
-@@ -89,19 +89,6 @@ struct rxvt_vec : simplevec<void *>
- };
- #endif
-
--inline void *
--operator new (size_t size)
--{
-- // TODO: use rxvt_malloc
-- return malloc (size);
--}
--
--inline void
--operator delete (void *p)
--{
-- free (p);
--}
--
- template<typename T>
- struct auto_ptr
- {