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 5553513827E for ; Thu, 12 Dec 2013 15:25:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 353FEE0A82; Thu, 12 Dec 2013 15:25:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEDD3E0A82 for ; Thu, 12 Dec 2013 15:25:08 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5C6533EEAD for ; Thu, 12 Dec 2013 15:25:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2C72719002B for ; Thu, 12 Dec 2013 15:25:05 +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: <1386861890.1477b8961894eccd115c16dbaa4548bb0eadb82e.grknight.pub@gentoo> Subject: [gentoo-commits] proj/mysql-extras:master commit in: / X-VCS-Repository: proj/mysql-extras X-VCS-Files: 00000_index.txt 20005_all_mysql-unittest-5.1.73.patch X-VCS-Directories: / X-VCS-Committer: grknight.pub X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 1477b8961894eccd115c16dbaa4548bb0eadb82e X-VCS-Branch: master Date: Thu, 12 Dec 2013 15:25:05 +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: e3651387-c293-484f-bd2e-5a8becdf31ce X-Archives-Hash: fb28c2eb9d1a5d8b503176ff414cab9f commit: 1477b8961894eccd115c16dbaa4548bb0eadb82e Author: Brian Evans tuffmail com> AuthorDate: Thu Dec 12 15:24:50 2013 +0000 Commit: Brian Evans lavabit com> CommitDate: Thu Dec 12 15:24:50 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mysql-extras.git;a=commit;h=1477b896 Fix bad Makefile.am references in unittest/my_decimal --- 00000_index.txt | 5 +++++ 20005_all_mysql-unittest-5.1.73.patch | 19 +++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/00000_index.txt b/00000_index.txt index 0524cfc..98fcae7 100644 --- a/00000_index.txt +++ b/00000_index.txt @@ -1544,3 +1544,8 @@ @pn mariadb @pn mariadb-galera @@ Filter out -flto -fuse-linker-plugin -g and -Werror for tokudb + +@patch 20005_all_mysql-unittest-5.1.73.patch +@ver 5.01.73.00 to 5.01.99.99 +@pn mysql +@@ Fix poor Makefile.am references in unittest/my_decimal diff --git a/20005_all_mysql-unittest-5.1.73.patch b/20005_all_mysql-unittest-5.1.73.patch new file mode 100644 index 0000000..59cef0d --- /dev/null +++ b/20005_all_mysql-unittest-5.1.73.patch @@ -0,0 +1,19 @@ +--- a/unittest/my_decimal/Makefile.am 2013-12-12 09:37:48.508314567 -0500 ++++ b/unittest/my_decimal/Makefile.am 2013-12-12 09:38:28.187519854 -0500 +@@ -18,11 +18,11 @@ + AM_CPPFLAGS += -I$(top_srcdir)/sql + + LDADD = $(top_builddir)/unittest/mytap/libmytap.a \ +- $(top_builddir)/mysys/libmysys.a \ +- $(top_builddir)/strings/libmystrings.a \ +- $(top_builddir)/dbug/libdbug.a \ +- $(top_builddir)/mysys/libmysys.a \ +- $(top_builddir)/strings/libmystrings.a ++ $(top_builddir)/mysys/libmysys.la \ ++ $(top_builddir)/strings/libmystrings.la \ ++ $(top_builddir)/dbug/libdbug.la \ ++ $(top_builddir)/mysys/libmysys.la \ ++ $(top_builddir)/strings/libmystrings.la + + my_decimal_t_SOURCES = my_decimal-t.cc +