aboutsummaryrefslogtreecommitdiff
path: root/multimedia/motion/patches
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-11-05 20:04:30 -0800
committerRosen Penev <rosenp@gmail.com>2020-11-05 20:18:46 -0800
commitaa2509b9d5028172855a7c38db1d4ebacbe36cc2 (patch)
tree6780f921e78689ae3201092f1004ef07078d4a48 /multimedia/motion/patches
parentaf93af4a4fa279dc5a3077832ac484ca769eada9 (diff)
motion: update to 4.3.2
Remove upstreamed patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'multimedia/motion/patches')
-rw-r--r--multimedia/motion/patches/020-libmicrohttpd.patch47
1 files changed, 0 insertions, 47 deletions
diff --git a/multimedia/motion/patches/020-libmicrohttpd.patch b/multimedia/motion/patches/020-libmicrohttpd.patch
deleted file mode 100644
index 6a0fadfae..000000000
--- a/multimedia/motion/patches/020-libmicrohttpd.patch
+++ /dev/null
@@ -1,47 +0,0 @@
---- a/src/webu.c
-+++ b/src/webu.c
-@@ -1203,7 +1203,7 @@ static void webu_answer_strm_type(struct webui_ctx *webui) {
-
- }
-
--static int webu_answer_ctrl(void *cls
-+static enum MHD_Result webu_answer_ctrl(void *cls
- , struct MHD_Connection *connection
- , const char *url
- , const char *method
-@@ -1213,7 +1213,7 @@ static int webu_answer_ctrl(void *cls
- , void **ptr) {
-
- /* This function "answers" the request for a webcontrol.*/
-- int retcd;
-+ enum MHD_Result retcd;
- struct webui_ctx *webui = *ptr;
-
- /* Eliminate compiler warnings */
-@@ -1275,7 +1275,7 @@ static int webu_answer_ctrl(void *cls
-
- }
-
--static int webu_answer_strm(void *cls
-+static enum MHD_Result webu_answer_strm(void *cls
- , struct MHD_Connection *connection
- , const char *url
- , const char *method
-@@ -1285,7 +1285,7 @@ static int webu_answer_strm(void *cls
- , void **ptr) {
-
- /* Answer the request for all the streams*/
-- int retcd;
-+ enum MHD_Result retcd;
- struct webui_ctx *webui = *ptr;
-
- /* Eliminate compiler warnings */
-@@ -1484,7 +1484,7 @@ static void webu_mhd_features_basic(struct mhdstart_ctx *mhdst){
- #if MHD_VERSION < 0x00094400
- (void)mhdst;
- #else
-- int retcd;
-+ enum MHD_Result retcd;
- retcd = MHD_is_feature_supported (MHD_FEATURE_BASIC_AUTH);
- if (retcd == MHD_YES){
- MOTION_LOG(DBG, TYPE_STREAM, NO_ERRNO ,_("Basic authentication: available"));