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

(-)a/CMakeLists.txt (-8 lines)
Lines 71-78 option( WITH_XCURSOR "Enable xcursor support" ${WITH_ALL_OPTIONS} ) Link Here
71
option( WITH_XFIXES "Enable xfixes support" ${WITH_ALL_OPTIONS} )
71
option( WITH_XFIXES "Enable xfixes support" ${WITH_ALL_OPTIONS} )
72
option( WITH_XRANDR "Enable xrandr support" ${WITH_ALL_OPTIONS} )
72
option( WITH_XRANDR "Enable xrandr support" ${WITH_ALL_OPTIONS} )
73
option( WITH_XRENDER "Enable xrender support" ${WITH_ALL_OPTIONS} )
73
option( WITH_XRENDER "Enable xrender support" ${WITH_ALL_OPTIONS} )
74
option( WITH_XDAMAGE "Enable xdamage support" ${WITH_ALL_OPTIONS} )
75
option( WITH_XEXT "Enable xext support" ${WITH_ALL_OPTIONS} )
76
option( WITH_LIBCONFIG "Enable libconfig support" ${WITH_ALL_OPTIONS} )
74
option( WITH_LIBCONFIG "Enable libconfig support" ${WITH_ALL_OPTIONS} )
77
option( WITH_XTEST "Enable xtest support" ${WITH_ALL_OPTIONS} )
75
option( WITH_XTEST "Enable xtest support" ${WITH_ALL_OPTIONS} )
78
option( WITH_OPENGL "Enable openGL support" ${WITH_ALL_OPTIONS} )
76
option( WITH_OPENGL "Enable openGL support" ${WITH_ALL_OPTIONS} )
Lines 104-111 option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" Link Here
104
# WITH_XCOMPOSITE   affects twin kicker(taskmanager) tdm
102
# WITH_XCOMPOSITE   affects twin kicker(taskmanager) tdm
105
# WITH_XCURSOR      affects tdeioslaves(thumbnail), kcontrol(input), kdesktop
103
# WITH_XCURSOR      affects tdeioslaves(thumbnail), kcontrol(input), kdesktop
106
# WITH_XFIXES       affects twin klipper kicker(taskmanager)
104
# WITH_XFIXES       affects twin klipper kicker(taskmanager)
107
# WITH_XDAMAGE      affects <nothing>
108
# WITH_XEXT         affects <nothing>
109
# WITH_XRANDR       affects tdm, kcontrol(displayconfig randr iccconfig)
105
# WITH_XRANDR       affects tdm, kcontrol(displayconfig randr iccconfig)
110
# WITH_XRENDER      affects twin konsole kicker(taskmanager) kdesktop
106
# WITH_XRENDER      affects twin konsole kicker(taskmanager) kdesktop
111
#                           kcontrol(style)
107
#                           kcontrol(style)
Lines 136-145 option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" Link Here
136
# NOTE: if WITH_XCOMPOSITE=ON then the following options are also required:
132
# NOTE: if WITH_XCOMPOSITE=ON then the following options are also required:
137
#       WITH_XRENDER=ON
133
#       WITH_XRENDER=ON
138
#       WITH_XFIXES=ON
134
#       WITH_XFIXES=ON
139
#       WITH_XDAMAGE=ON
140
#       WITH_XEXT=ON
141
# NOTE: seems WITH_XDAMAGE and WITH_XET doesn't change anything
142
#       they are just required by WITH_XCOMPOSITE
143
135
144
##### user requested modules ####################
136
##### user requested modules ####################
145
137
(-)a/ConfigureChecks.cmake (-20 / +14 lines)
Lines 102-107 if( WITH_XCOMPOSITE ) Link Here
102
  else( XCOMPOSITE_FOUND )
102
  else( XCOMPOSITE_FOUND )
103
    tde_message_fatal( "xcomposite is requested, but was not found on your system" )
103
    tde_message_fatal( "xcomposite is requested, but was not found on your system" )
104
  endif( XCOMPOSITE_FOUND )
104
  endif( XCOMPOSITE_FOUND )
105
106
107
  # xdamage (twin/kompmgr)
108
  pkg_search_module( XDAMAGE xdamage )
109
  if( NOT XDAMAGE_FOUND )
110
    tde_message_fatal( "xdamage is required for xcomposite support, but was not found on your system" )
111
  endif( )
112
113
  # xext (twin/kompmgr)
114
  pkg_search_module( XEXT xext )
115
  if( NOT XEXT_FOUND )
116
    tde_message_fatal( "xext is required for xcomposite support, but was not found on your system" )
117
  endif( )
118
105
endif( )
119
endif( )
106
120
107
121
Lines 116-141 if( WITH_XFIXES ) Link Here
116
endif( )
130
endif( )
117
131
118
132
119
# xdamage (twin/kompmgr)
120
if( WITH_XDAMAGE )
121
  pkg_search_module( XDAMAGE xdamage )
122
  if( NOT XDAMAGE_FOUND )
123
    tde_message_fatal( "xdamage is requested, but was not found on your system" )
124
  endif( )
125
endif( )
126
127
128
# xext (twin/kompmgr)
129
if( WITH_XEXT )
130
  pkg_search_module( XEXT xext )
131
  if( XEXT_FOUND )
132
    set( HAVE_XEXT 1 )
133
  else( XEXT_FOUND )
134
    tde_message_fatal( "xext is requested, but was not found on your system" )
135
  endif( )
136
endif( )
137
138
139
# libconfig (twin/compton-tde)
133
# libconfig (twin/compton-tde)
140
if( WITH_LIBCONFIG )
134
if( WITH_LIBCONFIG )
141
  pkg_search_module( LIBCONFIG libconfig )
135
  pkg_search_module( LIBCONFIG libconfig )
(-)a/twin/compton-tde/CMakeLists.txt (-4 lines)
Lines 16-25 elseif( NOT WITH_XRANDR ) Link Here
16
  tde_message_fatal( "xrandr support is needed to build compton-tde.\n Pass -DWITH_XRANDR=ON to cmake arguments." )
16
  tde_message_fatal( "xrandr support is needed to build compton-tde.\n Pass -DWITH_XRANDR=ON to cmake arguments." )
17
elseif( NOT WITH_XFIXES )
17
elseif( NOT WITH_XFIXES )
18
  tde_message_fatal( "xfixes support is needed to build compton-tde.\n Pass -DWITH_XFIXES=ON to cmake arguments." )
18
  tde_message_fatal( "xfixes support is needed to build compton-tde.\n Pass -DWITH_XFIXES=ON to cmake arguments." )
19
elseif( NOT WITH_XDAMAGE )
20
  tde_message_fatal( "xdamage support is needed to build compton-tde.\n Pass -DWITH_XDAMAGE=ON to cmake arguments." )
21
elseif( NOT WITH_XEXT )
22
  tde_message_fatal( "xext support is needed to build compton-tde.\n Pass -DWITH_XEXT=ON to cmake arguments." )
23
elseif( NOT WITH_XINERAMA )
19
elseif( NOT WITH_XINERAMA )
24
  tde_message_fatal( "xinerama support is needed to build compton-tde.\n Pass -DWITH_XINERAMA=ON to cmake arguments." )
20
  tde_message_fatal( "xinerama support is needed to build compton-tde.\n Pass -DWITH_XINERAMA=ON to cmake arguments." )
25
elseif( NOT WITH_LIBCONFIG )
21
elseif( NOT WITH_LIBCONFIG )
(-)a/twin/kompmgr/CMakeLists.txt (-5 lines)
Lines 14-23 if( NOT WITH_XRENDER ) Link Here
14
  tde_message_fatal( "xrender support is needed to build kompmgr.\n Pass -DWITH_XRENDER=ON to cmake arguments." )
14
  tde_message_fatal( "xrender support is needed to build kompmgr.\n Pass -DWITH_XRENDER=ON to cmake arguments." )
15
elseif( NOT WITH_XFIXES )
15
elseif( NOT WITH_XFIXES )
16
  tde_message_fatal( "xfixes support is needed to build kompmgr.\n Pass -DWITH_XFIXES=ON to cmake arguments." )
16
  tde_message_fatal( "xfixes support is needed to build kompmgr.\n Pass -DWITH_XFIXES=ON to cmake arguments." )
17
elseif( NOT WITH_XDAMAGE )
18
  tde_message_fatal( "xdamage support is needed to build kompmgr.\n Pass -DWITH_XDAMAGE=ON to cmake arguments." )
19
elseif( NOT WITH_XEXT )
20
  tde_message_fatal( "xext support is needed to build kompmgr.\n Pass -DWITH_XEXT=ON to cmake arguments." )
21
endif( )
17
endif( )
22
18
23
19
24
- 

Return to bug 2028