zhcon/zhcon-0.2.6.gcc43.patch

155 lines
5.7 KiB
Diff

Only in zhcon-0.2.5: config.h
Only in zhcon-0.2.5: config.log
Only in zhcon-0.2.5: config.status
Only in zhcon-0.2.5/debian: Makefile
Only in zhcon-0.2.5/doc: Makefile
Only in zhcon-0.2.5/doc: zhcon.1
Only in zhcon-0.2.5/font: Makefile
Only in zhcon-0.2.5/input: Makefile
Only in zhcon-0.2.5: Makefile
diff -u -r zhcon-0.2.5/src/basefont.cpp zhcon-0.2.5.fix/src/basefont.cpp
--- zhcon-0.2.5/src/basefont.cpp 2006-04-25 00:38:27.000000000 +0800
+++ zhcon-0.2.5.fix/src/basefont.cpp 2008-02-26 17:00:11.000000000 +0800
@@ -16,6 +16,7 @@
* *
***************************************************************************/
+#include <cstring>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
Only in zhcon-0.2.5/src: .deps
Only in zhcon-0.2.5/src/display: .deps
Only in zhcon-0.2.5/src/display: fbdev.o
Only in zhcon-0.2.5/src/display: fblinear15.o
Only in zhcon-0.2.5/src/display: fblinear16.o
Only in zhcon-0.2.5/src/display: fblinear24.o
Only in zhcon-0.2.5/src/display: fblinear32.o
diff -u -r zhcon-0.2.5/src/display/fblinear4.cpp zhcon-0.2.5.fix/src/display/fblinear4.cpp
--- zhcon-0.2.5/src/display/fblinear4.cpp 2006-04-25 00:38:23.000000000 +0800
+++ zhcon-0.2.5.fix/src/display/fblinear4.cpp 2008-03-03 14:10:32.000000000 +0800
@@ -17,6 +17,7 @@
* *
***************************************************************************/
+#include <string.h>
#include <assert.h>
#include <endian.h>
#include "global.h"
diff -u -r zhcon-0.2.5/src/display/fblinear8.cpp zhcon-0.2.5.fix/src/display/fblinear8.cpp
--- zhcon-0.2.5/src/display/fblinear8.cpp 2006-04-25 00:38:23.000000000 +0800
+++ zhcon-0.2.5.fix/src/display/fblinear8.cpp 2008-02-26 16:59:23.000000000 +0800
@@ -17,6 +17,7 @@
* *
***************************************************************************/
+#include <cstring>
#include <assert.h>
#include <endian.h>
#include "global.h"
diff -u -r zhcon-0.2.5/src/display/fbvgaplanes.cpp zhcon-0.2.5.fix/src/display/fbvgaplanes.cpp
--- zhcon-0.2.5/src/display/fbvgaplanes.cpp 2006-04-25 00:38:23.000000000 +0800
+++ zhcon-0.2.5.fix/src/display/fbvgaplanes.cpp 2008-02-26 16:59:36.000000000 +0800
@@ -19,6 +19,7 @@
#include <config.h>
#endif
+#include <cstring>
#ifdef USING_VGA
#include <assert.h>
#include <unistd.h>
Only in zhcon-0.2.5/src/display: Makefile
diff -u -r zhcon-0.2.5/src/display/vgadev.cpp zhcon-0.2.5.fix/src/display/vgadev.cpp
--- zhcon-0.2.5/src/display/vgadev.cpp 2008-02-26 16:25:27.000000000 +0800
+++ zhcon-0.2.5.fix/src/display/vgadev.cpp 2008-02-26 16:59:57.000000000 +0800
@@ -23,6 +23,7 @@
#endif
+#include <cstring>
#ifdef USING_VGA
#if defined(linux)
diff -u -r zhcon-0.2.5/src/graphdev.cpp zhcon-0.2.5.fix/src/graphdev.cpp
--- zhcon-0.2.5/src/graphdev.cpp 2006-04-25 00:38:26.000000000 +0800
+++ zhcon-0.2.5.fix/src/graphdev.cpp 2008-02-26 17:00:19.000000000 +0800
@@ -20,6 +20,8 @@
#include <config.h>
#endif
+#include <cstring>
+#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
diff -u -r zhcon-0.2.5/src/inputclient.cpp zhcon-0.2.5.fix/src/inputclient.cpp
--- zhcon-0.2.5/src/inputclient.cpp 2006-04-25 00:38:27.000000000 +0800
+++ zhcon-0.2.5.fix/src/inputclient.cpp 2008-02-26 17:00:59.000000000 +0800
@@ -16,6 +16,7 @@
* *
***************************************************************************/
+#include <stdlib.h>
#include "inputclient.h"
Console* InputClient::mpCon = NULL;
diff -u -r zhcon-0.2.5/src/inputmanager.cpp zhcon-0.2.5.fix/src/inputmanager.cpp
--- zhcon-0.2.5/src/inputmanager.cpp 2006-05-03 01:18:39.000000000 +0800
+++ zhcon-0.2.5.fix/src/inputmanager.cpp 2008-02-26 17:00:52.000000000 +0800
@@ -21,6 +21,7 @@
using namespace std;
+#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
#include <string>
diff -u -r zhcon-0.2.5/src/inputmanager.h zhcon-0.2.5.fix/src/inputmanager.h
--- zhcon-0.2.5/src/inputmanager.h 2006-04-25 00:38:26.000000000 +0800
+++ zhcon-0.2.5.fix/src/inputmanager.h 2008-02-26 17:01:08.000000000 +0800
@@ -24,6 +24,7 @@
*@author ejoy
*/
using namespace std;
+#include <sys/select.h>
#include <cassert>
#include <vector>
Only in zhcon-0.2.5/src: Makefile
diff -u -r zhcon-0.2.5/src/window.cpp zhcon-0.2.5.fix/src/window.cpp
--- zhcon-0.2.5/src/window.cpp 2006-04-25 00:38:25.000000000 +0800
+++ zhcon-0.2.5.fix/src/window.cpp 2008-02-26 17:00:29.000000000 +0800
@@ -16,6 +16,7 @@
* *
***************************************************************************/
+#include <cstring>
#include <cassert>
#include <algorithm>
#include <sys/time.h>
diff -u -r zhcon-0.2.5/src/winime.cpp zhcon-0.2.5.fix/src/winime.cpp
--- zhcon-0.2.5/src/winime.cpp 2008-02-26 16:25:27.000000000 +0800
+++ zhcon-0.2.5.fix/src/winime.cpp 2008-02-26 17:00:35.000000000 +0800
@@ -16,6 +16,7 @@
* *
***************************************************************************/
+#include <cstring>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
diff -u -r zhcon-0.2.5/src/zhcon.cpp zhcon-0.2.5.fix/src/zhcon.cpp
--- zhcon-0.2.5/src/zhcon.cpp 2008-02-26 16:25:27.000000000 +0800
+++ zhcon-0.2.5.fix/src/zhcon.cpp 2008-02-26 17:00:44.000000000 +0800
@@ -19,6 +19,7 @@
#include <config.h>
#endif
+#include <cstring>
#include <iostream>
#include <unistd.h>
#include <cstdlib>
Only in zhcon-0.2.5: stamp-h1
Only in zhcon-0.2.5/tools: .deps
Only in zhcon-0.2.5/tools: Makefile