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 / +9 lines)
Lines 84-89 OPTION( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" Link Here
84
OPTION( WITH_INOTIFY "Enable inotify support for kio" ON )
84
OPTION( WITH_INOTIFY "Enable inotify support for kio" ON )
85
OPTION( WITH_GAMIN "Enable FAM/GAMIN support" ${WITH_ALL_OPTIONS} )
85
OPTION( WITH_GAMIN "Enable FAM/GAMIN support" ${WITH_ALL_OPTIONS} )
86
OPTION( WITH_NETWORK_MANAGER_BACKEND "Enable network-manager support" OFF )
86
OPTION( WITH_NETWORK_MANAGER_BACKEND "Enable network-manager support" OFF )
87
OPTION( WITH_XCOMPOSITE "Enable xcomposite support" ${WITH_ALL_OPTIONS} )
87
88
88
OPTION( WITH_ASPELL "Enable aspell support" ${WITH_ALL_OPTIONS} )
89
OPTION( WITH_ASPELL "Enable aspell support" ${WITH_ALL_OPTIONS} )
89
OPTION( WITH_HSPELL "Enable hspell support" ${WITH_ALL_OPTIONS} )
90
OPTION( WITH_HSPELL "Enable hspell support" ${WITH_ALL_OPTIONS} )
Lines 570-579 endif( XRENDER_FOUND ) Link Here
570
571
571
##### check for xcomposite #########################
572
##### check for xcomposite #########################
572
573
573
pkg_search_module( XCOMPOSITE xcomposite )
574
if( WITH_XCOMPOSITE )
574
if( XCOMPOSITE_FOUND )
575
  pkg_search_module( XCOMPOSITE xcomposite )
575
  set( HAVE_XCOMPOSITE 1 )
576
  if( XCOMPOSITE_FOUND )
576
endif( XCOMPOSITE_FOUND )
577
    set( HAVE_XCOMPOSITE 1 )
578
  else()
579
    message(FATAL_ERROR "\nxcomposite support was requested, but xcomposite was not found on your system" )
580
  endif( XCOMPOSITE_FOUND )
581
endif( WITH_XCOMPOSITE )
577
582
578
##### check for libxml-2.0 ######################
583
##### check for libxml-2.0 ######################
579
584
(-)a/tdecore/kapplication.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 KApplication::isCompositionManagerAvailable() { Link Here
1983
	return false;
1983
	return false;
1984
}
1984
}
1985
1985
1986
bool KApplication::detectCompositionManagerAvailable(bool force_available) {
1986
bool KApplication::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* KApplication::openX11RGBADisplay() { Link Here
2025
	return 0;
2025
	return 0;
2026
}
2026
}
2027
2027
2028
Qt::HANDLE KApplication::getX11RGBAVisual(char *display) {
2028
Qt::HANDLE KApplication::getX11RGBAVisual(Display *dpy) {
2029
	return 0;
2029
	return 0;
2030
}
2030
}
2031
2031
2032
Qt::HANDLE KApplication::getX11RGBAColormap(char *display) {
2032
Qt::HANDLE KApplication::getX11RGBAColormap(Display *dpy) {
2033
	return 0;
2033
	return 0;
2034
}
2034
}
2035
2035
2036
bool KApplication::isX11CompositionAvailable() {
2036
bool KApplication::isX11CompositionAvailable() {
2037
	return false;
2037
	return false;
2038
}
2038
}
2039
2040
KApplication KApplication::KARGBApplication( bool allowStyles ) {
2041
	return KApplication::KApplication(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