Below is the list of changes that have just been committed into a local
5.0 repository of mhansson. When mhansson 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@stripped, 2007-05-31 14:04:47+02:00, mhansson@stripped +2 -0
approved_patch
mysql-test/mysql-test-run.pl@stripped, 2007-05-29 11:51:44+02:00, mhansson@stripped +11 -0
Import patch approved_patch
sql/udf_example.c@stripped, 2007-05-29 11:51:44+02:00, mhansson@stripped +2 -1
Import patch approved_patch
# 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: mhansson
# Host: dl145s.mysql.com
# Root: /users/mhansson/mysql/push/bug27741/my50-bug27741
--- 1.34/sql/udf_example.c 2006-12-23 20:04:28 +01:00
+++ 1.35/sql/udf_example.c 2007-05-29 11:51:44 +02:00
@@ -130,7 +130,8 @@ typedef long long longlong;
#include <m_string.h> /* To get strmov() */
#else
/* when compiled as standalone */
-#define strmov(a,b) strcpy(a,b)
+#include <string.h>
+#define strmov(a,b) stpcpy(a,b)
#define bzero(a,b) memset(a,0,b)
#define memcpy_fixed(a,b,c) memcpy(a,b,c)
#endif
--- 1.218/mysql-test/mysql-test-run.pl 2007-04-13 15:06:04 +02:00
+++ 1.219/mysql-test/mysql-test-run.pl 2007-05-29 11:51:44 +02:00
@@ -1784,6 +1784,17 @@ sub environment_setup () {
split(':', $ENV{'DYLD_LIBRARY_PATH'}) : ());
mtr_debug("DYLD_LIBRARY_PATH: $ENV{'DYLD_LIBRARY_PATH'}");
+ # The environment variable used for shared libs on AIX
+ $ENV{'SHLIB_PATH'}= join(":", @ld_library_paths,
+ $ENV{'SHLIB_PATH'} ?
+ split(':', $ENV{'SHLIB_PATH'}) : ());
+ mtr_debug("SHLIB_PATH: $ENV{'SHLIB_PATH'}");
+
+ # The environment variable used for shared libs on hp-ux
+ $ENV{'LIBPATH'}= join(":", @ld_library_paths,
+ $ENV{'LIBPATH'} ?
+ split(':', $ENV{'LIBPATH'}) : ());
+ mtr_debug("LIBPATH: $ENV{'LIBPATH'}");
# --------------------------------------------------------------------------
# Also command lines in .opt files may contain env vars
| Thread |
|---|
| • bk commit into 5.0 tree (mhansson:1.2490) | mhansson | 31 May |