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

(-)a/CMakeLists.txt (-1 / +2 lines)
Lines 83-88 option( WITH_I8K "Enable Dell laptop support (ksysguard)" ${WITH_ALL_OPTIONS} ) Link Here
83
option( WITH_HAL "Enable HAL support" ${WITH_ALL_OPTIONS} )
83
option( WITH_HAL "Enable HAL support" ${WITH_ALL_OPTIONS} )
84
option( WITH_TDEHWLIB "Enable TDE hardware library support" OFF )
84
option( WITH_TDEHWLIB "Enable TDE hardware library support" OFF )
85
option( WITH_UPOWER "Enable UPOWER support" ${WITH_ALL_OPTIONS} )
85
option( WITH_UPOWER "Enable UPOWER support" ${WITH_ALL_OPTIONS} )
86
option( WITH_CRASHTEST "Enable crash test program"  ${WITH_ALL_OPTIONS} )
86
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
87
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
87
88
88
##### options comments ##########################
89
##### options comments ##########################
Lines 117-122 option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" Link Here
117
# WITH_PAM          affects tdm kdesktop kcheckpass
118
# WITH_PAM          affects tdm kdesktop kcheckpass
118
# WITH_SHADOW       affects tdm kcheckpass
119
# WITH_SHADOW       affects tdm kcheckpass
119
# WITH_UPOWER       affects ksmserver
120
# WITH_UPOWER       affects ksmserver
121
# WITH_CRASHTEST    affects drkonqi
120
# WITH_SUDO_TDESU_BACKEND affects tdesu
122
# WITH_SUDO_TDESU_BACKEND affects tdesu
121
123
122
# NOTE: WITH_SHADOW and WITH_PAM shouldn't be set concurrently
124
# NOTE: WITH_SHADOW and WITH_PAM shouldn't be set concurrently
Lines 180-186 option( BUILD_KXKB "Build kxkb" ${BUILD_ALL} ) Link Here
180
option( BUILD_TSAK "Build tsak"  ${BUILD_ALL} )
182
option( BUILD_TSAK "Build tsak"  ${BUILD_ALL} )
181
option( BUILD_KROOTBACKING "Build krootbacking"  ${BUILD_ALL} )
183
option( BUILD_KROOTBACKING "Build krootbacking"  ${BUILD_ALL} )
182
option( BUILD_TQT3INTEGRATION "Build tqt3integration"  ${BUILD_ALL} )
184
option( BUILD_TQT3INTEGRATION "Build tqt3integration"  ${BUILD_ALL} )
183
option( BUILD_CRASHTEST "Build crash test program"  ${BUILD_ALL} )
184
185
185
186
186
##### set PKG_CONFIG_PATH #######################
187
##### set PKG_CONFIG_PATH #######################
(-)a/drkonqi/CMakeLists.txt (-2 / +2 lines)
Lines 37-47 tde_add_executable( drkonqi AUTOMOC Link Here
37
37
38
##### crashtest (executable) ######################
38
##### crashtest (executable) ######################
39
39
40
if( BUILD_CRASHTEST )
40
if( WITH_CRASHTEST )
41
  tde_add_executable( crashtest AUTOMOC
41
  tde_add_executable( crashtest AUTOMOC
42
    SOURCES
42
    SOURCES
43
      crashtest.cpp
43
      crashtest.cpp
44
    LINK kio-shared
44
    LINK kio-shared
45
    DESTINATION ${BIN_INSTALL_DIR}
45
    DESTINATION ${BIN_INSTALL_DIR}
46
  )
46
  )
47
endif( BUILD_CRASHTEST )
47
endif( WITH_CRASHTEST )

Return to bug 1335