summaryrefslogtreecommitdiff
path: root/net-nntp
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-25 03:04:45 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-25 03:04:45 -0500
commita2d754850b88dddfc90152e4eaf858d6907b5201 (patch)
treee987342a645cd8d7bce252c8e897fcc8f1abd79b /net-nntp
parent719f5679cb7b1141529b574349239e0640bae1ca (diff)
downloadbaldeagleos-repo-a2d754850b88dddfc90152e4eaf858d6907b5201.tar.gz
baldeagleos-repo-a2d754850b88dddfc90152e4eaf858d6907b5201.tar.xz
baldeagleos-repo-a2d754850b88dddfc90152e4eaf858d6907b5201.zip
Adding metadata
Diffstat (limited to 'net-nntp')
-rw-r--r--net-nntp/nzbget/files/nzbget-26.0-fix-include-order.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/net-nntp/nzbget/files/nzbget-26.0-fix-include-order.patch b/net-nntp/nzbget/files/nzbget-26.0-fix-include-order.patch
deleted file mode 100644
index 654b6a46377e..000000000000
--- a/net-nntp/nzbget/files/nzbget-26.0-fix-include-order.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 063e1cd82ee719b18a1dae40f65c0971de44edef Mon Sep 17 00:00:00 2001
-From: Louis Sautier <sautier.louis@gmail.com>
-Date: Sun, 15 Feb 2026 19:29:04 +0100
-Subject: [PATCH] Fix missing nzbget.h includes causing compilation errors
- (#736)
-
---- a/daemon/queue/UrlCoordinator.cpp
-+++ b/daemon/queue/UrlCoordinator.cpp
-@@ -18,9 +18,8 @@
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
-
--
--#include "Unpack.h"
- #include "nzbget.h"
-+#include "Unpack.h"
-
- #include "UrlCoordinator.h"
- #include "Options.h"
---- a/daemon/systemhealth/PathsValidator.cpp
-+++ b/daemon/systemhealth/PathsValidator.cpp
-@@ -17,6 +17,7 @@
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
-
-+#include "nzbget.h"
- #include "Options.h"
- #include "Status.h"
- #include "Validators.h"