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

(-)tdenetwork-trinity-14.0.0-s~295/cmake/modules/TDEMacros.cmake (-2 / +2 lines)
Lines 1026-1033 macro( tde_add_executable _arg_target ) Link Here
1026
1026
1027
  # set PIE flags for setuid binaries
1027
  # set PIE flags for setuid binaries
1028
  if( _setuid )
1028
  if( _setuid )
1029
    set_target_properties( ${_target} PROPERTIES COMPILE_FLAGS ${TDE_PIE_CFLAGS} )
1029
    set_target_properties( ${_target} PROPERTIES COMPILE_FLAGS "${TDE_PIE_CFLAGS}" )
1030
    set_target_properties( ${_target} PROPERTIES LINK_FLAGS ${TDE_PIE_LDFLAGS} )
1030
    set_target_properties( ${_target} PROPERTIES LINK_FLAGS "${TDE_PIE_LDFLAGS}" )
1031
  endif( _setuid )
1031
  endif( _setuid )
1032
1032
1033
  # set destination directory
1033
  # set destination directory
(-)tdenetwork-trinity-14.0.0-s~295/ConfigureChecks.cmake (-4 / +5 lines)
Lines 9-14 Link Here
9
#
9
#
10
#################################################
10
#################################################
11
11
12
# required stuff
13
tde_setup_architecture_flags()
14
find_package( TQt )
15
find_package( TDE )
16
12
##### check for gcc visibility support #########
17
##### check for gcc visibility support #########
13
# FIXME
18
# FIXME
14
# This should check for [T]Qt3 visibility support
19
# This should check for [T]Qt3 visibility support
Lines 27-36 if( BUILD_KOPETE OR BUILD_KPPP ) Link Here
27
  check_include_file( string.h HAVE_STRING_H )
32
  check_include_file( string.h HAVE_STRING_H )
28
endif( )
33
endif( )
29
34
30
# required stuff
31
find_package( TQt )
32
find_package( TDE )
33
34
if( WITH_SLP )
35
if( WITH_SLP )
35
  check_library_exists( slp "SLPOpen" "" HAVE_SLP )
36
  check_library_exists( slp "SLPOpen" "" HAVE_SLP )
36
  if( HAVE_SLP )
37
  if( HAVE_SLP )

Return to bug 2133