Update of /cvsroot/blackboxwm/blackbox/src
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7417/src
Modified Files:
BlackboxResource.cc Screen.cc ScreenResource.cc main.cc
Log Message:
apply patch from debian to compile with gcc 4.3.0
Index: BlackboxResource.cc
===================================================================
RCS file: /cvsroot/blackboxwm/blackbox/src/BlackboxResource.cc,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** BlackboxResource.cc 18 Oct 2005 07:34:46 -0000 1.39
--- BlackboxResource.cc 23 Apr 2008 05:48:07 -0000 1.40
***************
*** 34,37 ****
--- 34,39 ----
#include <X11/cursorfont.h>
+ #include <cstring>
+
BlackboxResource::BlackboxResource(const std::string& rc): rc_file(rc) {
Index: Screen.cc
===================================================================
RCS file: /cvsroot/blackboxwm/blackbox/src/Screen.cc,v
retrieving revision 1.308
retrieving revision 1.309
diff -C2 -d -r1.308 -r1.309
*** Screen.cc 6 Dec 2005 08:53:17 -0000 1.308
--- Screen.cc 23 Apr 2008 05:48:07 -0000 1.309
***************
*** 49,52 ****
--- 49,54 ----
#include <dirent.h>
+ #include <cstring>
+
static bool running = true;
Index: ScreenResource.cc
===================================================================
RCS file: /cvsroot/blackboxwm/blackbox/src/ScreenResource.cc,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** ScreenResource.cc 13 Apr 2005 05:54:08 -0000 1.13
--- ScreenResource.cc 23 Apr 2008 05:48:07 -0000 1.14
***************
*** 34,37 ****
--- 34,39 ----
#include <assert.h>
+ #include <cstring>
+
static const int iconify_width = 9;
Index: main.cc
===================================================================
RCS file: /cvsroot/blackboxwm/blackbox/src/main.cc,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** main.cc 17 May 2007 18:55:26 -0000 1.32
--- main.cc 23 Apr 2008 05:48:07 -0000 1.33
***************
*** 37,40 ****
--- 37,42 ----
#include <stdio.h>
+ #include <cstring>
+
static void showHelp(int exitval) {
|