SVN commit 870784 by hasso: Fix compile on systems without XComposite. M +4 -0 composite.cpp --- trunk/KDE/kdebase/workspace/kwin/composite.cpp #870783:870784 @@ -831,14 +831,18 @@ { unredirect = true; kDebug( 1212 ) << "Unredirecting:" << this; +#ifdef HAVE_XCOMPOSITE XCompositeUnredirectWindow( display(), frameId(), CompositeRedirectManual ); +#endif return true; } else if( !should && unredirect ) { unredirect = false; kDebug( 1212 ) << "Redirecting:" << this; +#ifdef HAVE_XCOMPOSITE XCompositeRedirectWindow( display(), frameId(), CompositeRedirectManual ); +#endif discardWindowPixmap(); return true; }