mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 23:00:30 -04:00
securefs is a filesystem in userspace (FUSE) with transparent encryption (when writing) and decryption (when reading). securefs mounts a regular directory onto a mount point. The mount point appears as a regular filesystem, where one can read/write/create files, directories and symbolic links. The underlying directory will be automatically updated to contain the encrypted and authenticated contents. WWW: https://github.com/netheril96/securefs
12 lines
460 B
Text
12 lines
460 B
Text
--- CMakeLists.txt.orig 2020-06-29 19:00:51 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -13,9 +13,6 @@ execute_process (
|
|
)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake-modules/")
|
|
-include(GetGitRevisionDescription)
|
|
-git_describe(GIT_VERSION --tags)
|
|
-configure_file(${CMAKE_SOURCE_DIR}/sources/git-version.cpp.in ${CMAKE_BINARY_DIR}/git-version.cpp)
|
|
|
|
if (UNIX)
|
|
find_path(FUSE_INCLUDE_DIR fuse.h PATHS /usr/local/include PATH_SUFFIXES osxfuse)
|