Skip to content

Commit dd2b791

Browse files
author
monty@narttu.mysql.fi
committed
Merge with 4.0.13
2 parents 524878e + fc0df59 commit dd2b791

File tree

317 files changed

+6691
-3495
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+6691
-3495
lines changed

.bzrignore

+9-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ COPYING.LIB
3838
Docs/#manual.texi#
3939
Docs/INSTALL-BINARY
4040
Docs/include.texi
41+
Docs/internals.html
4142
Docs/internals.info
43+
Docs/internals.pdf
44+
Docs/internals.txt
45+
Docs/internals_toc.html
4246
Docs/manual.aux
4347
Docs/manual.cp
4448
Docs/manual.cps
@@ -239,6 +243,7 @@ client/select_test
239243
client/ssl_test
240244
client/thimble
241245
client/thread_test
246+
client_test
242247
cmd-line-utils/libedit/common.h
243248
comon.h
244249
config.cache
@@ -287,6 +292,7 @@ innobase/conftest.subs
287292
innobase/ib_config.h
288293
innobase/ib_config.h.in
289294
innobase/stamp-h1
295+
insert_test
290296
isam/isamchk
291297
isam/isamlog
292298
isam/pack_isam
@@ -513,6 +519,7 @@ scripts/mysqld_safe
513519
scripts/mysqldumpslow
514520
scripts/mysqlhotcopy
515521
scripts/safe_mysqld
522+
select_test
516523
sql-bench/Results-linux/ATIS-mysql_bdb-Linux_2.2.14_my_SMP_i686
517524
sql-bench/bench-count-distinct
518525
sql-bench/bench-init.pl
@@ -578,6 +585,7 @@ strings/ctype_autoconf.c
578585
strings/ctype_extra_sources.c
579586
support-files/MacOSX/Description.plist
580587
support-files/MacOSX/Info.plist
588+
support-files/MacOSX/ReadMe.txt
581589
support-files/MacOSX/StartupParameters.plist
582590
support-files/MacOSX/postinstall
583591
support-files/MacOSX/preinstall
@@ -597,6 +605,7 @@ support-files/mysql.spec
597605
tags
598606
test_xml
599607
tests/client_test
608+
thread_test
600609
tmp/*
601610
tools/my_vsnprintf.c
602611
tools/mysqlmanager
@@ -607,7 +616,3 @@ vio/test-ssl
607616
vio/test-sslclient
608617
vio/test-sslserver
609618
vio/viotest-ssl
610-
client_test
611-
thread_test
612-
select_test
613-
insert_test

BUILD/SETUP.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,6 @@ else
7171
make=make
7272
fi
7373

74-
CXX=gcc
74+
if test -z $CXX ; then
75+
CXX=gcc
76+
fi

BitKeeper/etc/logging_ok

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ miguel@hegel.br
5151
miguel@hegel.local
5252
miguel@light.
5353
miguel@light.local
54+
mmatthew@markslaptop.
5455
monty@bitch.mysql.fi
5556
monty@butch.
5657
monty@donna.mysql.fi
@@ -67,6 +68,7 @@ mwagner@cash.mwagner.org
6768
mwagner@evoq.mwagner.org
6869
mwagner@work.mysql.com
6970
mysql@home.(none)
71+
mysqldev@build.mysql2.com
7072
nick@mysql.com
7173
nick@nick.leippe.com
7274
papa@gbichot.local
@@ -75,6 +77,7 @@ paul@teton.kitebird.com
7577
pem@mysql.com
7678
peter@linux.local
7779
peter@mysql.com
80+
peterg@mysql.com
7881
pgulutzan@linux.local
7982
ram@gw.udmsearch.izhnet.ru
8083
ram@mysql.r18.ru

Build-tools/Do-compile

+5-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,11 @@ if ($opt_stage <= 3)
276276
my $flags= "";
277277
log_timestamp();
278278
log_system("rm -fr mysql-3* mysql-4* $pwd/$host/*.tar.gz");
279-
log_system("nm -n sql/mysqld | gzip -9 -v 2>&1 > sql/mysqld.sym.gz | cat");
279+
# No need to add the debug symbols, if the binaries are not stripped (saves space)
280+
unless ($opt_with_debug || $opt_no_strip)
281+
{
282+
log_system("nm -n sql/mysqld | gzip -9 -v 2>&1 > sql/mysqld.sym.gz | cat");
283+
}
280284

281285
$flags.= "--no-strip" if ($opt_no_strip || $opt_with_debug);
282286
check_system("scripts/make_binary_distribution --tmp=$opt_tmp --suffix=$opt_suffix $flags",".tar.gz created");

Docs/Makefile.am

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ EXTRA_DIST = $(noinst_SCRIPTS) $(BUILT_SOURCES) mysqld_error.txt \
2727
all: $(targets) txt_files
2828

2929
txt_files: ../INSTALL-SOURCE ../COPYING ../COPYING.LIB \
30-
INSTALL-BINARY
30+
INSTALL-BINARY ../support-files/MacOSX/ReadMe.txt
3131

3232
CLEAN_FILES: $(BUILD_SOURCES)
3333
touch $(BUILD_SOURCES)
@@ -254,5 +254,8 @@ INSTALL-BINARY: mysql.info $(GT)
254254
../COPYING.LIB: mysql.info $(GT)
255255
perl -w $(GT) mysql.info "LGPL license" "Function Index" > $@
256256

257+
../support-files/MacOSX/ReadMe.txt: mysql.info $(GT)
258+
perl -w $(GT) mysql.info "Mac OS X installation" "Netware installation" > $@
259+
257260
# Don't update the files from bitkeeper
258261
%::SCCS/s.%

0 commit comments

Comments
 (0)