mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 07:53:31 +01:00
change boost requirement to 1.34+, to eliminate fs::native usage requirement
git-svn-id: http://encfs.googlecode.com/svn/trunk@22 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
parent
8d1d3ef74a
commit
a54fd2c92c
@ -43,7 +43,7 @@ AC_PROG_LIBTOOL
|
||||
|
||||
ACX_PTHREAD
|
||||
|
||||
AX_BOOST_BASE([1.33])
|
||||
AX_BOOST_BASE([1.34])
|
||||
AX_BOOST_SERIALIZATION
|
||||
AX_BOOST_FILESYSTEM
|
||||
|
||||
|
@ -318,9 +318,7 @@ bool readV6Config( const char *configFile, EncFSConfig *config,
|
||||
{
|
||||
(void)info;
|
||||
|
||||
fs::path fsPath( configFile, fs::native );
|
||||
fs::ifstream st( fsPath );
|
||||
|
||||
fs::ifstream st( configFile );
|
||||
if(st.is_open())
|
||||
{
|
||||
try
|
||||
@ -470,9 +468,7 @@ bool saveConfig( ConfigType type, const string &rootDir,
|
||||
|
||||
bool writeV6Config( const char *configFile, EncFSConfig *config )
|
||||
{
|
||||
fs::path fsPath( configFile, fs::native );
|
||||
fs::ofstream st( fsPath );
|
||||
|
||||
fs::ofstream st( configFile );
|
||||
if(!st.is_open())
|
||||
return false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user