From: Date: December 8 2005 4:14pm Subject: bk commit into 4.1 tree (kent:1.2485) BUG#14960 List-Archive: http://lists.mysql.com/internals/33173 X-Bug: 14960 Message-Id: <20051208151404.8100576803D@boortz.dyndns.org> Below is the list of changes that have just been committed into a local 4.1 repository of kent. When kent does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.2485 05/12/08 16:13:53 kent@stripped +2 -0 mysqld.cc: Bug#14960, reverted code to make symdir work on Windows symlink.test: Disabled test case on Windows sql/mysqld.cc 1.607 05/12/08 16:13:30 kent@stripped +2 -2 Bug#14960, reverted code to make symdir work on Windows mysql-test/t/symlink.test 1.15 05/12/06 00:40:52 kent@stripped +2 -0 Disabled test case on Windows # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: kent # Host: c-664072d5.010-2112-6f72651.cust.bredbandsbolaget.se # Root: /Users/kent/mysql/bk/mysql-4.1 --- 1.606/sql/mysqld.cc 2005-12-04 14:32:55 +01:00 +++ 1.607/sql/mysqld.cc 2005-12-08 16:13:30 +01:00 @@ -5950,7 +5950,7 @@ #else have_openssl=SHOW_OPTION_NO; #endif -#if !defined(HAVE_REALPATH) || defined(HAVE_BROKEN_REALPATH) +#ifdef HAVE_BROKEN_REALPATH have_symlink=SHOW_OPTION_NO; #else have_symlink=SHOW_OPTION_YES; @@ -6631,7 +6631,7 @@ usage(); exit(0); } -#if !defined(HAVE_REALPATH) || defined(HAVE_BROKEN_REALPATH) +#if defined(HAVE_BROKEN_REALPATH) my_use_symdir=0; my_disable_symlinks=1; have_symlink=SHOW_OPTION_NO; --- 1.14/mysql-test/t/symlink.test 2005-07-28 02:21:49 +02:00 +++ 1.15/mysql-test/t/symlink.test 2005-12-06 00:40:52 +01:00 @@ -3,6 +3,8 @@ show variables like "have_symlink"; enable_query_log; +--source include/not_windows.inc + --disable_warnings drop table if exists t1,t2,t7,t8,t9; drop database if exists mysqltest;