mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
bump version to 1.7.5, revert unmount change
git-svn-id: http://encfs.googlecode.com/svn/trunk@74 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
parent
9fa5deb196
commit
eccdf3c9e6
16
ChangeLog
16
ChangeLog
@ -1,6 +1,22 @@
|
||||
Mon Jun 13 2011 Valient Gough <vgough@pobox.com>
|
||||
* fix for non-b64 conversions, issue 102 patch by gebart.
|
||||
|
||||
Wed Dec 28 2011 Valient Gough <vgough@pobox.com>
|
||||
* remove m4-local
|
||||
* bump version to 1.7.5
|
||||
|
||||
Tue Dec 27 2011 Valient Gough <vgough@pobox.com>
|
||||
* remove auto-generated libtool, add new m4 macros
|
||||
* improve OSX setup
|
||||
* wrap PUSHARG macro for correctness. Issue reported by Pedro Rocha.
|
||||
|
||||
Sun Oct 2 2011 Valient Gough <vgough@pobox.com>
|
||||
* build on osx with osxfuse
|
||||
* update boost m4 macros
|
||||
|
||||
Mon Jun 13 2011 Valient Gough <vgough@pobox.com>
|
||||
* fix for non-b64 conversions, issue 102 patch by gebart.
|
||||
|
||||
Tue Dec 7 2010 Valient Gough <vgough@pobox.com>
|
||||
* add annotation option, patch by Werner Koch.
|
||||
|
||||
|
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_INIT(encfs/encfs.h) dnl a source file from your sub dir
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
AM_INIT_AUTOMAKE(encfs, 1.7.4) dnl searches for some needed programs
|
||||
AM_INIT_AUTOMAKE(encfs, 1.7.5) dnl searches for some needed programs
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
AC_CANONICAL_HOST
|
||||
|
@ -47,7 +47,7 @@ endif
|
||||
# : : 0 => no new interfaces, but breaks old apps
|
||||
# : +1 : => internal changes, nothing breaks
|
||||
#
|
||||
libencfs_la_LDFLAGS = -version-info 6:1:0
|
||||
libencfs_la_LDFLAGS = -version-info 6:2:0
|
||||
libencfs_la_LIBADD = @RLOG_LIBS@ \
|
||||
@OPENSSL_LIBS@ \
|
||||
@BOOST_SERIALIZATION_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_SYSTEM_LIB@
|
||||
|
@ -55,6 +55,11 @@
|
||||
|
||||
#include "i18n.h"
|
||||
|
||||
// Fuse version >= 26 requires another argument to fuse_unmount, which we
|
||||
// don't have. So use the backward compatible call instead..
|
||||
extern "C" void fuse_unmount_compat22(const char *mountpoint);
|
||||
#define fuse_unmount fuse_unmount_compat22
|
||||
|
||||
#ifndef MAX
|
||||
inline static int MAX(int a, int b)
|
||||
{
|
||||
@ -765,7 +770,7 @@ static bool unmountFS(EncFS_Context *ctx)
|
||||
// xgroup(diag)
|
||||
rWarning(_("Unmounting filesystem %s due to inactivity"),
|
||||
arg->mountPoint.c_str());
|
||||
fuse_unmount( arg->mountPoint.c_str(), NULL );
|
||||
fuse_unmount( arg->mountPoint.c_str() );
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user