summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Tsoy <alexander@tsoy.me>2019-04-15 23:58:34 +0300
committerMichał Górny <mgorny@gentoo.org>2019-04-22 09:26:32 +0200
commite8dc99ed1e5f679d13ff5ecd1926bbb23d6a7dea (patch)
treea6bd935d6912a8597a84eddf0cfbaf41551287bf /net-p2p/amule/files/amule-2.2.6-fallocate.diff
parentnet-p2p/amule: revbump for wxGTK:3.0-gtk3 (diff)
downloadgentoo-e8dc99ed1e5f679d13ff5ecd1926bbb23d6a7dea.tar.gz
gentoo-e8dc99ed1e5f679d13ff5ecd1926bbb23d6a7dea.tar.bz2
gentoo-e8dc99ed1e5f679d13ff5ecd1926bbb23d6a7dea.zip
net-p2p/amule: remove old and broken
Signed-off-by: Alexander Tsoy <alexander@tsoy.me> Package-Manager: Portage-2.3.62, Repoman-2.3.11 Closes: https://github.com/gentoo/gentoo/pull/11702 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-p2p/amule/files/amule-2.2.6-fallocate.diff')
-rw-r--r--net-p2p/amule/files/amule-2.2.6-fallocate.diff23
1 files changed, 0 insertions, 23 deletions
diff --git a/net-p2p/amule/files/amule-2.2.6-fallocate.diff b/net-p2p/amule/files/amule-2.2.6-fallocate.diff
deleted file mode 100644
index 8d1485a67786..000000000000
--- a/net-p2p/amule/files/amule-2.2.6-fallocate.diff
+++ /dev/null
@@ -1,23 +0,0 @@
-Disable fallocate #562992
-
-This is only a workaround to fix FTBFS, the configure check is wrong and needs to be fixed:
-http://www.amule.org/abugs/view.php?id=1572
-
---- a/src/ThreadTasks.cpp
-+++ b/src/ThreadTasks.cpp
-@@ -506,6 +506,15 @@ void CCompletionTask::OnExit()
- #include <stdlib.h>
- #include <errno.h>
-
-+// #562992
-+#if defined(__alpha__) || defined(__hppa__)
-+#undef HAVE_FALLOCATE
-+#endif
-+
-+#if defined(__hppa__)
-+#undef HAVE_SYS_FALLOCATE
-+#endif
-+
- CAllocateFileTask::CAllocateFileTask(CPartFile *file, bool pause)
- // GetPrintable is used to improve the readability of the log.
- : CThreadTask(wxT("Allocating"), file->GetFullName().RemoveExt().GetPrintable(), ETP_High),