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/CMakeLists.txt (+8 lines)
Lines 215-220 set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" ) Link Here
215
check_type_size( "long long" LONG_LONG )
215
check_type_size( "long long" LONG_LONG )
216
216
217
217
218
##### check for operating system ################
219
220
if( ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" )
221
  set( TDE_PIE_CFLAGS -fPIE )
222
  set( TDE_PIE_LDFLAGS -pie )
223
endif( ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" )
224
225
218
##### tdebase directories #######################
226
##### tdebase directories #######################
219
227
220
add_subdirectory( tdmlib )
228
add_subdirectory( tdmlib )
(-)a/kcheckpass/CMakeLists.txt (+2 lines)
Lines 31-33 tde_add_executable( kcheckpass AUTOMOC Link Here
31
  SETUID
31
  SETUID
32
)
32
)
33
33
34
set_target_properties( kcheckpass PROPERTIES COMPILE_FLAGS ${TDE_PIE_CFLAGS} )
35
set_target_properties( kcheckpass PROPERTIES LINK_FLAGS ${TDE_PIE_LDFLAGS} )
(-)a/tdekbdledsync/CMakeLists.txt (+2 lines)
Lines 28-30 tde_add_executable( tdekbdledsync Link Here
28
  SETUID
28
  SETUID
29
)
29
)
30
30
31
set_target_properties( tdekbdledsync PROPERTIES COMPILE_FLAGS ${TDE_PIE_CFLAGS} )
32
set_target_properties( tdekbdledsync PROPERTIES LINK_FLAGS ${TDE_PIE_LDFLAGS} )
(-)a/tdmlib/CMakeLists.txt (+3 lines)
Lines 83-86 if( BUILD_TSAK ) Link Here
83
    DESCRIPTION "Secure Attention Key interface for TDM"
83
    DESCRIPTION "Secure Attention Key interface for TDM"
84
    AUTHORS "Timothy Pearson"
84
    AUTHORS "Timothy Pearson"
85
  )
85
  )
86
87
  set_target_properties( tdmtsak PROPERTIES COMPILE_FLAGS ${TDE_PIE_CFLAGS} )
88
  set_target_properties( tdmtsak PROPERTIES LINK_FLAGS ${TDE_PIE_LDFLAGS} )
86
endif( BUILD_TSAK )
89
endif( BUILD_TSAK )

Return to bug 2133