diff options
author | Sven Gothel <[email protected]> | 2022-07-31 10:54:00 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-07-31 10:54:00 +0200 |
commit | ee1dfc1770e45cc7f69e6689d9e901e5693fa1a2 (patch) | |
tree | 4b9acebb49504b88b3ee23fc124a533347aae05b /scripts/build.sh | |
parent | 6a2f2b58c3800645dc0027f17020bc41a144b460 (diff) |
Adopt to jaulib changes and resolve decrypting error for late zero-size'd is_final no-content-size aware streams using double-buffered read_stream() ...
In contrast to using other buffered solutions,
jau::io::read_stream() utilizes the given buffers and hence does not need to copy the data.
Further ..
cipherpack::hash_util::calc() Use new jau::io::ByteInStream_File(dirfd, path),
being robust against directory manipulations and reducing OS lookup ops.
Status:
- Handling of content-size aware streams and lack thereof is covered
- Detection and using file/chr/fifo stream nature is supported.
Diffstat (limited to 'scripts/build.sh')
-rw-r--r-- | scripts/build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 71e51a3..68e6fd5 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -43,6 +43,7 @@ buildit() { # cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/$dist_dir -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DUSE_LIBUNWIND=ON .. # cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/$dist_dir -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DBUILD_TESTING=ON -DTEST_WITH_SUDO=ON .. cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/$dist_dir -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DBUILD_TESTING=ON -DTEST_WITH_SUDO=ON -DUSE_LIBCURL=ON .. + # cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/$dist_dir -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DBUILD_TESTING=ON -DTEST_WITH_SUDO=ON -DUSE_LIBCURL=ON -DUSE_LIBUNWIND=ON .. # cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/$dist_dir -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DBUILD_TESTING=ON -DTEST_WITH_SUDO=ON -DUSE_LIBCURL=ON -DDEBUG=ON .. make -j $CPU_COUNT install |