commit: e5e82df6de628f9453d24d487ac5b6b944046bb7
Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 19 18:29:46 2021 +0000
Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
CommitDate: Thu Aug 19 18:29:46 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5e82df6
app-admin/conky: Remove unused patch.
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
.../conky/files/conky-1.11.6-fpermissive.patch | 29 ----------------------
1 file changed, 29 deletions(-)
diff --git a/app-admin/conky/files/conky-1.11.6-fpermissive.patch
b/app-admin/conky/files/conky-1.11.6-fpermissive.patch
deleted file mode 100644
index f608769b643..00000000000
--- a/app-admin/conky/files/conky-1.11.6-fpermissive.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- old/src/conky.cc 2021-01-24 17:05:43.361378726 +0100
-+++ new/src/conky.cc 2021-01-24 17:05:49.055378611 +0100
-@@ -317,17 +321,22 @@
- static FILE *append_fpointer = nullptr;
-
- #ifdef BUILD_HTTP
-+#ifdef MHD_YES
-+/* older API */
-+#define MHD_Result int
-+#endif /* MHD_YES */
- std::string webpage;
- struct MHD_Daemon *httpd;
- static conky::simple_config_setting<bool> http_refresh("http_refresh", false,
- true);
-
--int sendanswer(void *cls, struct MHD_Connection *connection, const char *url,
-- const char *method, const char *version, const char
*upload_data,
-- size_t *upload_data_size, void **con_cls) {
-+MHD_Result sendanswer(void *cls, struct MHD_Connection *connection,
-+ const char *url, const char *method, const char
*version,
-+ const char *upload_data, size_t *upload_data_size,
-+ void **con_cls) {
- struct MHD_Response *response = MHD_create_response_from_buffer(
- webpage.length(), (void *)webpage.c_str(), MHD_RESPMEM_PERSISTENT);
-- int ret = MHD_queue_response(connection, MHD_HTTP_OK, response);
-+ MHD_Result ret = MHD_queue_response(connection, MHD_HTTP_OK, response);
- MHD_destroy_response(response);
- if (cls || url || method || version || upload_data || upload_data_size ||
- con_cls) {} // make compiler happy