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 1553
Collapse All | Expand All

(-)a/CMakeLists.txt (-7 / +8 lines)
Lines 91-96 OPTION( WITH_NETWORK_MANAGER_BACKEND "Enable network-manager support" OFF ) Link Here
91
OPTION( WITH_SUDO_TDESU_BACKEND "Use sudo as backend for tdesu (default is su)" OFF )
91
OPTION( WITH_SUDO_TDESU_BACKEND "Use sudo as backend for tdesu (default is su)" 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 )
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_XRANDR "Build the tderandr library" ${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 580-589 endif( NOT FONTCONFIG_FOUND ) Link Here
580
581
581
##### check for Xrandr ##########################
582
##### check for Xrandr ##########################
582
583
583
pkg_search_module( XRANDR xrandr>=1.2 )
584
if( WITH_XRANDR )
584
if( XRANDR_FOUND )
585
  pkg_search_module( XRANDR xrandr>=1.2 )
585
  set( XRANDR_SUPPORT 1 )
586
  if( XRANDR_FOUND )
586
endif( XRANDR_FOUND )
587
    set( XRANDR_SUPPORT 1 )
588
  endif( XRANDR_FOUND )
589
endif( WITH_XRANDR )
587
590
588
591
589
##### check for xrender #########################
592
##### check for xrender #########################
Lines 981-989 add_subdirectory( arts ) Link Here
981
add_subdirectory( interfaces )
984
add_subdirectory( interfaces )
982
add_subdirectory( kate )
985
add_subdirectory( kate )
983
add_subdirectory( tdecert )
986
add_subdirectory( tdecert )
984
if( XRANDR_FOUND )
987
tde_conditional_add_subdirectory( WITH_XRANDR tderandr )
985
  add_subdirectory( tderandr )
986
endif( XRANDR_FOUND )
987
add_subdirectory( tdehtml )
988
add_subdirectory( tdehtml )
988
add_subdirectory( tdecmshell )
989
add_subdirectory( tdecmshell )
989
add_subdirectory( tdeconf_update )
990
add_subdirectory( tdeconf_update )

Return to bug 1553