wok diff synergy/stuff/synergy-1.3.1_glibc-2.10.u @ rev 9894

python-kiwi: fix bdep
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 17 11:29:00 2011 +0200 (2011-05-17)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/synergy/stuff/synergy-1.3.1_glibc-2.10.u	Tue May 17 11:29:00 2011 +0200
     1.3 @@ -0,0 +1,123 @@
     1.4 +--- synergy-1.3.1-ori/lib/arch/CArchDaemonUnix.cpp	Sun Apr 24 03:02:12 2005
     1.5 ++++ synergy-1.3.1/lib/arch/CArchDaemonUnix.cpp	Sat Sep 26 10:33:29 2009
     1.6 +@@ -19,6 +19,7 @@
     1.7 + #include <sys/stat.h>
     1.8 + #include <fcntl.h>
     1.9 + #include <errno.h>
    1.10 ++#include <cstdlib>
    1.11 + 
    1.12 + //
    1.13 + // CArchDaemonUnix
    1.14 +--- synergy-1.3.1-ori/lib/arch/CMultibyte.cpp	Wed Nov 30 04:33:24 2005
    1.15 ++++ synergy-1.3.1/lib/arch/CMultibyte.cpp	Sat Sep 26 13:56:02 2009
    1.16 +@@ -19,6 +19,7 @@
    1.17 + #include "CArch.h"
    1.18 + #include <limits.h>
    1.19 + #include <string.h>
    1.20 ++#include <cstdlib>
    1.21 + #if HAVE_LOCALE_H
    1.22 + #	include <locale.h>
    1.23 + #endif
    1.24 +--- synergy-1.3.1-ori/lib/base/CStringUtil.cpp	Wed Dec 14 17:25:20 2005
    1.25 ++++ synergy-1.3.1/lib/base/CStringUtil.cpp	Sat Sep 26 14:00:44 2009
    1.26 +@@ -19,6 +19,7 @@
    1.27 + #include <cctype>
    1.28 + #include <cstdio>
    1.29 + #include <cstdlib>
    1.30 ++#include <cstring>
    1.31 + #include <algorithm>
    1.32 + 
    1.33 + //
    1.34 +--- synergy-1.3.1-ori/lib/client/CClient.cpp	Thu Mar  9 04:07:17 2006
    1.35 ++++ synergy-1.3.1/lib/client/CClient.cpp	Sat Sep 26 18:21:54 2009
    1.36 +@@ -26,6 +26,8 @@
    1.37 + #include "CLog.h"
    1.38 + #include "IEventQueue.h"
    1.39 + #include "TMethodEventJob.h"
    1.40 ++#include <cstdlib>
    1.41 ++#include <cstring>
    1.42 + 
    1.43 + //
    1.44 + // CClient
    1.45 +--- synergy-1.3.1-ori/lib/client/CServerProxy.cpp	Sun Apr  2 01:47:03 2006
    1.46 ++++ synergy-1.3.1/lib/client/CServerProxy.cpp	Sat Sep 26 18:23:54 2009
    1.47 +@@ -24,6 +24,7 @@
    1.48 + #include "TMethodEventJob.h"
    1.49 + #include "XBase.h"
    1.50 + #include <memory>
    1.51 ++#include <cstring>
    1.52 + 
    1.53 + //
    1.54 + // CServerProxy
    1.55 +--- synergy-1.3.1-ori/lib/net/CTCPSocket.cpp	Sun Apr  2 01:47:03 2006
    1.56 ++++ synergy-1.3.1/lib/net/CTCPSocket.cpp	Sat Sep 26 14:03:26 2009
    1.57 +@@ -24,6 +24,7 @@
    1.58 + #include "CArch.h"
    1.59 + #include "XArch.h"
    1.60 + #include <string.h>
    1.61 ++#include <cstdlib>
    1.62 + 
    1.63 + //
    1.64 + // CTCPSocket
    1.65 +--- synergy-1.3.1-ori/lib/platform/CXWindowsScreen.cpp	Sun Apr  2 19:16:39 2006
    1.66 ++++ synergy-1.3.1/lib/platform/CXWindowsScreen.cpp	Sat Sep 26 18:18:55 2009
    1.67 +@@ -27,6 +27,8 @@
    1.68 + #include "IEventQueue.h"
    1.69 + #include "TMethodEventJob.h"
    1.70 + #include <cstring>
    1.71 ++#include <cstdlib>
    1.72 ++
    1.73 + #if X_DISPLAY_MISSING
    1.74 + #	error X11 is required to build synergy
    1.75 + #else
    1.76 +--- synergy-1.3.1-ori/lib/server/CClientProxy1_3.cpp	Sun Feb 12 19:53:43 2006
    1.77 ++++ synergy-1.3.1/lib/server/CClientProxy1_3.cpp	Sat Sep 26 18:28:57 2009
    1.78 +@@ -17,7 +17,7 @@
    1.79 + #include "CLog.h"
    1.80 + #include "IEventQueue.h"
    1.81 + #include "TMethodEventJob.h"
    1.82 +-
    1.83 ++#include <cstring>
    1.84 + //
    1.85 + // CClientProxy1_3
    1.86 + //
    1.87 +--- synergy-1.3.1-ori/lib/server/CServer.cpp	Sun Apr  2 01:47:04 2006
    1.88 ++++ synergy-1.3.1/lib/server/CServer.cpp	Sat Sep 26 18:51:59 2009
    1.89 +@@ -29,6 +29,7 @@
    1.90 + #include "TMethodEventJob.h"
    1.91 + #include "CArch.h"
    1.92 + #include <string.h>
    1.93 ++#include <cstdlib>
    1.94 + 
    1.95 + //
    1.96 + // CServer
    1.97 +--- synergy-1.3.1-ori/lib/synergy/CPacketStreamFilter.cpp	Sun Apr 24 03:02:16 2005
    1.98 ++++ synergy-1.3.1/lib/synergy/CPacketStreamFilter.cpp	Sat Sep 26 14:17:11 2009
    1.99 +@@ -16,6 +16,7 @@
   1.100 + #include "IEventQueue.h"
   1.101 + #include "CLock.h"
   1.102 + #include "TMethodEventJob.h"
   1.103 ++#include <cstring>
   1.104 + 
   1.105 + //
   1.106 + // CPacketStreamFilter
   1.107 +--- synergy-1.3.1-ori/lib/synergy/IKeyState.cpp	Wed Mar 22 05:40:27 2006
   1.108 ++++ synergy-1.3.1/lib/synergy/IKeyState.cpp	Sat Sep 26 14:35:54 2009
   1.109 +@@ -14,6 +14,7 @@
   1.110 + 
   1.111 + #include "IKeyState.h"
   1.112 + #include <string.h>
   1.113 ++#include <cstdlib>
   1.114 + 
   1.115 + //
   1.116 + // IKeyState
   1.117 +--- synergy-1.3.1-ori/lib/synergy/IPrimaryScreen.cpp	Wed Mar 22 05:40:27 2006
   1.118 ++++ synergy-1.3.1/lib/synergy/IPrimaryScreen.cpp	Sat Sep 26 18:15:23 2009
   1.119 +@@ -13,6 +13,7 @@
   1.120 +  */
   1.121 + 
   1.122 + #include "IPrimaryScreen.h"
   1.123 ++#include <cstdlib>
   1.124 + 
   1.125 + //
   1.126 + // IPrimaryScreen