From a81fa4bf8505e3eaab4d5a18cf9388d0f04f3744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 13 Mar 2019 10:32:46 +0100 Subject: dev-db/mysql-udf-base64: Remove last-rited pkg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/677450 Signed-off-by: Michał Górny --- .../files/mysql-udf-base64-signedness.patch | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch (limited to 'dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch') diff --git a/dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch b/dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch deleted file mode 100644 index 5084a9dd0128..000000000000 --- a/dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- mysql-udf-base64.c.orig 2011-10-16 14:17:13.000000000 +0200 -+++ mysql-udf-base64.c 2011-10-16 14:18:41.000000000 +0200 -@@ -49,7 +49,7 @@ - #include - #include - --static char base64_table[] = -+static const char base64_table[] = - { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', - 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', - 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', -@@ -101,7 +101,7 @@ - unsigned long len; - - /* *is_null=0; */ -- current = args->args[0]; -+ current = (unsigned char*) args->args[0]; - len = args->lengths[0]; - - if (len <= 0 || args->arg_type[0] != STRING_RESULT ) -@@ -211,7 +211,7 @@ - } - } - -- current = args->args[0]; -+ current = (unsigned char*) args->args[0]; - len = args->lengths[0]; - - if (len <= 0 || args->arg_type[0] != STRING_RESULT ) -- cgit v1.2.3