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

(-)a/CMakeLists.txt (-2 / +2 lines)
Lines 147-153 option( BUILD_KCONTROL "Build kcontrol" ${BUILD_ALL} ) Link Here
147
option( BUILD_TWIN "Build twin" ${BUILD_ALL} )
147
option( BUILD_TWIN "Build twin" ${BUILD_ALL} )
148
option( BUILD_KATE "Build kate" ${BUILD_ALL} )
148
option( BUILD_KATE "Build kate" ${BUILD_ALL} )
149
option( BUILD_KONQUEROR "Build konqueror" ${BUILD_ALL} )
149
option( BUILD_KONQUEROR "Build konqueror" ${BUILD_ALL} )
150
option( BUILD_KIOSLAVES "Build tdeioslaves" ${BUILD_ALL} )
150
option( BUILD_TDEIOSLAVES "Build tdeioslaves" ${BUILD_ALL} )
151
option( BUILD_KICKER "Build kicker" ${BUILD_ALL} )
151
option( BUILD_KICKER "Build kicker" ${BUILD_ALL} )
152
option( BUILD_KDESKTOP "Build kdesktop" ${BUILD_ALL} )
152
option( BUILD_KDESKTOP "Build kdesktop" ${BUILD_ALL} )
153
option( BUILD_KONSOLE "Build konsole" ${BUILD_ALL} )
153
option( BUILD_KONSOLE "Build konsole" ${BUILD_ALL} )
Lines 225-231 add_subdirectory( kcontrol ) Link Here
225
tde_conditional_add_subdirectory( BUILD_TWIN twin )
225
tde_conditional_add_subdirectory( BUILD_TWIN twin )
226
tde_conditional_add_subdirectory( BUILD_KATE kate )
226
tde_conditional_add_subdirectory( BUILD_KATE kate )
227
tde_conditional_add_subdirectory( BUILD_KONQUEROR konqueror )
227
tde_conditional_add_subdirectory( BUILD_KONQUEROR konqueror )
228
tde_conditional_add_subdirectory( BUILD_KIOSLAVES tdeioslave )
228
tde_conditional_add_subdirectory( BUILD_TDEIOSLAVES tdeioslave )
229
tde_conditional_add_subdirectory( BUILD_KICKER kicker )
229
tde_conditional_add_subdirectory( BUILD_KICKER kicker )
230
tde_conditional_add_subdirectory( BUILD_KDESKTOP kdesktop )
230
tde_conditional_add_subdirectory( BUILD_KDESKTOP kdesktop )
231
tde_conditional_add_subdirectory( BUILD_KONSOLE konsole )
231
tde_conditional_add_subdirectory( BUILD_KONSOLE konsole )
(-)a/ConfigureChecks.cmake (-4 / +4 lines)
Lines 12-24 Link Here
12
tde_setup_architecture_flags( )
12
tde_setup_architecture_flags( )
13
13
14
# termios.h (tdm, tdeioslave)
14
# termios.h (tdm, tdeioslave)
15
if( BUILD_TDM OR BUILD_KIOSLAVES )
15
if( BUILD_TDM OR BUILD_TDEIOSLAVES )
16
  check_include_file( termios.h HAVE_TERMIOS_H )
16
  check_include_file( termios.h HAVE_TERMIOS_H )
17
endif( )
17
endif( )
18
18
19
19
20
# sys/ioctl.h (tdeioslave/fish, kcontrol/info)
20
# sys/ioctl.h (tdeioslave/fish, kcontrol/info)
21
if( BUILD_KIOSLAVES OR BUILD_KCONTROL )
21
if( BUILD_TDEIOSLAVES OR BUILD_KCONTROL )
22
  check_include_file( sys/ioctl.h HAVE_SYS_IOCTL_H )
22
  check_include_file( sys/ioctl.h HAVE_SYS_IOCTL_H )
23
endif( )
23
endif( )
24
24
Lines 183-189 endif( ) Link Here
183
183
184
184
185
# kde_socklen_t
185
# kde_socklen_t
186
if( BUILD_KIOSLAVES OR BUILD_KSYSGUARD )
186
if( BUILD_TDEIOSLAVES OR BUILD_KSYSGUARD )
187
  set( kde_socklen_t socklen_t )
187
  set( kde_socklen_t socklen_t )
188
endif( )
188
endif( )
189
189
Lines 260-266 endif( ) Link Here
260
260
261
261
262
# dbus-tqt (tdm, ksmserver, tdeioslaves(media))
262
# dbus-tqt (tdm, ksmserver, tdeioslaves(media))
263
if( BUILD_TDM OR BUILD_KSMSERVER OR (BUILD_KIOSLAVES AND WITH_HAL) )
263
if( BUILD_TDM OR BUILD_KSMSERVER OR (BUILD_TDEIOSLAVES AND WITH_HAL) )
264
264
265
  if( BUILD_KSMSERVER AND WITH_UPOWER )
265
  if( BUILD_KSMSERVER AND WITH_UPOWER )
266
    pkg_check_modules( DBUS_1_TQT dbus-1-tqt )
266
    pkg_check_modules( DBUS_1_TQT dbus-1-tqt )

Return to bug 1557