By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1289
Collapse All | Expand All

(-)a/CMakeLists.txt (-4 / +10 lines)
Lines 92-96 OPTION( WITH_SUDO_TDESU_BACKEND "Use sudo as backend for tdesu (default is su)" Link Here
92
OPTION( WITH_OLD_XDG_STD "Use the pre R14.0.0 XDG standard where both TDE and KDE are recognized in desktop files" OFF )
92
OPTION( WITH_OLD_XDG_STD "Use the pre R14.0.0 XDG standard where both TDE and KDE are recognized in desktop files" OFF )
93
OPTION( WITH_LZMA "Enable support for LZMA/XZ" ${WITH_ALL_OPTIONS} )
93
OPTION( WITH_LZMA "Enable support for LZMA/XZ" ${WITH_ALL_OPTIONS} )
94
OPTION( WITH_XCOMPOSITE "Enable xcomposite support" ${WITH_ALL_OPTIONS} )
94
95
95
OPTION( WITH_ASPELL "Enable aspell support" ${WITH_ALL_OPTIONS} )
96
OPTION( WITH_ASPELL "Enable aspell support" ${WITH_ALL_OPTIONS} )
96
OPTION( WITH_HSPELL "Enable hspell support" ${WITH_ALL_OPTIONS} )
97
OPTION( WITH_HSPELL "Enable hspell support" ${WITH_ALL_OPTIONS} )
Lines 602-611 endif( XRENDER_FOUND ) Link Here
602
603
603
##### check for xcomposite #########################
604
##### check for xcomposite #########################
604
605
605
pkg_search_module( XCOMPOSITE xcomposite )
606
if( WITH_XCOMPOSITE )
606
if( XCOMPOSITE_FOUND )
607
  pkg_search_module( XCOMPOSITE xcomposite )
607
  set( HAVE_XCOMPOSITE 1 )
608
  if( XCOMPOSITE_FOUND )
608
endif( XCOMPOSITE_FOUND )
609
    set( HAVE_XCOMPOSITE 1 )
610
  else( WITH_XCOMPOSITE )
611
    message(FATAL_ERROR "\nxcomposite support was requested, but xcomposite was not found on your system" )
612
  endif( XCOMPOSITE_FOUND )
613
endif( WITH_XCOMPOSITE )
614
609
615
610
##### check for libxml-2.0 ######################
616
##### check for libxml-2.0 ######################
611
617
(-)a/tdecore/tdeapplication.cpp (-8 / +4 lines)
Lines 186-192 static Atom atom_NetSupported; Link Here
186
static Atom kde_xdnd_drop;
186
static Atom kde_xdnd_drop;
187
#endif
187
#endif
188
188
189
#ifdef Q_WS_X11
189
#if defined(Q_WS_X11) && defined(COMPOSITE)
190
static int composite_event, composite_error, composite_opcode;
190
static int composite_event, composite_error, composite_opcode;
191
static bool x11_composite_error_generated;
191
static bool x11_composite_error_generated;
192
static int x11_error(Display *dpy, XErrorEvent *ev) {
192
static int x11_error(Display *dpy, XErrorEvent *ev) {
Lines 1983-1989 bool TDEApplication::isCompositionManagerAvailable() { Link Here
1983
	return false;
1983
	return false;
1984
}
1984
}
1985
1985
1986
bool TDEApplication::detectCompositionManagerAvailable(bool force_available) {
1986
bool TDEApplication::detectCompositionManagerAvailable(bool force_available, bool available) {
1987
	const char *home;
1987
	const char *home;
1988
	struct passwd *p;
1988
	struct passwd *p;
1989
	p = getpwuid(getuid());
1989
	p = getpwuid(getuid());
Lines 2025-2045 Display* TDEApplication::openX11RGBADisplay() { Link Here
2025
	return 0;
2025
	return 0;
2026
}
2026
}
2027
2027
2028
Qt::HANDLE TDEApplication::getX11RGBAVisual(char *display) {
2028
Qt::HANDLE TDEApplication::getX11RGBAVisual(Display *dpy) {
2029
	return 0;
2029
	return 0;
2030
}
2030
}
2031
2031
2032
Qt::HANDLE TDEApplication::getX11RGBAColormap(char *display) {
2032
Qt::HANDLE TDEApplication::getX11RGBAColormap(Display *dpy) {
2033
	return 0;
2033
	return 0;
2034
}
2034
}
2035
2035
2036
bool TDEApplication::isX11CompositionAvailable() {
2036
bool TDEApplication::isX11CompositionAvailable() {
2037
	return false;
2037
	return false;
2038
}
2038
}
2039
2040
TDEApplication TDEApplication::KARGBApplication( bool allowStyles ) {
2041
	return TDEApplication::TDEApplication(allowStyles, true);
2042
}
2043
#endif
2039
#endif
2044
2040
2045
static bool kapp_block_user_input = false;
2041
static bool kapp_block_user_input = false;

Return to bug 1289