Below is the list of changes that have just been committed into a local
5.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.1950 05/12/03 21:45:05 kent@stripped +7 -0
Merge mysql.com:/Users/kent/mysql/bk/mysql-5.0
into mysql.com:/Users/kent/mysql/bk/mysql-5.1-new
sql/sql_repl.cc
1.146 05/12/03 21:45:00 kent@stripped +0 -0
Auto merged
sql/sql_class.h
1.274 05/12/03 21:45:00 kent@stripped +0 -0
Auto merged
sql/sp_head.cc
1.202 05/12/03 21:44:59 kent@stripped +0 -1
Auto merged
sql/log.cc
1.177 05/12/03 21:44:59 kent@stripped +0 -0
Auto merged
mysql-test/r/sp.result
1.173 05/12/03 21:44:59 kent@stripped +0 -0
Auto merged
include/my_sys.h
1.179 05/12/03 21:44:58 kent@stripped +0 -0
Auto merged
include/my_global.h
1.117 05/12/03 21:44:58 kent@stripped +0 -0
Auto merged
# 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-5.1-new/RESYNC
--- 1.178/include/my_sys.h 2005-11-22 01:02:32 +01:00
+++ 1.179/include/my_sys.h 2005-12-03 21:44:58 +01:00
@@ -821,7 +821,11 @@
#define MAP_NOSYNC 0
#endif
+#ifdef HAVE_MMAP64
+#define my_mmap(a,b,c,d,e,f) mmap64(a,b,c,d,e,f)
+#else
#define my_mmap(a,b,c,d,e,f) mmap(a,b,c,d,e,f)
+#endif
#ifdef HAVE_GETPAGESIZE
#define my_getpagesize() getpagesize()
#else
--- 1.116/include/my_global.h 2005-11-24 01:38:32 +01:00
+++ 1.117/include/my_global.h 2005-12-03 21:44:58 +01:00
@@ -541,6 +541,17 @@
#define __attribute__(A)
#endif
+/*
+ Wen using the embedded library, users might run into link problems,
+ dupicate declaration of __cxa_pure_virtual, solved by declaring it a
+ weak symbol.
+*/
+#ifdef USE_MYSYS_NEW
+C_MODE_START
+int __cxa_pure_virtual () __attribute__ ((weak));
+C_MODE_END
+#endif
+
/* From old s-system.h */
/*
| Thread |
|---|
| • bk commit into 5.1 tree (kent:1.1950) | kent | 3 Dec |