diff options
author | 2020-10-04 23:08:07 +0200 | |
---|---|---|
committer | 2020-10-08 22:04:19 +0200 | |
commit | 8d971bc3284952d9f3bdf12ae901e1b107c26ebd (patch) | |
tree | 135225925ce0575d59f1f3639838a8eac9e4c33c /package/motion/0001-Fix-build-with-GCC-10.patch | |
parent | b5881e19e4108fa1090c7d6bfcd458190eae0ce6 (diff) | |
download | buildroot-8d971bc3284952d9f3bdf12ae901e1b107c26ebd.tar.gz buildroot-8d971bc3284952d9f3bdf12ae901e1b107c26ebd.tar.bz2 |
package/motion: bump to version 4.3.1
- Drop patch (already in version)
- Call gettextsize and add a non upstreamable patch to remove
po/Makefile.in: https://github.com/Motion-Project/motion/issues/1028
- --with-mysql-{include,lib} and --with-pgsql-{include,lib} have been
dropped since version 4.3.0 and
https://github.com/Motion-Project/motion/commit/0dc2ae9372cfd2705110ef25c8c85b246adb2dc6
- Update indentation in hash file (two spaces)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/motion/0001-Fix-build-with-GCC-10.patch')
-rw-r--r-- | package/motion/0001-Fix-build-with-GCC-10.patch | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/package/motion/0001-Fix-build-with-GCC-10.patch b/package/motion/0001-Fix-build-with-GCC-10.patch deleted file mode 100644 index a5684db965..0000000000 --- a/package/motion/0001-Fix-build-with-GCC-10.patch +++ /dev/null @@ -1,53 +0,0 @@ -From a4a48baf86b18b792fb5e53648b4efd02b3db7b7 Mon Sep 17 00:00:00 2001 -From: Vasiliy Glazov <vascom2@gmail.com> -Date: Sun, 8 Mar 2020 03:00:21 +0300 -Subject: [PATCH] Fix build with GCC 10. - -[Retrieved (and backported) from: -https://github.com/Motion-Project/motion/commit/a4a48baf86b18b792fb5e53648b4efd02b3db7b7] -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> ---- - src/netcam.h | 2 +- - src/translate.c | 2 ++ - src/translate.h | 2 +- - 3 files changed, 4 insertions(+), 2 deletions(-) - -diff --git a/netcam.h b/netcam.h -index 2951d917..4ee0e1c8 100644 ---- a/netcam.h -+++ b/netcam.h -@@ -113,7 +113,7 @@ typedef struct netcam_image_buff { - } netcam_buff; - typedef netcam_buff *netcam_buff_ptr; - --struct netcam_caps { /* netcam capabilities: */ -+extern struct netcam_caps { /* netcam capabilities: */ - unsigned char streaming; /* See the NCS_* defines */ - unsigned char content_length; /* 0 - unsupported */ - } caps; -diff --git a/translate.c b/translate.c -index 0c9f1105..a212d9de 100644 ---- a/translate.c -+++ b/translate.c -@@ -10,6 +10,8 @@ - #include "motion.h" - #include "translate.h" - -+int nls_enabled; -+ - void translate_locale_chg(const char *langcd){ - #ifdef HAVE_GETTEXT - /* This routine is for development testing only. It is not used for -diff --git a/translate.h b/translate.h -index 0832ffd8..eeba3745 100644 ---- a/translate.h -+++ b/translate.h -@@ -10,7 +10,7 @@ - #ifndef _INCLUDE_TRANSLATE_H_ - #define _INCLUDE_TRANSLATE_H_ - --int nls_enabled; -+extern int nls_enabled; - - #ifdef HAVE_GETTEXT - # include <libintl.h> |