From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E4D22138A2F for ; Sun, 17 Aug 2014 23:32:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88AD2E0ABB; Sun, 17 Aug 2014 23:32:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 450D2E0ABB for ; Sun, 17 Aug 2014 23:32:26 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 726873400EB for ; Sun, 17 Aug 2014 23:32:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 3964218816 for ; Sun, 17 Aug 2014 23:32:24 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1408318299.22bf230ec6ebf561d6dc9eeb9f9209c9746f7d57.grknight.pub@gentoo> Subject: [gentoo-commits] proj/mysql-extras:master commit in: / X-VCS-Repository: proj/mysql-extras X-VCS-Files: 00000_index.txt 20011_all_mariadb-hppa-unsigned-long-10.0.13.patch X-VCS-Directories: / X-VCS-Committer: grknight.pub X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 22bf230ec6ebf561d6dc9eeb9f9209c9746f7d57 X-VCS-Branch: master Date: Sun, 17 Aug 2014 23:32:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 541a897b-afb7-462a-8ef9-9167219d43bc X-Archives-Hash: 8fbbdfe78bc9bbe9b3117eacee519953 commit: 22bf230ec6ebf561d6dc9eeb9f9209c9746f7d57 Author: Brian Evans tuffmail com> AuthorDate: Sun Aug 17 23:31:39 2014 +0000 Commit: Brian Evans tuffmail com> CommitDate: Sun Aug 17 23:31:39 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mysql-extras.git;a=commit;h=22bf230e Fix bad comparision of void to ulong on hppa for 10.0.13 --- 00000_index.txt | 5 +++++ 20011_all_mariadb-hppa-unsigned-long-10.0.13.patch | 11 +++++++++++ 2 files changed, 16 insertions(+) diff --git a/00000_index.txt b/00000_index.txt index 425ec04..eb30088 100644 --- a/00000_index.txt +++ b/00000_index.txt @@ -1716,6 +1716,11 @@ @patch 20011_all_mariadb-hppa-unsigned-long.patch @ver 5.05.39.00 to 5.05.99.99 +@pn mariadb +@@ Fix bad comparision of void to ulong +@@ Gentoo bug 520092 MDEV-6595 + +@patch 20011_all_mariadb-hppa-unsigned-long-10.0.13.patch @ver 10.00.13.00 to 10.00.99.99 @pn mariadb @@ Fix bad comparision of void to ulong diff --git a/20011_all_mariadb-hppa-unsigned-long-10.0.13.patch b/20011_all_mariadb-hppa-unsigned-long-10.0.13.patch new file mode 100644 index 0000000..b076f05 --- /dev/null +++ b/20011_all_mariadb-hppa-unsigned-long-10.0.13.patch @@ -0,0 +1,11 @@ +--- a/storage/xtradb/os/os0stacktrace.cc ++++ b/storage/xtradb/os/os0stacktrace.cc +@@ -85,7 +85,7 @@ + caller_address = (void*) uc->uc_mcontext.gregs[REG_RIP] ; + #elif defined(__hppa__) + ucontext_t* uc = (ucontext_t*) ucontext; +- caller_address = (void*) uc->uc_mcontext.sc_iaoq[0] & ~0x3UL ; ++ caller_address = (void*) (uc->uc_mcontext.sc_iaoq[0] & ~0x3UL) ; + #elif (defined (__ppc__)) || (defined (__powerpc__)) + ucontext_t* uc = (ucontext_t*) ucontext; + caller_address = (void*) uc->uc_mcontext.regs->nip ;