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

(-)tdebase-master-orig/CMakeLists.txt (+3 lines)
Lines 27-32 Link Here
27
include( CheckLibraryExists )
27
include( CheckLibraryExists )
28
include( CheckFunctionExists )
28
include( CheckFunctionExists )
29
include( CheckStructHasMember )
29
include( CheckStructHasMember )
30
include( CheckTypeSize )
30
31
31
32
32
##### include our cmake modules #################
33
##### include our cmake modules #################
Lines 155-160 Link Here
155
set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" )
156
set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" )
156
set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" )
157
set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" )
157
158
159
check_type_size( "long long" LONG_LONG )
160
158
161
159
##### tdebase directories #######################
162
##### tdebase directories #######################
160
163
(-)tdebase-master-orig/config.h.cmake (+3 lines)
Lines 3-8 Link Here
3
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
3
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
4
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
4
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
5
5
6
// Defined if compiler supports long long type.
7
#cmakedefine HAVE_LONG_LONG 1
8
6
// konsole
9
// konsole
7
#cmakedefine HAVE_PROC_CWD 1
10
#cmakedefine HAVE_PROC_CWD 1
8
11

Return to bug 905