diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-08-01 17:19:04 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-08-01 17:19:04 +0000 |
commit | c15839597b1216545ced10d80505a30a74bf5700 (patch) | |
tree | 1124034019c2127bab54a67478f06917e0376c8a /chat/centericq | |
parent | ff140039f20ccd498b5408ed3e71628614903ae0 (diff) | |
download | pkgsrc-c15839597b1216545ced10d80505a30a74bf5700.tar.gz |
Add a missing include file, and add a workaround for gcc 2.95 C++
header files not following the C++ standard...
Diffstat (limited to 'chat/centericq')
-rw-r--r-- | chat/centericq/distinfo | 4 | ||||
-rw-r--r-- | chat/centericq/patches/patch-ab | 12 | ||||
-rw-r--r-- | chat/centericq/patches/patch-ac | 14 |
3 files changed, 29 insertions, 1 deletions
diff --git a/chat/centericq/distinfo b/chat/centericq/distinfo index 0508e4cbccf..05670ca1b57 100644 --- a/chat/centericq/distinfo +++ b/chat/centericq/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.9 2004/07/24 00:16:50 hubertf Exp $ +$NetBSD: distinfo,v 1.10 2004/08/01 17:19:04 kristerw Exp $ SHA1 (centericq-4.10.0.tar.bz2) = 08e5baf14a0c418d6e838de3baf8348d3336f9c2 Size (centericq-4.10.0.tar.bz2) = 1237063 bytes SHA1 (patch-aa) = b3e610a1a3b30a716215889b9f51c6de7e78fb22 +SHA1 (patch-ab) = 6d9beb28024666bbfef2e95cab648d7058f8136c +SHA1 (patch-ac) = 74ae25e19bf5d250a407a937bf78405b38cc86da diff --git a/chat/centericq/patches/patch-ab b/chat/centericq/patches/patch-ab new file mode 100644 index 00000000000..47bd475e8f0 --- /dev/null +++ b/chat/centericq/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1 2004/08/01 17:19:04 kristerw Exp $ + +--- libmsn-0.1/msn/filetransfer.cpp.orig Sun Aug 1 18:33:02 2004 ++++ libmsn-0.1/msn/filetransfer.cpp Sun Aug 1 18:35:26 2004 +@@ -26,6 +26,7 @@ + #include <msn/externals.h> + + #ifndef WIN32 ++#include <sys/time.h> + #include <unistd.h> + #include <sys/socket.h> + #else diff --git a/chat/centericq/patches/patch-ac b/chat/centericq/patches/patch-ac new file mode 100644 index 00000000000..ca91b2f1cdb --- /dev/null +++ b/chat/centericq/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1 2004/08/01 17:19:04 kristerw Exp $ + +--- libmsn-0.1/msn/util.cpp.orig Sun Aug 1 18:49:51 2004 ++++ libmsn-0.1/msn/util.cpp Sun Aug 1 18:50:59 2004 +@@ -24,6 +24,9 @@ + #include <cerrno> + #include <cctype> + ++// Get rid of the macro for platforms not having c++-safe headers. ++#undef toupper ++ + namespace MSN + { + std::pair<std::string, int> splitServerAddress(const std::string & address, int default_port) |