diff --git a/Documentation/Developers/CHANGELOG-RENE b/Documentation/Developers/CHANGELOG-RENE index 4f51b7f2a..3a1eaa83b 100644 --- a/Documentation/Developers/CHANGELOG-RENE +++ b/Documentation/Developers/CHANGELOG-RENE @@ -2,6 +2,10 @@ This is not only the CHANGELOG of the desktop target, but also of the whole rxr-tree. +*) 2003-08-05 (2.0.0-beta7 - 2.0.0-rc1) + + - Burkhard Linke: fixed kasc/clanlib + *) 2003-08-04 (2.0.0-beta7 - 2.0.0-rc1) - Burkhard Linke: fixed qtparte, spice and xplanet diff --git a/package/kasc/clanlib/directfb_fix.patch b/package/kasc/clanlib/directfb_fix.patch new file mode 100644 index 000000000..69b7e8e6f --- /dev/null +++ b/package/kasc/clanlib/directfb_fix.patch @@ -0,0 +1,29 @@ +--- ./Sources/Display/Display/DirectFB/target_directfb.cpp.orig 2003-08-05 15:59:59.000000000 +0200 ++++ ./Sources/Display/Display/DirectFB/target_directfb.cpp 2003-08-05 16:00:38.000000000 +0200 +@@ -104,7 +104,7 @@ + + unsigned int CL_Target_DirectFB::get_width() const + { +- unsigned int width = 0; ++ int width = 0; + + surface->GetSize (surface, &width, NULL); + +@@ -113,7 +113,7 @@ + + unsigned int CL_Target_DirectFB::get_height() const + { +- unsigned int height = 0; ++ int height = 0; + + surface->GetSize (surface, NULL, &height); + +@@ -263,7 +263,7 @@ + + void CL_Target_DirectFB::Clear (float r, float g, float b, float a) + { +- unsigned int width, height; ++ int width, height; + + surface->GetSize (surface, &width, &height); +