summaryrefslogtreecommitdiff
path: root/net-p2p/deluge/files/patch-libtorrent_src_storage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/deluge/files/patch-libtorrent_src_storage.cpp')
-rw-r--r--net-p2p/deluge/files/patch-libtorrent_src_storage.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/net-p2p/deluge/files/patch-libtorrent_src_storage.cpp b/net-p2p/deluge/files/patch-libtorrent_src_storage.cpp
deleted file mode 100644
index bcfe5bf7c341..000000000000
--- a/net-p2p/deluge/files/patch-libtorrent_src_storage.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
---- libtorrent/src/storage.cpp.orig 2007-08-11 01:51:04.000000000 -0500
-+++ libtorrent/src/storage.cpp 2007-08-11 01:52:15.000000000 -0500
-@@ -1027,7 +1027,7 @@
- return false;
- #endif
-
--#if defined(__linux__) || defined(__FreeBSD__)
-+#if defined(__linux__)
- struct statfs buf;
- int err = statfs(query_path.native_directory_string().c_str(), &buf);
- if (err == 0)
-@@ -1060,7 +1060,11 @@
- #endif
-
- // TODO: POSIX implementation
-+#if defined(__FreeBSD__)
-+ return true;
-+#else
- return false;
-+#endif
- }
-
- // -- piece_manager -----------------------------------------------------