make freebsd exception
This commit is contained in:
parent
7d14b8e38f
commit
5c0a649a65
|
@ -981,7 +981,7 @@ namespace libtorrent
|
||||||
return true;
|
return true;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__APPLE__) || defined(__linux__)
|
#if defined(__APPLE__) || defined(__linux__) || defined(__FreeBSD__)
|
||||||
// find the last existing directory of the save path
|
// find the last existing directory of the save path
|
||||||
fs::path query_path = p;
|
fs::path query_path = p;
|
||||||
while (!query_path.empty() && !exists(query_path))
|
while (!query_path.empty() && !exists(query_path))
|
||||||
|
@ -1059,7 +1059,11 @@ namespace libtorrent
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// TODO: POSIX implementation
|
// TODO: POSIX implementation
|
||||||
|
#if defined(__FreeBSD__)
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
return false;
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// -- piece_manager -----------------------------------------------------
|
// -- piece_manager -----------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue