diff options
author | MySQL Build Team <build@mysql.com> | 2009-05-22 21:50:02 +0200 |
---|---|---|
committer | MySQL Build Team <build@mysql.com> | 2009-05-22 21:50:02 +0200 |
commit | fd3986af200c48209abea3bf679843e4df978529 (patch) | |
tree | 68053b19b175a7ad193e12317a25c2fd4843d776 | |
parent | 9c4407591c722b3281dbeff07c4877d153e4db6f (diff) | |
parent | 907c71e792bc16ac52f2f48a33be225f4b13907f (diff) | |
download | mariadb-git-fd3986af200c48209abea3bf679843e4df978529.tar.gz |
Pull in the few changes from mysql-5.4.0-release; also a minor portability fix up from mysql-5.1
-rw-r--r-- | .bzr-mysql/default.conf | 4 | ||||
-rw-r--r-- | cmd-line-utils/libedit/makelist.sh | 4 | ||||
-rw-r--r-- | cmd-line-utils/libedit/readline.c | 5 | ||||
-rw-r--r-- | cmd-line-utils/libedit/readline/readline.h | 2 | ||||
-rw-r--r-- | cmd-line-utils/libedit/vi.c | 4 | ||||
-rw-r--r-- | include/Makefile.am | 7 | ||||
-rw-r--r-- | mysys/Makefile.am | 1 | ||||
-rw-r--r-- | sql/Makefile.am | 1 | ||||
-rw-r--r-- | storage/csv/Makefile.am | 1 | ||||
-rw-r--r-- | storage/heap/Makefile.am | 1 | ||||
-rw-r--r-- | storage/myisam/Makefile.am | 1 | ||||
-rw-r--r-- | storage/myisammrg/Makefile.am | 1 |
12 files changed, 17 insertions, 15 deletions
diff --git a/.bzr-mysql/default.conf b/.bzr-mysql/default.conf index f044f8e62da..45a6c66a4c1 100644 --- a/.bzr-mysql/default.conf +++ b/.bzr-mysql/default.conf @@ -1,4 +1,4 @@ [MYSQL] -post_commit_to = "commits@lists.mysql.com" -post_push_to = "commits@lists.mysql.com" +post_commit_to = False #"commits@lists.mysql.com" +post_push_to = False #"commits@lists.mysql.com" tree_name = "mysql-5.1" diff --git a/cmd-line-utils/libedit/makelist.sh b/cmd-line-utils/libedit/makelist.sh index fdd3f934e15..5d25b4776c9 100644 --- a/cmd-line-utils/libedit/makelist.sh +++ b/cmd-line-utils/libedit/makelist.sh @@ -84,7 +84,7 @@ case $FLAG in cat $FILES | $AWK ' BEGIN { printf("/* Automatically generated file, do not edit */\n"); - printf("#include \"sys.h\"\n#include \"el.h\"\n"); + printf("#include \"config.h\"\n#include \"el.h\"\n"); printf("private const struct el_bindings_t el_func_help[] = {\n"); low = "abcdefghijklmnopqrstuvwxyz_"; high = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_"; @@ -169,7 +169,7 @@ case $FLAG in cat $FILES | $AWK '/el_action_t/ { print $3 }' | sort | $AWK ' BEGIN { printf("/* Automatically generated file, do not edit */\n"); - printf("#include \"sys.h\"\n#include \"el.h\"\n"); + printf("#include \"config.h\"\n#include \"el.h\"\n"); printf("private const el_func_t el_func[] = {"); maxlen = 80; needn = 1; diff --git a/cmd-line-utils/libedit/readline.c b/cmd-line-utils/libedit/readline.c index ca8796fbd37..1f1b18c97d8 100644 --- a/cmd-line-utils/libedit/readline.c +++ b/cmd-line-utils/libedit/readline.c @@ -51,13 +51,10 @@ #else #include "np/vis.h" #endif -#ifdef HAVE_ALLOCA_H -#include <alloca.h> -#endif +#include "readline/readline.h" #include "el.h" #include "fcns.h" /* for EL_NUM_FCNS */ #include "histedit.h" -#include "readline/readline.h" #include "filecomplete.h" void rl_prep_terminal(int); diff --git a/cmd-line-utils/libedit/readline/readline.h b/cmd-line-utils/libedit/readline/readline.h index c4806734bc5..0e300faed89 100644 --- a/cmd-line-utils/libedit/readline/readline.h +++ b/cmd-line-utils/libedit/readline/readline.h @@ -66,7 +66,7 @@ typedef KEYMAP_ENTRY *Keymap; #ifndef CTRL #include <sys/ioctl.h> -#if !defined(__sun__) && !defined(__hpux__) +#if !defined(__sun) && !defined(__hpux) && !defined(_AIX) && !defined(__QNXNTO__) && !defined(__USLC__) #include <sys/ttydefaults.h> #endif #ifndef CTRL diff --git a/cmd-line-utils/libedit/vi.c b/cmd-line-utils/libedit/vi.c index 602383f3231..00a9f493a9b 100644 --- a/cmd-line-utils/libedit/vi.c +++ b/cmd-line-utils/libedit/vi.c @@ -914,14 +914,14 @@ vi_comment_out(EditLine *el, int c) * NB: posix implies that we should enter insert mode, however * this is against historical precedent... */ -#ifdef __weak_reference +#if defined(__weak_reference) && !defined(__FreeBSD__) extern char *get_alias_text(const char *) __weak_reference(get_alias_text); #endif protected el_action_t /*ARGSUSED*/ vi_alias(EditLine *el, int c) { -#ifdef __weak_reference +#if defined(__weak_reference) && !defined(__FreeBSD__) char alias_name[3]; char *alias_text; diff --git a/include/Makefile.am b/include/Makefile.am index dee012741a7..214ef8862e9 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -15,7 +15,7 @@ # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, # MA 02111-1307, USA -BUILT_SOURCES = $(HEADERS_GEN_MAKE) link_sources +BUILT_SOURCES = $(HEADERS_GEN_MAKE) link_sources probes_mysql_nodtrace.h HEADERS_GEN_CONFIGURE = mysql_version.h HEADERS_GEN_MAKE = my_config.h HEADERS_ABI = mysql.h mysql_com.h mysql_time.h \ @@ -40,8 +40,7 @@ noinst_HEADERS = config-win.h config-netware.h my_bit.h \ my_vle.h my_user.h my_atomic.h atomic/nolock.h \ atomic/rwlock.h atomic/x86-gcc.h atomic/x86-msvc.h \ atomic/solaris.h \ - atomic/gcc_builtins.h my_libwrap.h my_stacktrace.h \ - probes_mysql.h probes_mysql_nodtrace.h + atomic/gcc_builtins.h my_libwrap.h my_stacktrace.h EXTRA_DIST = mysql.h.pp mysql/plugin.h.pp probes_mysql.d.base @@ -77,7 +76,7 @@ probes_mysql.d: DTRACEPROVIDER = probes_mysql.d if HAVE_DTRACE BUILT_SOURCES += probes_mysql_dtrace.h -CLEANFILES += probes_mysql_dtrace.h +CLEANFILES += $(DTRACEPROVIDER) # Fake for creating the probes file. If we are building a separate directory # then we copy the probes from the source location and use that diff --git a/mysys/Makefile.am b/mysys/Makefile.am index f70c6199f5b..da840f123d9 100644 --- a/mysys/Makefile.am +++ b/mysys/Makefile.am @@ -132,6 +132,7 @@ libmysys_a_DEPENDENCIES += probes_mysql.o dtrace_files dtrace_providers CLEANFILES = probes_mysql.o dtrace_files dtrace_providers DTRACEFILES = mf_keycache.o DTRACEPROVIDER = probes_mysql.d +CLEANFILES += $(DTRACEPROVIDER) dtrace_sources dtrace_files: echo $(DTRACEFILES) > $@ diff --git a/sql/Makefile.am b/sql/Makefile.am index 5a6ec20eed0..e44db69e713 100644 --- a/sql/Makefile.am +++ b/sql/Makefile.am @@ -229,6 +229,7 @@ mysqld_LDADD += probes_all.o mysqld_DEPENDENCIES += dtrace_files dtrace_providers probes_all.o CLEANFILES += dtrace_files dtrace_providers probes_all.o DTRACEPROVIDER = probes_mysql.d +CLEANFILES += $(DTRACEPROVIDER) dtrace_files: echo $(DTRACEFILES) > $@ diff --git a/storage/csv/Makefile.am b/storage/csv/Makefile.am index 06db0ff7642..96fc26bed07 100644 --- a/storage/csv/Makefile.am +++ b/storage/csv/Makefile.am @@ -48,6 +48,7 @@ libcsv_a_DEPENDENCIES = probes_mysql.o dtrace_files dtrace_providers CLEANFILES = probes_mysql.o dtrace_files dtrace_providers DTRACEFILES = libcsv_a-ha_tina.o DTRACEPROVIDER = probes_mysql.d +CLEANFILES += $(DTRACEPROVIDER) dtrace_sources dtrace_files: echo $(DTRACEFILES) > $@ diff --git a/storage/heap/Makefile.am b/storage/heap/Makefile.am index 67bf37f239e..c30fd1590f0 100644 --- a/storage/heap/Makefile.am +++ b/storage/heap/Makefile.am @@ -57,6 +57,7 @@ libheap_a_DEPENDENCIES = probes_mysql.o dtrace_files dtrace_providers CLEANFILES = probes_mysql.o dtrace_files dtrace_providers DTRACEFILES = ha_heap.o DTRACEPROVIDER = probes_mysql.d +CLEANFILES += $(DTRACEPROVIDER) dtrace_sources dtrace_files: echo $(DTRACEFILES) > $@ diff --git a/storage/myisam/Makefile.am b/storage/myisam/Makefile.am index 74e54b92e66..6dd0d2bcbdb 100644 --- a/storage/myisam/Makefile.am +++ b/storage/myisam/Makefile.am @@ -156,6 +156,7 @@ libmyisam_a_DEPENDENCIES = probes_mysql.o dtrace_files dtrace_providers CLEANFILES += probes_mysql.o dtrace_files dtrace_providers DTRACEFILES = ha_myisam.o DTRACEPROVIDER = probes_mysql.d +CLEANFILES += $(DTRACEPROVIDER) dtrace_sources dtrace_files: echo $(DTRACEFILES) > $@ diff --git a/storage/myisammrg/Makefile.am b/storage/myisammrg/Makefile.am index 69857c471e9..b7eab6bfdb7 100644 --- a/storage/myisammrg/Makefile.am +++ b/storage/myisammrg/Makefile.am @@ -46,6 +46,7 @@ libmyisammrg_a_DEPENDENCIES = probes_mysql.o dtrace_files dtrace_providers CLEANFILES = probes_mysql.o dtrace_files dtrace_providers DTRACEFILES = ha_myisammrg.o DTRACEPROVIDER = probes_mysql.d +CLEANFILES += $(DTRACEPROVIDER) dtrace_sources dtrace_files: echo $(DTRACEFILES) > $@ |