diff options
author | tnn <tnn@pkgsrc.org> | 2009-09-19 19:14:54 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-09-19 19:14:54 +0000 |
commit | 905afcc371c86fcdfcc3dec1ec98000d8f209ae4 (patch) | |
tree | 0a8f3b5077fd66b5b565dcde28e146366d4605df /net | |
parent | 473f50af2dfa4b878e2a4d58ace0b9ca721c1e6b (diff) | |
download | pkgsrc-905afcc371c86fcdfcc3dec1ec98000d8f209ae4.tar.gz |
include various system headers to get called function prototypes in scope.
Diffstat (limited to 'net')
-rw-r--r-- | net/synergy/distinfo | 15 | ||||
-rw-r--r-- | net/synergy/patches/patch-ac | 18 | ||||
-rw-r--r-- | net/synergy/patches/patch-ad | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-ae | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-af | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-ag | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-ah | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-ai | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-aj | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-ak | 13 | ||||
-rw-r--r-- | net/synergy/patches/patch-al | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-am | 12 | ||||
-rw-r--r-- | net/synergy/patches/patch-an | 12 |
13 files changed, 159 insertions, 7 deletions
diff --git a/net/synergy/distinfo b/net/synergy/distinfo index 6da6438afdd..42ade839192 100644 --- a/net/synergy/distinfo +++ b/net/synergy/distinfo @@ -1,8 +1,19 @@ -$NetBSD: distinfo,v 1.5 2007/09/07 05:42:25 taca Exp $ +$NetBSD: distinfo,v 1.6 2009/09/19 19:14:54 tnn Exp $ SHA1 (synergy-1.3.1.tar.gz) = 03113ec8aadfecaeba8e369b083f4fb5b44f5c62 RMD160 (synergy-1.3.1.tar.gz) = 5f5d7cb8fcfb57a6c8eae83fb53c704cb85c6c16 Size (synergy-1.3.1.tar.gz) = 793172 bytes SHA1 (patch-aa) = da4ad36cdcec251bf4334c2dccd68346042894de SHA1 (patch-ab) = fae459f7063a6a879b385a94d5e889877c94860d -SHA1 (patch-ac) = 4a5ac29f4d4c51ea03d985a2d481259a1a733dc7 +SHA1 (patch-ac) = 8f8714f20da9e3744ed82ee8ba9d7b652b78935d +SHA1 (patch-ad) = 2635ceb0cfa0fdd0af5ac362dd0d97353ca65440 +SHA1 (patch-ae) = b5430ec4d8a3d80cb71b21f786dac8c825c7c660 +SHA1 (patch-af) = bd866b8e22962ad94957ca7f93644d58a9f94c89 +SHA1 (patch-ag) = c9c9a2b064e230684e5cecfa014f7e1bc7f87204 +SHA1 (patch-ah) = c683524d97330150d2922fb66e2b252761ac6bb1 +SHA1 (patch-ai) = f00c16eaa0850320a7b4b33440ad8b1cdcb5c304 +SHA1 (patch-aj) = 543c18157715898155a6bdbfb66aaa7904c03b24 +SHA1 (patch-ak) = 7a5c2f7bfa2d36c0b0fe8ffcb353927639eefb66 +SHA1 (patch-al) = d41c717b9b7256b9afa3f5e810288cfe96dd60e4 +SHA1 (patch-am) = fc25d0d0d86316e6463745d5200f0abc77aef1c2 +SHA1 (patch-an) = 99d90958e5446842a42821522e801753ce4e0421 diff --git a/net/synergy/patches/patch-ac b/net/synergy/patches/patch-ac index 284fb44bb92..48a28b0ff46 100644 --- a/net/synergy/patches/patch-ac +++ b/net/synergy/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.1 2007/09/07 05:42:25 taca Exp $ +$NetBSD: patch-ac,v 1.2 2009/09/19 19:14:54 tnn Exp $ Fix compile problem with gcc4. CXWindowsScreen.cpp: In member function 'void CXWindowsScreen::openIM()': @@ -6,9 +6,17 @@ CXWindowsScreen.cpp:990: warning: missing sentinel in function call CXWindowsScreen.cpp:1013: warning: missing sentinel in function call CXWindowsScreen.cpp:1022: warning: missing sentinel in function call ---- lib/platform/CXWindowsScreen.cpp.orig 2006-04-02 19:16:39.000000000 +0000 +--- lib/platform/CXWindowsScreen.cpp.orig 2006-04-02 21:16:39.000000000 +0200 +++ lib/platform/CXWindowsScreen.cpp -@@ -987,7 +987,7 @@ CXWindowsScreen::openIM() +@@ -26,6 +26,7 @@ + #include "CStringUtil.h" + #include "IEventQueue.h" + #include "TMethodEventJob.h" ++#include <stdlib.h> + #include <cstring> + #if X_DISPLAY_MISSING + # error X11 is required to build synergy +@@ -987,7 +988,7 @@ CXWindowsScreen::openIM() // find the appropriate style. synergy supports XIMPreeditNothing // only at the moment. XIMStyles* styles; @@ -17,7 +25,7 @@ CXWindowsScreen.cpp:1022: warning: missing sentinel in function call styles == NULL) { LOG((CLOG_WARN "cannot get IM styles")); XCloseIM(im); -@@ -1010,7 +1010,7 @@ CXWindowsScreen::openIM() +@@ -1010,7 +1011,7 @@ CXWindowsScreen::openIM() } // create an input context for the style and tell it about our window @@ -26,7 +34,7 @@ CXWindowsScreen.cpp:1022: warning: missing sentinel in function call if (ic == NULL) { LOG((CLOG_WARN "cannot create IC")); XCloseIM(im); -@@ -1019,7 +1019,7 @@ CXWindowsScreen::openIM() +@@ -1019,7 +1020,7 @@ CXWindowsScreen::openIM() // find out the events we must select for and do so unsigned long mask; diff --git a/net/synergy/patches/patch-ad b/net/synergy/patches/patch-ad new file mode 100644 index 00000000000..c1fbbfc57f5 --- /dev/null +++ b/net/synergy/patches/patch-ad @@ -0,0 +1,12 @@ +$NetBSD: patch-ad,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/arch/CArchDaemonUnix.cpp.orig 2005-04-24 05:02:12.000000000 +0200 ++++ lib/arch/CArchDaemonUnix.cpp +@@ -14,6 +14,7 @@ + + #include "CArchDaemonUnix.h" + #include "XArchUnix.h" ++#include <stdlib.h> + #include <unistd.h> + #include <sys/types.h> + #include <sys/stat.h> diff --git a/net/synergy/patches/patch-ae b/net/synergy/patches/patch-ae new file mode 100644 index 00000000000..c057195edbf --- /dev/null +++ b/net/synergy/patches/patch-ae @@ -0,0 +1,12 @@ +$NetBSD: patch-ae,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/arch/CMultibyte.cpp.orig 2005-11-30 05:33:24.000000000 +0100 ++++ lib/arch/CMultibyte.cpp +@@ -17,6 +17,7 @@ + + #include "common.h" + #include "CArch.h" ++#include <stdlib.h> + #include <limits.h> + #include <string.h> + #if HAVE_LOCALE_H diff --git a/net/synergy/patches/patch-af b/net/synergy/patches/patch-af new file mode 100644 index 00000000000..6ebf9f9bf20 --- /dev/null +++ b/net/synergy/patches/patch-af @@ -0,0 +1,12 @@ +$NetBSD: patch-af,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/base/CStringUtil.cpp.orig 2005-12-14 18:25:20.000000000 +0100 ++++ lib/base/CStringUtil.cpp +@@ -16,6 +16,7 @@ + #include "CArch.h" + #include "common.h" + #include "stdvector.h" ++#include <string.h> + #include <cctype> + #include <cstdio> + #include <cstdlib> diff --git a/net/synergy/patches/patch-ag b/net/synergy/patches/patch-ag new file mode 100644 index 00000000000..f88663cf4e6 --- /dev/null +++ b/net/synergy/patches/patch-ag @@ -0,0 +1,12 @@ +$NetBSD: patch-ag,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/net/CTCPSocket.cpp.orig 2006-04-02 03:47:03.000000000 +0200 ++++ lib/net/CTCPSocket.cpp +@@ -23,6 +23,7 @@ + #include "IEventJob.h" + #include "CArch.h" + #include "XArch.h" ++#include <stdlib.h> + #include <string.h> + + // diff --git a/net/synergy/patches/patch-ah b/net/synergy/patches/patch-ah new file mode 100644 index 00000000000..bb178876a30 --- /dev/null +++ b/net/synergy/patches/patch-ah @@ -0,0 +1,12 @@ +$NetBSD: patch-ah,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/synergy/CPacketStreamFilter.cpp.orig 2005-04-24 05:02:16.000000000 +0200 ++++ lib/synergy/CPacketStreamFilter.cpp +@@ -16,6 +16,7 @@ + #include "IEventQueue.h" + #include "CLock.h" + #include "TMethodEventJob.h" ++#include <string.h> + + // + // CPacketStreamFilter diff --git a/net/synergy/patches/patch-ai b/net/synergy/patches/patch-ai new file mode 100644 index 00000000000..3286dbab869 --- /dev/null +++ b/net/synergy/patches/patch-ai @@ -0,0 +1,12 @@ +$NetBSD: patch-ai,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/synergy/IKeyState.cpp.orig 2006-03-22 06:40:27.000000000 +0100 ++++ lib/synergy/IKeyState.cpp +@@ -13,6 +13,7 @@ + */ + + #include "IKeyState.h" ++#include <stdlib.h> + #include <string.h> + + // diff --git a/net/synergy/patches/patch-aj b/net/synergy/patches/patch-aj new file mode 100644 index 00000000000..24d8c84a9f9 --- /dev/null +++ b/net/synergy/patches/patch-aj @@ -0,0 +1,12 @@ +$NetBSD: patch-aj,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/synergy/IPrimaryScreen.cpp.orig 2006-03-22 06:40:27.000000000 +0100 ++++ lib/synergy/IPrimaryScreen.cpp +@@ -13,6 +13,7 @@ + */ + + #include "IPrimaryScreen.h" ++#include <stdlib.h> + + // + // IPrimaryScreen diff --git a/net/synergy/patches/patch-ak b/net/synergy/patches/patch-ak new file mode 100644 index 00000000000..de258c68dc9 --- /dev/null +++ b/net/synergy/patches/patch-ak @@ -0,0 +1,13 @@ +$NetBSD: patch-ak,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/client/CClient.cpp.orig 2006-03-09 05:07:17.000000000 +0100 ++++ lib/client/CClient.cpp +@@ -26,6 +26,8 @@ + #include "CLog.h" + #include "IEventQueue.h" + #include "TMethodEventJob.h" ++#include <stdlib.h> ++#include <string.h> + + // + // CClient diff --git a/net/synergy/patches/patch-al b/net/synergy/patches/patch-al new file mode 100644 index 00000000000..365944eae90 --- /dev/null +++ b/net/synergy/patches/patch-al @@ -0,0 +1,12 @@ +$NetBSD: patch-al,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/client/CServerProxy.cpp.orig 2006-04-02 03:47:03.000000000 +0200 ++++ lib/client/CServerProxy.cpp +@@ -23,6 +23,7 @@ + #include "IEventQueue.h" + #include "TMethodEventJob.h" + #include "XBase.h" ++#include <string.h> + #include <memory> + + // diff --git a/net/synergy/patches/patch-am b/net/synergy/patches/patch-am new file mode 100644 index 00000000000..2697833c9f7 --- /dev/null +++ b/net/synergy/patches/patch-am @@ -0,0 +1,12 @@ +$NetBSD: patch-am,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/server/CClientProxy1_3.cpp.orig 2006-02-12 20:53:43.000000000 +0100 ++++ lib/server/CClientProxy1_3.cpp +@@ -17,6 +17,7 @@ + #include "CLog.h" + #include "IEventQueue.h" + #include "TMethodEventJob.h" ++#include <string.h> + + // + // CClientProxy1_3 diff --git a/net/synergy/patches/patch-an b/net/synergy/patches/patch-an new file mode 100644 index 00000000000..1510a5dd1ce --- /dev/null +++ b/net/synergy/patches/patch-an @@ -0,0 +1,12 @@ +$NetBSD: patch-an,v 1.1 2009/09/19 19:14:54 tnn Exp $ + +--- lib/server/CServer.cpp.orig 2006-04-02 03:47:04.000000000 +0200 ++++ lib/server/CServer.cpp +@@ -28,6 +28,7 @@ + #include "CLog.h" + #include "TMethodEventJob.h" + #include "CArch.h" ++#include <stdlib.h> + #include <string.h> + + // |