Revision: 5729 Author: pebender Date: Wed Oct 21 18:04:39 2009 Log: - Updated package db/mysql.
http://code.google.com/p/minimyth/source/detail?r=5729 Added: /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.40-cross.patch /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.40-have_atomic_pthread_t.patch /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.40-mysql_config.patch.gar /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.40-perl.patch.gar Deleted: /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.39-cross.patch /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.39-have_atomic_pthread_t.patch /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.39-mysql_config.patch.gar /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.39-perl.patch.gar Modified: /trunk/gar-minimyth/html/minimyth/document-changelog.txt /trunk/gar-minimyth/script/db/mysql/Makefile /trunk/gar-minimyth/script/db/mysql/checksums ======================================= --- /dev/null +++ /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.40-cross.patch Wed Oct 21 18:04:39 2009 @@ -0,0 +1,48 @@ +diff -Naur mysql-5.1.40-old/extra/Makefile.am mysql-5.1.40-new/extra/Makefile.am +--- mysql-5.1.40-old/extra/Makefile.am 2009-10-21 16:53:27.000000000 -0700 ++++ mysql-5.1.40-new/extra/Makefile.am 2009-10-21 16:54:19.000000000 -0700 +@@ -32,7 +32,7 @@ + $(top_builddir)/include/mysqld_error.h: comp_err.c \ + $(top_srcdir)/sql/share/errmsg.txt + $(MAKE) $(AM_MAKEFLAGS) comp_err$(EXEEXT) +- $(top_builddir)/extra/comp_err$(EXEEXT) \ ++ mysql-comp_err \ + --charset=$(top_srcdir)/sql/share/charsets \ + --out-dir=$(top_builddir)/sql/share/ \ + --header_file=$(top_builddir)/include/mysqld_error.h \ +diff -Naur mysql-5.1.40-old/extra/Makefile.in mysql-5.1.40-new/extra/Makefile.in +--- mysql-5.1.40-old/extra/Makefile.in 2009-10-21 16:53:27.000000000 -0700 ++++ mysql-5.1.40-new/extra/Makefile.in 2009-10-21 16:54:19.000000000 -0700 +@@ -936,7 +936,7 @@ + $(top_builddir)/include/mysqld_error.h: comp_err.c \ + $(top_srcdir)/sql/share/errmsg.txt + $(MAKE) $(AM_MAKEFLAGS) comp_err$(EXEEXT) +- $(top_builddir)/extra/comp_err$(EXEEXT) \ ++ mysql-comp_err$(EXEEXT) \ + --charset=$(top_srcdir)/sql/share/charsets \ + --out-dir=$(top_builddir)/sql/share/ \ + --header_file=$(top_builddir)/include/mysqld_error.h \ +diff -Naur mysql-5.1.40-old/sql/Makefile.am mysql-5.1.40-new/sql/Makefile.am +--- mysql-5.1.40-old/sql/Makefile.am 2009-10-21 16:53:27.000000000 -0700 ++++ mysql-5.1.40-new/sql/Makefile.am 2009-10-21 16:54:19.000000000 -0700 +@@ -176,7 +176,7 @@ + # this avoid the rebuild of the built files in a source dist + lex_hash.h: gen_lex_hash.cc lex.h + $(MAKE) $(AM_MAKEFLAGS) gen_lex_hash$(EXEEXT) +- ./gen_lex_hash$(EXEEXT) > $...@-t ++ mysql-gen_lex_hash > $...@-t + $(MV) $...@-t $@ + + # For testing of udf_example.so +diff -Naur mysql-5.1.40-old/sql/Makefile.in mysql-5.1.40-new/sql/Makefile.in +--- mysql-5.1.40-old/sql/Makefile.in 2009-10-21 16:53:27.000000000 -0700 ++++ mysql-5.1.40-new/sql/Makefile.in 2009-10-21 16:54:19.000000000 -0700 +@@ -1305,7 +1305,7 @@ + # this avoid the rebuild of the built files in a source dist + lex_hash.h: gen_lex_hash.cc lex.h + $(MAKE) $(AM_MAKEFLAGS) gen_lex_hash$(EXEEXT) +- ./gen_lex_hash$(EXEEXT) > $...@-t ++ mysql-gen_lex_hash > $...@-t + $(MV) $...@-t $@ + + # We might have some stuff not built in this build, but that we want to install ======================================= --- /dev/null +++ /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.40-have_atomic_pthread_t.patch Wed Oct 21 18:04:39 2009 @@ -0,0 +1,37 @@ +diff -Naur mysql-5.1.40-old/storage/innodb_plugin/plug.in mysql-5.1.40-new/storage/innodb_plugin/plug.in +--- mysql-5.1.40-old/storage/innodb_plugin/plug.in 2009-10-06 10:50:23.000000000 -0700 ++++ mysql-5.1.40-new/storage/innodb_plugin/plug.in 2009-10-21 16:52:45.000000000 -0700 +@@ -63,8 +63,9 @@ + ;; + esac + AC_SUBST(INNODB_DYNAMIC_CFLAGS) +- AC_MSG_CHECKING(whether pthread_t can be used by GCC atomic builtins) +- AC_TRY_RUN( ++ AC_CACHE_CHECK([whether pthread_t can be used by GCC atomic builtins], ++ [ac_cv_have_decl_HAVE_ATOMIC_PTHREAD_T], ++ [AC_TRY_RUN( + [ + #include <pthread.h> + #include <string.h> +@@ -84,14 +85,18 @@ + } + ], + [ +- AC_DEFINE([HAVE_ATOMIC_PTHREAD_T], [1], +- [pthread_t can be used by GCC atomic builtins]) + AC_MSG_RESULT(yes) ++ ac_cv_have_decl_HAVE_ATOMIC_PTHREAD_T=yes + ], + [ + AC_MSG_RESULT(no) ++ ac_cv_have_decl_HAVE_ATOMIC_PTHREAD_T=no + ] +- ) ++ )]) ++ if test "x$ac_cv_have_decl_HAVE_ATOMIC_PTHREAD"= "xyes" ; then ++ AC_DEFINE([HAVE_ATOMIC_PTHREAD_T], [1], ++ [pthread_t can be used by GCC atomic builtins]) ++ fi + + # Try using solaris atomics on SunOS if GCC atomics are not available + AC_CHECK_DECLS( ======================================= --- /dev/null +++ /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.40-mysql_config.patch.gar Wed Oct 21 18:04:39 2009 @@ -0,0 +1,40 @@ +diff -Naur mysql-5.1.40-old/scripts/Makefile.am mysql-5.1.40-new/scripts/Makefile.am +--- mysql-5.1.40-old/scripts/Makefile.am 2009-10-21 16:53:08.000000000 -0700 ++++ mysql-5.1.40-new/scripts/Makefile.am 2009-10-21 16:53:40.000000000 -0700 +@@ -131,21 +131,21 @@ + .sh: + @RM@ -f $@ $...@-t + @SED@ \ +- -e 's!@''bindir''@!$(bindir)!g' \ +- -e 's!@''sbindir''@!$(sbindir)!g' \ +- -e 's!@''scriptdir''@!$(bindir)!g' \ +- -e 's!@''prefix''@!$(prefix)!g' \ +- -e 's!@''datadir''@!$(datadir)!g' \ +- -e 's!@''localstatedir''@!$(localstatedir)!g' \ +- -e 's!@''libexecdir''@!$(libexecdir)!g' \ +- -e 's!@''pkglibdir''@!$(pkglibdir)!g' \ +- -e 's!@''pkgincludedir''@!$(pkgincludedir)!g' \ +- -e 's!@''pkgdatadir''@!$(pkgdatadir)!g' \ +- -e 's!@''pkgplugindir''@!$(pkgplugindir)!g' \ +- -e 's!@''pkgsuppdir''@!$(pkgsuppdir)!g' \ +- -e 's!@''sysconfdir''@!$(sysconfdir)!g' \ +- -e 's!@''mandir''@!$(mandir)!g' \ +- -e 's!@''infodir''@!$(infodir)!g' \ ++ -e 's!@''bindir''@!...@gar_destdir@$(bindir)!g' \ ++ -e 's!@''sbindir''@!...@gar_destdir@$(sbindir)!g' \ ++ -e 's!@''scriptdir''@!...@gar_destdir@$(bindir)!g' \ ++ -e 's!@''prefix''@!...@gar_destdir@$(prefix)!g' \ ++ -e 's!@''datadir''@!...@gar_destdir@$(datadir)!g' \ ++ -e 's!@''localstatedir''@!...@gar_destdir@$(localstatedir)!g' \ ++ -e 's!@''libexecdir''@!...@gar_destdir@$(libexecdir)!g' \ ++ -e 's!@''pkglibdir''@!...@gar_destdir@$(pkglibdir)!g' \ ++ -e 's!@''pkgincludedir''@!...@gar_destdir@$(pkgincludedir)!g' \ ++ -e 's!@''pkgdatadir''@!...@gar_destdir@$(pkgdatadir)!g' \ ++ -e 's!@''pkgplugindir''@!...@gar_destdir@$(pkgplugindir)!g' \ ++ -e 's!@''pkgsuppdir''@!...@gar_destdir@$(pkgsuppdir)!g' \ ++ -e 's!@''sysconfdir''@!...@gar_destdir@$(sysconfdir)!g' \ ++ -e 's!@''mandir''@!...@gar_destdir@$(mandir)!g' \ ++ -e 's!@''infodir''@!...@gar_destdir@$(infodir)!g' \ + -e 's!@''CC''@!...@cc@!'\ + -e 's!@''CXX''@!...@cxx@!'\ + -e 's!@''GXX''@!...@gxx@!'\ ======================================= --- /dev/null +++ /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.40-perl.patch.gar Wed Oct 21 18:04:39 2009 @@ -0,0 +1,45 @@ +diff -Naur mysql-5.1.40-old/mysql-test/mysql-stress-test.pl mysql-5.1.40-new/mysql-test/mysql-stress-test.pl +--- mysql-5.1.40-old/mysql-test/mysql-stress-test.pl 2009-10-21 16:52:24.000000000 -0700 ++++ mysql-5.1.40-new/mysql-test/mysql-stress-test.pl 2009-10-21 16:53:15.000000000 -0700 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl +...@gar_destdir@@GAR_bindir@/perl + # ====================================================================== + # MySQL server stress test system + # ====================================================================== +diff -Naur mysql-5.1.40-old/mysql-test/mysql-test-run.pl mysql-5.1.40-new/mysql-test/mysql-test-run.pl +--- mysql-5.1.40-old/mysql-test/mysql-test-run.pl 2009-10-21 16:52:24.000000000 -0700 ++++ mysql-5.1.40-new/mysql-test/mysql-test-run.pl 2009-10-21 16:53:15.000000000 -0700 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl +...@gar_destdir@@GAR_bindir@/perl + # -*- cperl -*- + + # +diff -Naur mysql-5.1.40-old/mysql-test/suite/funcs_1/lib/DataGen_local.pl mysql-5.1.40-new/mysql-test/suite/funcs_1/lib/DataGen_local.pl +--- mysql-5.1.40-old/mysql-test/suite/funcs_1/lib/DataGen_local.pl 2009-10-21 16:52:24.000000000 -0700 ++++ mysql-5.1.40-new/mysql-test/suite/funcs_1/lib/DataGen_local.pl 2009-10-21 16:53:15.000000000 -0700 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl +...@gar_destdir@@GAR_bindir@/perl + + + if ( (scalar(@ARGV) != 1 ) || ($ARGV[0] =~ /[^0-9]/i ) ) +diff -Naur mysql-5.1.40-old/mysql-test/suite/funcs_1/lib/DataGen_modify.pl mysql-5.1.40-new/mysql-test/suite/funcs_1/lib/DataGen_modify.pl +--- mysql-5.1.40-old/mysql-test/suite/funcs_1/lib/DataGen_modify.pl 2009-10-21 16:52:24.000000000 -0700 ++++ mysql-5.1.40-new/mysql-test/suite/funcs_1/lib/DataGen_modify.pl 2009-10-21 16:53:15.000000000 -0700 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl +...@gar_destdir@@GAR_bindir@/perl + + + if ( (scalar(@ARGV) != 2 ) || ($ARGV[0] =~ /[^0-9]/i ) ) +diff -Naur mysql-5.1.40-old/mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl mysql-5.1.40-new/mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl +--- mysql-5.1.40-old/mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl 2009-10-21 16:52:24.000000000 -0700 ++++ mysql-5.1.40-new/mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl 2009-10-21 16:53:15.000000000 -0700 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl +...@gar_destdir@@GAR_bindir@/perl + + ################################################################################# + # Author: Serge Kozlov # ======================================= --- /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.39-cross.patch Mon Sep 21 20:25:40 2009 +++ /dev/null @@ -1,48 +0,0 @@ -diff -Naur mysql-5.1.39-old/extra/Makefile.am mysql-5.1.39-new/extra/Makefile.am ---- mysql-5.1.39-old/extra/Makefile.am 2009-09-21 20:08:48.000000000 -0700 -+++ mysql-5.1.39-new/extra/Makefile.am 2009-09-21 20:09:31.000000000 -0700 -@@ -32,7 +32,7 @@ - $(top_builddir)/include/mysqld_error.h: comp_err.c \ - $(top_srcdir)/sql/share/errmsg.txt - $(MAKE) $(AM_MAKEFLAGS) comp_err$(EXEEXT) -- $(top_builddir)/extra/comp_err$(EXEEXT) \ -+ mysql-comp_err \ - --charset=$(top_srcdir)/sql/share/charsets \ - --out-dir=$(top_builddir)/sql/share/ \ - --header_file=$(top_builddir)/include/mysqld_error.h \ -diff -Naur mysql-5.1.39-old/extra/Makefile.in mysql-5.1.39-new/extra/Makefile.in ---- mysql-5.1.39-old/extra/Makefile.in 2009-09-21 20:08:48.000000000 -0700 -+++ mysql-5.1.39-new/extra/Makefile.in 2009-09-21 20:09:31.000000000 -0700 -@@ -936,7 +936,7 @@ - $(top_builddir)/include/mysqld_error.h: comp_err.c \ - $(top_srcdir)/sql/share/errmsg.txt - $(MAKE) $(AM_MAKEFLAGS) comp_err$(EXEEXT) -- $(top_builddir)/extra/comp_err$(EXEEXT) \ -+ mysql-comp_err$(EXEEXT) \ - --charset=$(top_srcdir)/sql/share/charsets \ - --out-dir=$(top_builddir)/sql/share/ \ - --header_file=$(top_builddir)/include/mysqld_error.h \ -diff -Naur mysql-5.1.39-old/sql/Makefile.am mysql-5.1.39-new/sql/Makefile.am ---- mysql-5.1.39-old/sql/Makefile.am 2009-09-21 20:08:48.000000000 -0700 -+++ mysql-5.1.39-new/sql/Makefile.am 2009-09-21 20:09:31.000000000 -0700 -@@ -174,7 +174,7 @@ - # this avoid the rebuild of the built files in a source dist - lex_hash.h: gen_lex_hash.cc lex.h - $(MAKE) $(AM_MAKEFLAGS) gen_lex_hash$(EXEEXT) -- ./gen_lex_hash$(EXEEXT) > $...@-t -+ mysql-gen_lex_hash > $...@-t - $(MV) $...@-t $@ - - # For testing of udf_example.so -diff -Naur mysql-5.1.39-old/sql/Makefile.in mysql-5.1.39-new/sql/Makefile.in ---- mysql-5.1.39-old/sql/Makefile.in 2009-09-21 20:08:48.000000000 -0700 -+++ mysql-5.1.39-new/sql/Makefile.in 2009-09-21 20:09:31.000000000 -0700 -@@ -1302,7 +1302,7 @@ - # this avoid the rebuild of the built files in a source dist - lex_hash.h: gen_lex_hash.cc lex.h - $(MAKE) $(AM_MAKEFLAGS) gen_lex_hash$(EXEEXT) -- ./gen_lex_hash$(EXEEXT) > $...@-t -+ mysql-gen_lex_hash > $...@-t - $(MV) $...@-t $@ - - # We might have some stuff not built in this build, but that we want to install ======================================= --- /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.39-have_atomic_pthread_t.patch Mon Sep 21 20:25:40 2009 +++ /dev/null @@ -1,37 +0,0 @@ -diff -Naur mysql-5.1.39-old/storage/innodb_plugin/plug.in mysql-5.1.39-new/storage/innodb_plugin/plug.in ---- mysql-5.1.39-old/storage/innodb_plugin/plug.in 2009-09-04 09:21:02.000000000 -0700 -+++ mysql-5.1.39-new/storage/innodb_plugin/plug.in 2009-09-21 20:07:48.000000000 -0700 -@@ -63,8 +63,9 @@ - ;; - esac - AC_SUBST(INNODB_DYNAMIC_CFLAGS) -- AC_MSG_CHECKING(whether pthread_t can be used by GCC atomic builtins) -- AC_TRY_RUN( -+ AC_CACHE_CHECK([whether pthread_t can be used by GCC atomic builtins], -+ [ac_cv_have_decl_HAVE_ATOMIC_PTHREAD_T], -+ [AC_TRY_RUN( - [ - #include <pthread.h> - #include <string.h> -@@ -84,14 +85,18 @@ - } - ], - [ -- AC_DEFINE([HAVE_ATOMIC_PTHREAD_T], [1], -- [pthread_t can be used by GCC atomic builtins]) - AC_MSG_RESULT(yes) -+ ac_cv_have_decl_HAVE_ATOMIC_PTHREAD_T=yes - ], - [ - AC_MSG_RESULT(no) -+ ac_cv_have_decl_HAVE_ATOMIC_PTHREAD_T=no - ] -- ) -+ )]) -+ if test "x$ac_cv_have_decl_HAVE_ATOMIC_PTHREAD"= "xyes" ; then -+ AC_DEFINE([HAVE_ATOMIC_PTHREAD_T], [1], -+ [pthread_t can be used by GCC atomic builtins]) -+ fi - - # Try using solaris atomics on SunOS if GCC atomics are not available - AC_CHECK_DECLS( ======================================= --- /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.39-mysql_config.patch.gar Mon Sep 21 20:25:40 2009 +++ /dev/null @@ -1,40 +0,0 @@ -diff -Naur mysql-5.1.39-old/scripts/Makefile.am mysql-5.1.39-new/scripts/Makefile.am ---- mysql-5.1.39-old/scripts/Makefile.am 2009-09-21 20:08:17.000000000 -0700 -+++ mysql-5.1.39-new/scripts/Makefile.am 2009-09-21 20:09:05.000000000 -0700 -@@ -131,21 +131,21 @@ - .sh: - @RM@ -f $@ $...@-t - @SED@ \ -- -e 's!@''bindir''@!$(bindir)!g' \ -- -e 's!@''sbindir''@!$(sbindir)!g' \ -- -e 's!@''scriptdir''@!$(bindir)!g' \ -- -e 's!@''prefix''@!$(prefix)!g' \ -- -e 's!@''datadir''@!$(datadir)!g' \ -- -e 's!@''localstatedir''@!$(localstatedir)!g' \ -- -e 's!@''libexecdir''@!$(libexecdir)!g' \ -- -e 's!@''pkglibdir''@!$(pkglibdir)!g' \ -- -e 's!@''pkgincludedir''@!$(pkgincludedir)!g' \ -- -e 's!@''pkgdatadir''@!$(pkgdatadir)!g' \ -- -e 's!@''pkgplugindir''@!$(pkgplugindir)!g' \ -- -e 's!@''pkgsuppdir''@!$(pkgsuppdir)!g' \ -- -e 's!@''sysconfdir''@!$(sysconfdir)!g' \ -- -e 's!@''mandir''@!$(mandir)!g' \ -- -e 's!@''infodir''@!$(infodir)!g' \ -+ -e 's!@''bindir''@!...@gar_destdir@$(bindir)!g' \ -+ -e 's!@''sbindir''@!...@gar_destdir@$(sbindir)!g' \ -+ -e 's!@''scriptdir''@!...@gar_destdir@$(bindir)!g' \ -+ -e 's!@''prefix''@!...@gar_destdir@$(prefix)!g' \ -+ -e 's!@''datadir''@!...@gar_destdir@$(datadir)!g' \ -+ -e 's!@''localstatedir''@!...@gar_destdir@$(localstatedir)!g' \ -+ -e 's!@''libexecdir''@!...@gar_destdir@$(libexecdir)!g' \ -+ -e 's!@''pkglibdir''@!...@gar_destdir@$(pkglibdir)!g' \ -+ -e 's!@''pkgincludedir''@!...@gar_destdir@$(pkgincludedir)!g' \ -+ -e 's!@''pkgdatadir''@!...@gar_destdir@$(pkgdatadir)!g' \ -+ -e 's!@''pkgplugindir''@!...@gar_destdir@$(pkgplugindir)!g' \ -+ -e 's!@''pkgsuppdir''@!...@gar_destdir@$(pkgsuppdir)!g' \ -+ -e 's!@''sysconfdir''@!...@gar_destdir@$(sysconfdir)!g' \ -+ -e 's!@''mandir''@!...@gar_destdir@$(mandir)!g' \ -+ -e 's!@''infodir''@!...@gar_destdir@$(infodir)!g' \ - -e 's!@''CC''@!...@cc@!'\ - -e 's!@''CXX''@!...@cxx@!'\ - -e 's!@''GXX''@!...@gxx@!'\ ======================================= --- /trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.39-perl.patch.gar Mon Sep 21 20:25:40 2009 +++ /dev/null @@ -1,45 +0,0 @@ -diff -Naur mysql-5.1.39-old/mysql-test/mysql-stress-test.pl mysql-5.1.39-new/mysql-test/mysql-stress-test.pl ---- mysql-5.1.39-old/mysql-test/mysql-stress-test.pl 2009-09-21 20:07:32.000000000 -0700 -+++ mysql-5.1.39-new/mysql-test/mysql-stress-test.pl 2009-09-21 20:08:33.000000000 -0700 -@@ -1,4 +1,4 @@ --#!/usr/bin/perl -...@gar_destdir@@GAR_bindir@/perl - # ====================================================================== - # MySQL server stress test system - # ====================================================================== -diff -Naur mysql-5.1.39-old/mysql-test/mysql-test-run.pl mysql-5.1.39-new/mysql-test/mysql-test-run.pl ---- mysql-5.1.39-old/mysql-test/mysql-test-run.pl 2009-09-21 20:07:32.000000000 -0700 -+++ mysql-5.1.39-new/mysql-test/mysql-test-run.pl 2009-09-21 20:08:33.000000000 -0700 -@@ -1,4 +1,4 @@ --#!/usr/bin/perl -...@gar_destdir@@GAR_bindir@/perl - # -*- cperl -*- - - # -diff -Naur mysql-5.1.39-old/mysql-test/suite/funcs_1/lib/DataGen_local.pl mysql-5.1.39-new/mysql-test/suite/funcs_1/lib/DataGen_local.pl ---- mysql-5.1.39-old/mysql-test/suite/funcs_1/lib/DataGen_local.pl 2009-09-21 20:07:32.000000000 -0700 -+++ mysql-5.1.39-new/mysql-test/suite/funcs_1/lib/DataGen_local.pl 2009-09-21 20:08:33.000000000 -0700 -@@ -1,4 +1,4 @@ --#!/usr/bin/perl -...@gar_destdir@@GAR_bindir@/perl - - - if ( (scalar(@ARGV) != 1 ) || ($ARGV[0] =~ /[^0-9]/i ) ) -diff -Naur mysql-5.1.39-old/mysql-test/suite/funcs_1/lib/DataGen_modify.pl mysql-5.1.39-new/mysql-test/suite/funcs_1/lib/DataGen_modify.pl ---- mysql-5.1.39-old/mysql-test/suite/funcs_1/lib/DataGen_modify.pl 2009-09-21 20:07:32.000000000 -0700 -+++ mysql-5.1.39-new/mysql-test/suite/funcs_1/lib/DataGen_modify.pl 2009-09-21 20:08:33.000000000 -0700 -@@ -1,4 +1,4 @@ --#!/usr/bin/perl -...@gar_destdir@@GAR_bindir@/perl - - - if ( (scalar(@ARGV) != 2 ) || ($ARGV[0] =~ /[^0-9]/i ) ) -diff -Naur mysql-5.1.39-old/mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl mysql-5.1.39-new/mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl ---- mysql-5.1.39-old/mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl 2009-09-21 20:07:32.000000000 -0700 -+++ mysql-5.1.39-new/mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl 2009-09-21 20:08:33.000000000 -0700 -@@ -1,4 +1,4 @@ --#!/usr/bin/perl -...@gar_destdir@@GAR_bindir@/perl - - ################################################################################# - # Author: Serge Kozlov # ======================================= --- /trunk/gar-minimyth/html/minimyth/document-changelog.txt Wed Oct 21 18:03:40 2009 +++ /trunk/gar-minimyth/html/minimyth/document-changelog.txt Wed Oct 21 18:04:39 2009 @@ -42,6 +42,7 @@ Added nvidia/nvidia-190.42. Updated packages + Updated db/mysql. Updated gtk/gtk+. Updated lib/ffmpeg. Updated lib/libdaemon. ======================================= --- /trunk/gar-minimyth/script/db/mysql/Makefile Wed Sep 30 15:34:28 2009 +++ /trunk/gar-minimyth/script/db/mysql/Makefile Wed Oct 21 18:04:39 2009 @@ -1,5 +1,5 @@ GARNAME = mysql -GARVERSION = 5.1.39 +GARVERSION = 5.1.40 CATEGORIES = db MASTER_SITES = http://downloads.mysql.com/archives/$(GARNAME)-5.1/ MASTER_SITES += http://mirror.trouble-free.net/mysql_mirror/Downloads/MySQL-5.1/ ======================================= --- /trunk/gar-minimyth/script/db/mysql/checksums Wed Sep 30 15:34:28 2009 +++ /trunk/gar-minimyth/script/db/mysql/checksums Wed Oct 21 18:04:39 2009 @@ -1,7 +1,7 @@ -55a398daeb69a778fc46573623143268 download/mysql-5.1.39.tar.gz -967b85e5ffb274a65fa5e568ab1fce66 download/mysql-5.1.39-have_atomic_pthread_t.patch -e0f8bb2576499199ae4d52716eb2852d download/mysql-5.1.39-perl.patch.gar -a4a638b84d1bb64de74a52b2cb94bea5 download/mysql-5.1.39-mysql_config.patch.gar -e72f932c4036e12bf86ffedbeb9789ce download/mysql-5.1.39-cross.patch +32e7373c16271606007374396e6742ad download/mysql-5.1.40.tar.gz +6109fe28b1bec97431ced428b136ed6c download/mysql-5.1.40-have_atomic_pthread_t.patch +6b190596c50cf00d7a68fc9f632feea3 download/mysql-5.1.40-perl.patch.gar +291f97dc9762ac983b4484744caf8837 download/mysql-5.1.40-mysql_config.patch.gar +73cdb01766d0772fef1567d120533c20 download/mysql-5.1.40-cross.patch 2a51d80e441c3245a77d0ebbb9f4d229 download/config.cache.i386 2a51d80e441c3245a77d0ebbb9f4d229 download/config.cache.x86_64 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "minimyth-commits" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/minimyth-commits?hl=en -~----------~----~----~----~------~----~------~--~---
