diff options
author | jlam <jlam@pkgsrc.org> | 2001-11-15 23:38:54 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-11-15 23:38:54 +0000 |
commit | d382f07f238100e7c51a4323a7b277cba310d3e2 (patch) | |
tree | 19176ffcffceafd0762837e1633f0295889254e1 /misc | |
parent | 645678fe13776a5805fb6686fe696bbed177980a (diff) | |
download | pkgsrc-d382f07f238100e7c51a4323a7b277cba310d3e2.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')
-rw-r--r-- | misc/koffice/distinfo | 4 | ||||
-rw-r--r-- | misc/koffice/patches/patch-ag | 8 |
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 /** |