summaryrefslogtreecommitdiff
path: root/Build-tools
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2004-10-06 19:14:33 +0300
committerunknown <monty@mysql.com>2004-10-06 19:14:33 +0300
commit264a859b1bbc5db2c950bd9a079bbd32ee300470 (patch)
tree4e2cfa6a6a8032773454e22aa802b2798b2935b8 /Build-tools
parent4a2a1cca6ec1ac3cf41a562428829a7489c4a893 (diff)
parent9cd56d52a6aa2c07470b5a0188eb03d9fa96a688 (diff)
downloadmariadb-git-264a859b1bbc5db2c950bd9a079bbd32ee300470.tar.gz
Merge with 4.0 for 4.1 release
Noteworthy: - New HANDLER code - New multi-update-grant-check code - Table lock code in ha_innodb.cc was not applied BitKeeper/etc/logging_ok: auto-union BitKeeper/deleted/.del-ctype-latin1_de.c~c5d8f9208bceb98e: Auto merged Build-tools/mysql-copyright-2: Auto merged acinclude.m4: Auto merged client/mysqladmin.c: Auto merged client/mysqldump.c: Auto merged include/config-win.h: Auto merged include/my_global.h: Auto merged include/myisam.h: Auto merged innobase/btr/btr0btr.c: Auto merged innobase/buf/buf0buf.c: Auto merged ltmain.sh: Auto merged innobase/dict/dict0dict.c: Auto merged innobase/fsp/fsp0fsp.c: Auto merged innobase/include/dict0dict.h: Auto merged innobase/include/row0mysql.h: Auto merged innobase/log/log0log.c: Auto merged innobase/log/log0recv.c: Auto merged innobase/pars/pars0opt.c: Auto merged innobase/row/row0row.c: Auto merged innobase/sync/sync0arr.c: Auto merged innobase/ut/ut0dbg.c: Auto merged myisam/mi_check.c: Auto merged myisam/mi_close.c: Auto merged myisam/mi_create.c: Auto merged myisam/mi_locking.c: Auto merged myisam/myisampack.c: Auto merged mysql-test/r/delete.result: Auto merged mysql-test/r/func_if.result: Auto merged Build-tools/mysql-copyright: Merge with 4.0 (too most of the code from 4.0) Makefile.am: merge client/mysql.cc: Used 4.1 code configure.in: merge innobase/os/os0file.c: merge innobase/row/row0mysql.c: merge mysql-test/r/ctype_latin1_de.result: merge mysql-test/r/flush_table.result: merge mysql-test/r/func_str.result: merge mysql-test/r/handler.result: merge mysql-test/r/multi_update.result: merge mysql-test/r/type_timestamp.result: Removed testing of 'new' mode, as this is only relevant for 4.0 mysql-test/r/update.result: merge mysql-test/t/delete.test: merge mysql-test/t/flush_table.test: merge mysql-test/t/func_str.test: merge mysql-test/t/handler.test: merge mysql-test/t/multi_update.test: merge mysql-test/t/type_timestamp.test: Removed testing of 'new' mode, as this is only relevant for 4.0 mysql-test/t/update.test: merge mysys/errors.c: merge mysys/my_fstream.c: merge mysys/my_pread.c: merge mysys/my_write.c: merge mysys/mysys_priv.h: merge scripts/mysqlhotcopy.sh: merge sql/field.cc: Keep code from 4.1 sql/field.h: Keep code from 4.1 sql/ha_innodb.cc: Don't merge lock code from 4.0; Heikki will look at this sql/ha_myisam.cc: merge sql/handler.cc: merge sql/item_cmpfunc.cc: merge sql/item_cmpfunc.h: merge sql/item_strfunc.cc: merge sql/mysql_priv.h: merge sql/mysqld.cc: merge sql/protocol.cc: merge sql/records.cc: merge sql/repl_failsafe.cc: merge mysql-test/r/lock_multi.result: merge mysql-test/t/ctype_latin1_de.test: merge mysql-test/t/func_if.test: merge mysql-test/t/lock_multi.test: merge sql/repl_failsafe.h: merge Remove unnessessary header protection sql/slave.h: merge sql/sql_acl.cc: merge sql/sql_base.cc: merge sql/sql_cache.cc: auto merge sql/sql_class.cc: merge sql/sql_class.h: merge sql/sql_delete.cc: merge sql/sql_handler.cc: Get new HANDLER code into 4.1 sql/sql_parse.cc: Keep old file sql/sql_repl.cc: merge sql/sql_repl.h: merge sql/sql_show.cc: merge sql/sql_table.cc: merge sql/sql_union.cc: Applied the examine_rows bug fix from 4.0 by hand sql/sql_update.cc: New multi-update-grant-check code from 4.0 sql/sql_yacc.yy: New multi-update-grant-check code from 4.0 sql/stacktrace.c: merge sql/table.h: merge
Diffstat (limited to 'Build-tools')
-rwxr-xr-xBuild-tools/mysql-copyright115
-rwxr-xr-xBuild-tools/mysql-copyright-21
2 files changed, 75 insertions, 41 deletions
diff --git a/Build-tools/mysql-copyright b/Build-tools/mysql-copyright
index 0c091890e72..dbb18e4e866 100755
--- a/Build-tools/mysql-copyright
+++ b/Build-tools/mysql-copyright
@@ -1,9 +1,9 @@
-#!/usr/bin/perl -i
+#!/usr/bin/perl -wi
# Untar a MySQL distribution, change the copyright texts,
# pack it up again to a given directory
-$VER="1.3";
+$VER="1.4";
use Cwd;
use File::Basename;
@@ -104,7 +104,7 @@ sub main
unlink("$destdir/COPYING", "$destdir/EXCEPTIONS-CLIENT");
copy("$WD/Docs/MySQLEULA.txt", "$destdir");
- # remove readline, bdb subdirs and update 'configure'
+ # remove subdirectories 'bdb', 'cmd-line-utils/readline'
my @extra_fat= ('bdb', 'cmd-line-utils/readline');
foreach my $fat (@extra_fat)
@@ -118,7 +118,10 @@ sub main
# fix LICENSE tag in include/mysql_version.h
&fix_mysql_version();
-
+
+ # apply "autotools" - must be last to ensure proper timestamps
+ &run_autotools();
+
# rename the directory with new distribution name
chdir("$WD/$dir");
print "renaming $destdir $newdistname\n" if $opt_verbose;
@@ -142,7 +145,7 @@ sub main
}
}
exit(0);
-}
+}
####
#### This function will s/GPL/Commercial/ in include/mysql_version.h for the
@@ -150,6 +153,7 @@ sub main
####
sub fix_mysql_version
{
+ my $cwd= getcwd();
chdir("$destdir");
my $header_file= (-f 'include/mysql_version.h.in')? 'include/mysql_version.h.in' : 'include/mysql_version.h';
@@ -170,44 +174,73 @@ sub fix_mysql_version
#### This function will remove unwanted parts of a src tree for the mysqlcom
#### distributions.
####
+
sub trim_the_fat
{
- my $the_fat= shift;
- my $cwd= getcwd();
-
- system("rm -rf $destdir/${the_fat}");
- if (!$win_flag)
- {
- chdir("$destdir");
- unlink ("configure") or die "Can't delete $destdir/configure: $!\n";
- open(CONFIGURE,"<configure.in") or die "Unable to open configure.in for read: $!\n";
- undef $/;
- my $configure= <CONFIGURE>;
- close(CONFIGURE);
-
- #
- # If $the_fat Makefile line closes the parenthesis, then
- # replace that line with just the closing parenthesis.
- #
- if ($configure=~ m|${the_fat}/Makefile\)\n?|)
- {
- $configure=~ s|${the_fat}/Makefile(\)\n?)|$1|;
- }
- #
- # Else just delete the line
- #
- else
- {
- $configure=~ s|${the_fat}/Makefile dnl\n?||;
- }
-
- open(CONFIGURE,">configure.in") or die "Unable to open configure.in for write: $!\n";
- print CONFIGURE $configure;
- close(CONFIGURE);
- `aclocal && autoheader && aclocal && automake && autoconf`;
- die "'./configure' was not produced!" unless (-f "configure");
- chdir("$cwd");
- }
+ my $the_fat= shift;
+ my $cwd= getcwd();
+
+ chdir("$destdir");
+ if ( -d "${the_fat}" )
+ {
+ system("rm -rf ${the_fat}");
+ if (!$win_flag)
+ {
+ open(CONFIG_IN,"<configure.in") or die "Unable to open configure.in for read: $!\n";
+ undef $/;
+ my $config_in= <CONFIG_IN>;
+ close(CONFIG_IN);
+
+ #
+ # If $the_fat Makefile line closes the parenthesis, then
+ # replace that line with just the closing parenthesis.
+ #
+ if ($config_in=~ m|${the_fat}/Makefile\)\n?|)
+ {
+ $config_in=~ s|${the_fat}/Makefile(\)\n?)|$1|;
+ }
+ #
+ # Else just delete the line
+ #
+ else
+ {
+ $config_in=~ s|${the_fat}/Makefile dnl\n?||;
+ }
+
+ open(CONFIG_IN,">configure.in") or die "Unable to open configure.in for write: $!\n";
+ print CONFIG_IN $config_in;
+ close(CONFIG_IN);
+ }
+ }
+ chdir("$cwd");
+}
+
+
+####
+#### This function will run the autotools on the reduced source tree.
+####
+
+sub run_autotools
+{
+ my $cwd= getcwd();
+
+ if (!$win_flag)
+ {
+ chdir("$destdir");
+ unlink ("configure") or die "Can't delete $destdir/configure: $!\n";
+
+ # File "configure.in" has already been modified by "trim_the_fat()"
+
+ `aclocal && autoheader && aclocal && automake && autoconf`;
+ die "'./configure' was not produced!" unless (-f "configure");
+
+ if (-d "autom4te.cache") {
+ print "Trying to delete autom4te.cache dir\n" if $opt_verbose;
+ system("rm -rf autom4te.cache") or print "Unable to delete autom4te.cache dir: $!\n";
+ }
+
+ chdir("$cwd");
+ }
}
diff --git a/Build-tools/mysql-copyright-2 b/Build-tools/mysql-copyright-2
index a1a870526da..2ea2e8ef441 100755
--- a/Build-tools/mysql-copyright-2
+++ b/Build-tools/mysql-copyright-2
@@ -90,6 +90,7 @@ sub add_copyright
$ARGV =~ /\.cc$/ ||
$ARGV =~ /\.h$/ ||
$ARGV =~ /\.cpp$/ ||
+ $ARGV =~ /\.txt$/ ||
$ARGV =~ /\.yy$/)
{
$start_copyright="/* ";