summaryrefslogtreecommitdiff
path: root/misc/koffice
diff options
context:
space:
mode:
authorjlam <jlam>2001-11-15 23:38:54 +0000
committerjlam <jlam>2001-11-15 23:38:54 +0000
commite084dc22efed6ab086274a33afbb8a6fd7a9425d (patch)
tree19176ffcffceafd0762837e1633f0295889254e1 /misc/koffice
parentc971764b36491049d120b70602969b1a6cd8eb44 (diff)
downloadpkgsrc-e084dc22efed6ab086274a33afbb8a6fd7a9425d.tar.gz
Use the standard auto_ptr implementation in the new toolchain case. This
case was previously skipped over. This should fix pkg/14595 by Mark Davies <mark@mcs.vuw.ac.nz>.
Diffstat (limited to 'misc/koffice')
-rw-r--r--misc/koffice/distinfo4
-rw-r--r--misc/koffice/patches/patch-ag8
2 files changed, 7 insertions, 5 deletions
diff --git a/misc/koffice/distinfo b/misc/koffice/distinfo
index 47899ffdf4d..0237e04f956 100644
--- a/misc/koffice/distinfo
+++ b/misc/koffice/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2001/11/13 21:23:43 jlam Exp $
+$NetBSD: distinfo,v 1.4 2001/11/15 23:38:54 jlam Exp $
SHA1 (koffice-1.1.tar.bz2) = 1974e41927f9178798a3d3c2597a1cd6ae29b384
Size (koffice-1.1.tar.bz2) = 6324542 bytes
@@ -8,4 +8,4 @@ SHA1 (patch-ac) = 786543aed389f0fc56dee9a13c6fb4cbc47c226a
SHA1 (patch-ad) = 8264b5091bb2a8880273201587e4c7c1f7cfe639
SHA1 (patch-ae) = a048cbbbf51dc51dc0a7c47f783adb4e44d0e66d
SHA1 (patch-af) = 95abb2d03f8607787a0f1069d7721d47b1f111ca
-SHA1 (patch-ag) = 439ccf80287142bf2b86a100a480e99542a86d8a
+SHA1 (patch-ag) = b3707ef85e564921f41a76c9c1f3c29dcd877d86
diff --git a/misc/koffice/patches/patch-ag b/misc/koffice/patches/patch-ag
index 8755623028e..257d2093b7f 100644
--- a/misc/koffice/patches/patch-ag
+++ b/misc/koffice/patches/patch-ag
@@ -1,8 +1,8 @@
-$NetBSD: patch-ag,v 1.2 2001/11/13 21:23:43 jlam Exp $
+$NetBSD: patch-ag,v 1.3 2001/11/15 23:38:55 jlam Exp $
--- lib/kformula/elementindex.h.orig Sun May 27 15:07:03 2001
+++ lib/kformula/elementindex.h
-@@ -30,7 +30,52 @@
+@@ -30,7 +30,54 @@
class ElementIndex;
@@ -48,10 +48,12 @@ $NetBSD: patch-ag,v 1.2 2001/11/13 21:23:43 jlam Exp $
+};
+
+typedef auto_ptr<ElementIndex> ElementIndexPtr;
-+#endif
+#else
typedef std::auto_ptr<ElementIndex> ElementIndexPtr;
+#endif
++#else
++typedef std::auto_ptr<ElementIndex> ElementIndexPtr;
++#endif
/**