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

(-)a/modules/TDEMacros.cmake (+13 lines)
Lines 13-18 Link Here
13
#################################################
13
#################################################
14
14
15
include( KDE3Macros ) # we will need this module for a while
15
include( KDE3Macros ) # we will need this module for a while
16
include( CheckCXXCompilerFlag )
16
17
17
18
18
#################################################
19
#################################################
Lines 1023-1028 macro( tde_add_executable _arg_target ) Link Here
1023
    add_dependencies( ${_target} ${_dependencies} )
1024
    add_dependencies( ${_target} ${_dependencies} )
1024
  endif( _dependencies )
1025
  endif( _dependencies )
1025
1026
1027
  # set PIE flags for setuid binaries
1028
  if( _setuid )
1029
    set_target_properties( ${_target} PROPERTIES COMPILE_FLAGS ${TDE_PIE_CFLAGS} )
1030
    set_target_properties( ${_target} PROPERTIES LINK_FLAGS ${TDE_PIE_LDFLAGS} )
1031
  endif( _setuid )
1032
1026
  # set destination directory
1033
  # set destination directory
1027
  if( _destination )
1034
  if( _destination )
1028
    if( _setuid )
1035
    if( _setuid )
Lines 1537-1540 macro( tde_setup_architecture_flags ) Link Here
1537
  else( )
1544
  else( )
1538
    set( LINKER_IMMEDIATE_BINDING_FLAGS "" CACHE INTERNAL "" FORCE )
1545
    set( LINKER_IMMEDIATE_BINDING_FLAGS "" CACHE INTERNAL "" FORCE )
1539
  endif( )
1546
  endif( )
1547
1548
  check_cxx_compiler_flag( -fPIE HAVE_PIE_SUPPORT )
1549
  if( HAVE_PIE_SUPPORT )
1550
    set( TDE_PIE_CFLAGS -fPIE )
1551
    set( TDE_PIE_LDFLAGS -pie )
1552
  endif( HAVE_PIE_SUPPORT )
1540
endmacro( )
1553
endmacro( )

Return to bug 2133