diff options
author | kristerw <kristerw> | 2004-06-13 22:53:22 +0000 |
---|---|---|
committer | kristerw <kristerw> | 2004-06-13 22:53:22 +0000 |
commit | 09d85fab3a6027b1cc8301e702e75f70455f2083 (patch) | |
tree | 480733711aca65b1e70f0b4641e8a79f0cb36e70 /misc | |
parent | 9f31cad04e880647a7f393f3e8dd4daccb5e6365 (diff) | |
download | pkgsrc-09d85fab3a6027b1cc8301e702e75f70455f2083.tar.gz |
Fix some #include and std name space stuff, to make this build when
using gcc 3.3 too.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/kdeadmin2/distinfo | 4 | ||||
-rw-r--r-- | misc/kdeadmin2/patches/patch-aa | 22 | ||||
-rw-r--r-- | misc/kdeadmin2/patches/patch-ab | 13 |
3 files changed, 38 insertions, 1 deletions
diff --git a/misc/kdeadmin2/distinfo b/misc/kdeadmin2/distinfo index af9e3da1640..5ff3775f37c 100644 --- a/misc/kdeadmin2/distinfo +++ b/misc/kdeadmin2/distinfo @@ -1,4 +1,6 @@ -$NetBSD: distinfo,v 1.4 2001/12/03 15:37:15 skrll Exp $ +$NetBSD: distinfo,v 1.5 2004/06/13 22:53:22 kristerw Exp $ SHA1 (kdeadmin-2.2.2.tar.bz2) = be0d0b102cdef6fb440aa718bf8f49e20a47d4b1 Size (kdeadmin-2.2.2.tar.bz2) = 902809 bytes +SHA1 (patch-aa) = 0409dde16692508470afee8a684db2c335fb5fb7 +SHA1 (patch-ab) = 6ad4b720866d6e064af2ed5092e7aecf6c9ee17e diff --git a/misc/kdeadmin2/patches/patch-aa b/misc/kdeadmin2/patches/patch-aa new file mode 100644 index 00000000000..2d6ddfcadac --- /dev/null +++ b/misc/kdeadmin2/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1 2004/06/13 22:53:22 kristerw Exp $ + +--- kwuftpd/ftpaccess.cpp.orig 2004-06-13 23:58:33.000000000 +0200 ++++ kwuftpd/ftpaccess.cpp 2004-06-14 00:11:00.000000000 +0200 +@@ -8,7 +8,7 @@ + #ifdef __DECCXX + #define _RWSTD_NO_NAMESPACE + #endif +-#include <strstream.h> ++#include <strstream> + #include <ctype.h> + #include <stdio.h> + +@@ -1010,7 +1010,7 @@ + { + char *h=(char *) malloc(128); + memset(h,0,128); +- strstream id(h,128); ++ std::strstream id(h,128); + id.seekp(0); + if(isAny()) + id << "Any"; diff --git a/misc/kdeadmin2/patches/patch-ab b/misc/kdeadmin2/patches/patch-ab new file mode 100644 index 00000000000..fc0ca866c1c --- /dev/null +++ b/misc/kdeadmin2/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2004/06/13 22:53:22 kristerw Exp $ + +--- kcron/ktview.cpp.orig 2004-06-13 23:52:35.000000000 +0200 ++++ kcron/ktview.cpp 2004-06-13 23:54:10.000000000 +0200 +@@ -19,7 +19,7 @@ + #ifdef __DECCXX + #include <sstream> + #else +-#include <strstream.h> ++#include <strstream> + #endif + #include <string> + |