diff options
author | 2020-02-13 00:29:23 +0100 | |
---|---|---|
committer | 2020-02-13 22:20:23 +0100 | |
commit | 2a8a7487de3a98d0793fe2cfda0492e91ce9ef2b (patch) | |
tree | f5898444ae96a51e1c83aa45c67078d17159b4ab /sci-geosciences/mapserver/files | |
parent | app-emulation/docker: add myself to metadata.xml (diff) | |
download | gentoo-2a8a7487de3a98d0793fe2cfda0492e91ce9ef2b.tar.gz gentoo-2a8a7487de3a98d0793fe2cfda0492e91ce9ef2b.tar.bz2 gentoo-2a8a7487de3a98d0793fe2cfda0492e91ce9ef2b.zip |
sci-geosciences/mapserver: Drop 7.0.5 and 7.0.7
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-geosciences/mapserver/files')
3 files changed, 0 insertions, 53 deletions
diff --git a/sci-geosciences/mapserver/files/mapserver-7.0.0-sec-format.patch b/sci-geosciences/mapserver/files/mapserver-7.0.0-sec-format.patch deleted file mode 100644 index 17016c66e67c..000000000000 --- a/sci-geosciences/mapserver/files/mapserver-7.0.0-sec-format.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/apache/mod_mapserver.c b/apache/mod_mapserver.c -index 7949ddf..c8dbde6 100644 ---- a/apache/mod_mapserver.c -+++ b/apache/mod_mapserver.c -@@ -40,7 +40,7 @@ static int - msIO_apacheError (void *cbData, void *data, int byteCount) - { - /* error reporting is done through the log file... */ -- ap_log_error (APLOG_MARK, APLOG_ERR, 0, NULL, (char*) data); -+ ap_log_error (APLOG_MARK, APLOG_ERR, 0, NULL, "%s", (char*) data); - return strlen ((char*) data); - } - diff --git a/sci-geosciences/mapserver/files/mapserver-7.0.5-missing-macro.patch b/sci-geosciences/mapserver/files/mapserver-7.0.5-missing-macro.patch deleted file mode 100644 index ee8da6ca1fe0..000000000000 --- a/sci-geosciences/mapserver/files/mapserver-7.0.5-missing-macro.patch +++ /dev/null @@ -1,21 +0,0 @@ -commit 7e4be3d354053bca65838c2c481a61d4d5c24a3b -Author: Ettore Di Giacinto <mudler@gentoo.org> -Date: Tue May 23 20:12:20 2017 +0200 - - Fix mapserver to build when TRUE macro is not defined - -diff --git a/mapserver.h b/mapserver.h -index 32182fa0..19b1075c 100644 ---- a/mapserver.h -+++ b/mapserver.h -@@ -78,6 +78,10 @@ - #include <stdint.h> - #endif - -+#ifndef TRUE -+#define TRUE 1 -+#endif -+ - #ifdef _WIN32 - #ifndef SIZE_MAX - #ifdef _WIN64 diff --git a/sci-geosciences/mapserver/files/mapserver-7.0.7-missing-macro.patch b/sci-geosciences/mapserver/files/mapserver-7.0.7-missing-macro.patch deleted file mode 100644 index daf5ab1ebc7c..000000000000 --- a/sci-geosciences/mapserver/files/mapserver-7.0.7-missing-macro.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff --git a/mapserver.h b/mapserver.h -index df7eeb9..9516a6c 100644 ---- a/mapserver.h -+++ b/mapserver.h -@@ -55,6 +55,14 @@ - #include <unistd.h> - #endif - -+#ifndef TRUE -+#define TRUE 1 -+#endif -+ -+#ifndef FALSE -+#define FALSE 0 -+#endif -+ - #if defined(_WIN32) && !defined(__CYGWIN__) - # define MS_DLL_EXPORT __declspec(dllexport) - #define USE_MSFREE |