head 1.2; access; symbols pkgsrc-2026Q1:1.2.0.66 pkgsrc-2026Q1-base:1.2 pkgsrc-2025Q4:1.2.0.64 pkgsrc-2025Q4-base:1.2 pkgsrc-2025Q3:1.2.0.62 pkgsrc-2025Q3-base:1.2 pkgsrc-2025Q2:1.2.0.60 pkgsrc-2025Q2-base:1.2 pkgsrc-2025Q1:1.2.0.58 pkgsrc-2025Q1-base:1.2 pkgsrc-2024Q4:1.2.0.56 pkgsrc-2024Q4-base:1.2 pkgsrc-2024Q3:1.2.0.54 pkgsrc-2024Q3-base:1.2 pkgsrc-2024Q2:1.2.0.52 pkgsrc-2024Q2-base:1.2 pkgsrc-2024Q1:1.2.0.50 pkgsrc-2024Q1-base:1.2 pkgsrc-2023Q4:1.2.0.48 pkgsrc-2023Q4-base:1.2 pkgsrc-2023Q3:1.2.0.46 pkgsrc-2023Q3-base:1.2 pkgsrc-2023Q2:1.2.0.44 pkgsrc-2023Q2-base:1.2 pkgsrc-2023Q1:1.2.0.42 pkgsrc-2023Q1-base:1.2 pkgsrc-2022Q4:1.2.0.40 pkgsrc-2022Q4-base:1.2 pkgsrc-2022Q3:1.2.0.38 pkgsrc-2022Q3-base:1.2 pkgsrc-2022Q2:1.2.0.36 pkgsrc-2022Q2-base:1.2 pkgsrc-2022Q1:1.2.0.34 pkgsrc-2022Q1-base:1.2 pkgsrc-2021Q4:1.2.0.32 pkgsrc-2021Q4-base:1.2 pkgsrc-2021Q3:1.2.0.30 pkgsrc-2021Q3-base:1.2 pkgsrc-2021Q2:1.2.0.28 pkgsrc-2021Q2-base:1.2 pkgsrc-2021Q1:1.2.0.26 pkgsrc-2021Q1-base:1.2 pkgsrc-2020Q4:1.2.0.24 pkgsrc-2020Q4-base:1.2 pkgsrc-2020Q3:1.2.0.22 pkgsrc-2020Q3-base:1.2 pkgsrc-2020Q2:1.2.0.20 pkgsrc-2020Q2-base:1.2 pkgsrc-2020Q1:1.2.0.16 pkgsrc-2020Q1-base:1.2 pkgsrc-2019Q4:1.2.0.18 pkgsrc-2019Q4-base:1.2 pkgsrc-2019Q3:1.2.0.14 pkgsrc-2019Q3-base:1.2 pkgsrc-2019Q2:1.2.0.12 pkgsrc-2019Q2-base:1.2 pkgsrc-2019Q1:1.2.0.10 pkgsrc-2019Q1-base:1.2 pkgsrc-2018Q4:1.2.0.8 pkgsrc-2018Q4-base:1.2 pkgsrc-2018Q3:1.2.0.6 pkgsrc-2018Q3-base:1.2 pkgsrc-2018Q2:1.2.0.4 pkgsrc-2018Q2-base:1.2 pkgsrc-2018Q1:1.2.0.2 pkgsrc-2018Q1-base:1.2 pkgsrc-2017Q4:1.1.0.8 pkgsrc-2017Q4-base:1.1 pkgsrc-2017Q3:1.1.0.6 pkgsrc-2017Q3-base:1.1 pkgsrc-2017Q2:1.1.0.2 pkgsrc-2017Q2-base:1.1; locks; strict; comment @// @; 1.2 date 2018.03.21.22.38.57; author gdt; state Exp; branches; next 1.1; commitid dQo6MzGJ6f71rnvA; 1.1 date 2017.06.19.18.41.39; author maya; state Exp; branches; next ; commitid ACLtPQB68hr7X0Wz; desc @@ 1.2 log @encfs: Update to 1.9.4 Upstream changes: v1.9.4 / 2018-01-28 =================== * Fix packaging error leading to wrong version output * Fix shared lib compilation (cmake -DBUILD_SHARED_LIBS=ON ..) v1.9.3 / 2018-01-28 =================== * Fix compilation with "-std=c++11" * Fix a gid permission issue with allow_other * Fix operations on symlinks * Fix a race in idle unmount * Add `--reversewrite` cli option * Add PID to syslog logging * Deep code sanity check * Modernize coding style * Make codebase warnings & clang-tidy clean * Bump FUSE_USE_VERSION to 29 * Ensure compatibility with LibreSSL * Switch to vendored lib tinyxml2 & easylogging * Reorganize man page and add missing options * Add gtest and micro benchmarks @ text @$NetBSD: patch-encfs_DirNode.cpp,v 1.1 2017/06/19 18:41:39 maya Exp $ Define _DIRENT_HAVE_D_TYPE at the top for all the OSes that support it. This is an untested functional change for FreeBSD and APPLE. --- encfs/DirNode.cpp.orig 2018-01-28 21:07:41.000000000 +0000 +++ encfs/DirNode.cpp @@@@ -42,6 +42,10 @@@@ #include "NameIO.h" #include "easylogging++.h" +#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__) +#define _DIRENT_HAVE_D_TYPE +#endif + using namespace std; namespace encfs { @ 1.1 log @fuse-encfs: update to 1.9.1 A decade of changes, please refer to the following link for changes: https://github.com/vgough/encfs/blob/bf2cee54f53fc53910476fcd497782f3fd062923/ChangeLog @ text @d1 1 a1 1 $NetBSD$ d6 1 a6 1 --- encfs/DirNode.cpp.orig 2016-09-18 20:16:04.000000000 +0000 d9 2 a10 2 #include "Error.h" #include "Mutex.h" a18 9 @@@@ -78,7 +82,7 @@@@ static bool _nextName(struct dirent *&de if (de) { if (fileType) { -#if defined(_DIRENT_HAVE_D_TYPE) || defined(__FreeBSD__) || defined(__APPLE__) +#if defined(_DIRENT_HAVE_D_TYPE) *fileType = de->d_type; #else #warning "struct dirent.d_type not supported" @