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

(-)a/CMakeLists.txt (+1 lines)
Lines 23-28 set( VERSION "R14" ) Link Here
23
include( FindPkgConfig )
23
include( FindPkgConfig )
24
include( CheckIncludeFile )
24
include( CheckIncludeFile )
25
include( CheckCSourceRuns )
25
include( CheckCSourceRuns )
26
include( CheckCXXSourceRuns )
26
include( CheckCXXSourceCompiles )
27
include( CheckCXXSourceCompiles )
27
include( CheckLibraryExists )
28
include( CheckLibraryExists )
28
include( CheckFunctionExists )
29
include( CheckFunctionExists )
(-)a/khotkeys/CMakeLists.txt (-2 / +1 lines)
Lines 9-15 Link Here
9
#
9
#
10
#################################################
10
#################################################
11
11
12
check_c_source_runs( "
12
check_cxx_source_runs( "
13
  class A { public: virtual A* me(); };
13
  class A { public: virtual A* me(); };
14
  class X { public: int x; virtual void ff() {}; };
14
  class X { public: int x; virtual void ff() {}; };
15
  class B : public X, public A { public: virtual B* me(); };
15
  class B : public X, public A { public: virtual B* me(); };
16
- 

Return to bug 1025