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

(-)tdebase/CMakeLists.txt (+1 lines)
Lines 183-188 Link Here
183
option( BUILD_KROOTBACKING "Build krootbacking"  ${BUILD_ALL} )
183
option( BUILD_KROOTBACKING "Build krootbacking"  ${BUILD_ALL} )
184
option( BUILD_TQT3INTEGRATION "Build tqt3integration"  ${BUILD_ALL} )
184
option( BUILD_TQT3INTEGRATION "Build tqt3integration"  ${BUILD_ALL} )
185
option( BUILD_CRASHTEST "Build crash test program"  ${BUILD_ALL} )
185
option( BUILD_CRASHTEST "Build crash test program"  ${BUILD_ALL} )
186
option( BUILD_PROFILE_SHUTDOWN "Build ksmserver shutdown timing markers"  OFF )
186
187
187
188
188
##### set PKG_CONFIG_PATH #######################
189
##### set PKG_CONFIG_PATH #######################
(-)tdebase/config.h.cmake (+3 lines)
Lines 189-191 Link Here
189
189
190
// tsak
190
// tsak
191
#cmakedefine BUILD_TSAK "@BUILD_TSAK@"
191
#cmakedefine BUILD_TSAK "@BUILD_TSAK@"
192
193
// Defined when wanting ksmserver timing markers in .xsession-errors
194
#cmakedefine BUILD_PROFILE_SHUTDOWN 1
(-)tdebase/ksmserver/shutdown.cpp (-1 / +3 lines)
Lines 88-94 Link Here
88
#include "shutdowndlg.h"
88
#include "shutdowndlg.h"
89
#include "client.h"
89
#include "client.h"
90
90
91
// #define PROFILE_SHUTDOWN 1
91
#ifdef BUILD_PROFILE_SHUTDOWN
92
#define PROFILE_SHUTDOWN 1
93
#endif
92
94
93
#ifdef PROFILE_SHUTDOWN
95
#ifdef PROFILE_SHUTDOWN
94
	#define SHUTDOWN_MARKER(x) printf("[ksmserver] '%s' [%s]\n\r", x, TQTime::currentTime().toString("hh:mm:ss:zzz").ascii()); fflush(stdout);
96
	#define SHUTDOWN_MARKER(x) printf("[ksmserver] '%s' [%s]\n\r", x, TQTime::currentTime().toString("hh:mm:ss:zzz").ascii()); fflush(stdout);

Return to bug 760