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

(-)a/admin/kde.py (-1 / +2 lines)
Lines 245-251 def detect_kde(env): Link Here
245
245
246
	## qt libs and includes
246
	## qt libs and includes
247
	env['QTINCLUDEPATH']= qtincludes
247
	env['QTINCLUDEPATH']= qtincludes
248
	env['TQTINCLUDEPATH']=tqtincludes
248
	env['TQTINCLUDEPATH']= tqtincludes
249
	if not qtlibs:
249
	if not qtlibs:
250
		qtlibs = qtdir+"/lib"
250
		qtlibs = qtdir+"/lib"
251
	env['QTLIBPATH']= qtlibs
251
	env['QTLIBPATH']= qtlibs
Lines 319-324 ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt Link Here
319
		( 'QTDIR', 'root of qt directory' ),
319
		( 'QTDIR', 'root of qt directory' ),
320
		( 'QTLIBPATH', 'path to the qt libraries' ),
320
		( 'QTLIBPATH', 'path to the qt libraries' ),
321
		( 'QTINCLUDEPATH', 'path to the qt includes' ),
321
		( 'QTINCLUDEPATH', 'path to the qt includes' ),
322
		( 'TQTINCLUDEPATH', 'path to the tqt includes' ),
322
		( 'QT_UIC', 'moc directory'),
323
		( 'QT_UIC', 'moc directory'),
323
		( 'QT_MOC', 'moc executable command'),
324
		( 'QT_MOC', 'moc executable command'),
324
		( 'QTPLUGINS', 'uic executable command'),
325
		( 'QTPLUGINS', 'uic executable command'),
(-)a/src/SConscript (-1 lines)
Lines 44-50 myenv.KDEaddpaths_includes( ['./', '../'] ) Link Here
44
44
45
## Necessary libraries to link against
45
## Necessary libraries to link against
46
myenv.KDEaddlibs( ['tqt-mt', 'tqt', 'tdecore', 'tdeio', 'tdeui', 'tdednssd'] )
46
myenv.KDEaddlibs( ['tqt-mt', 'tqt', 'tdecore', 'tdeio', 'tdeui', 'tdednssd'] )
47
if env['KDEm2']>3: myenv.KDEaddlibs( ['tdednssd'])
48
#############################
47
#############################
49
## Data to install
48
## Data to install
50
49

Return to bug 2950