Browse Source

the applied patch fixes clanlib. There was a type conflict with the DirectFB

header files (unsigned int* <-> int*).


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1026 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
3686cc2ad7
2 changed files with 33 additions and 0 deletions
  1. +4
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +29
    -0
      package/kasc/clanlib/directfb_fix.patch

+ 4
- 0
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

+ 29
- 0
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);

Loading…
Cancel
Save