mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 12:10:31 -04:00
- Update to 0.3.13. - Remove CONFLICTS with emulators/tpm-emulator. Two separate binaries, sbin/tcsd (for actual TPM device) and sbin/tcsd_emu (for TPM emulator) are now installed. rc.d/tcsd chooses one of them depending on $tcsd_mode. When tcsd_mode="native" (default) it runs sbin/tcsd, and when tcsd_mode="emulator" it runs sbin/tcsd_emu. Note that sbin/tcsd_emu depends on tpmd in emulators/tpm-emulator. - Simplify @sample. emulators/tpm-emulator: - Remove CONFLICTS with security/trousers. - Simplify rc.d/tpmd.
23 lines
924 B
Text
23 lines
924 B
Text
--- tddl/CMakeLists.txt.orig 2011-12-20 18:30:06 UTC
|
|
+++ tddl/CMakeLists.txt
|
|
@@ -7,16 +7,16 @@ set(tddl_SRCS "tddl.c" "tddl.h")
|
|
add_library(tddl SHARED ${tddl_SRCS})
|
|
add_library(tddl_static STATIC ${tddl_SRCS})
|
|
if(UNIX)
|
|
- set_target_properties(tddl PROPERTIES SOVERSION "1.2"
|
|
+ set_target_properties(tddl PROPERTIES SOVERSION "1"
|
|
VERSION "1.2.${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}")
|
|
set_target_properties(tddl_static PROPERTIES OUTPUT_NAME tddl)
|
|
elseif(WIN32)
|
|
set_target_properties(tddl PROPERTIES OUTPUT_NAME ifxtpm)
|
|
set_target_properties(tddl PROPERTIES PREFIX "")
|
|
-endif()
|
|
+endif(UNIX)
|
|
|
|
-install(TARGETS tddl DESTINATION lib)
|
|
-install(TARGETS tddl_static DESTINATION lib)
|
|
+install(TARGETS tddl DESTINATION lib/tddl_emu)
|
|
+install(TARGETS tddl_static DESTINATION lib/tddl_emu)
|
|
install(FILES "tddl.h" DESTINATION include)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|