Commit bff0bbeb authored by serg@serg.mylan's avatar serg@serg.mylan

merged

parents d975e124 531eb443
...@@ -203,9 +203,6 @@ INSTALL-BINARY: mysql.info $(GT) ...@@ -203,9 +203,6 @@ INSTALL-BINARY: mysql.info $(GT)
../COPYING: mysql.info $(GT) ../COPYING: mysql.info $(GT)
perl -w $(GT) mysql.info "GPL license" "LGPL license" > $@ perl -w $(GT) mysql.info "GPL license" "LGPL license" > $@
../COPYING.LIB: mysql.info $(GT)
perl -w $(GT) mysql.info "LGPL license" "Function Index" > $@
../support-files/MacOSX/ReadMe.txt: mysql.info $(GT) ../support-files/MacOSX/ReadMe.txt: mysql.info $(GT)
perl -w $(GT) mysql.info "Mac OS X installation" "NetWare installation" > $@ perl -w $(GT) mysql.info "Mac OS X installation" "NetWare installation" > $@
......
...@@ -19,9 +19,8 @@ ...@@ -19,9 +19,8 @@
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = foreign
# These are built from source in the Docs directory # These are built from source in the Docs directory
EXTRA_DIST = INSTALL-SOURCE README \ EXTRA_DIST = INSTALL-SOURCE README COPYING zlib
COPYING COPYING.LIB zlib SUBDIRS = . include @docs_dirs@ \
SUBDIRS = . include @docs_dirs@ \
@readline_topdir@ sql-common \ @readline_topdir@ sql-common \
@thread_dirs@ pstack @sql_client_dirs@ \ @thread_dirs@ pstack @sql_client_dirs@ \
@sql_server_dirs@ scripts man tests \ @sql_server_dirs@ scripts man tests \
......
...@@ -4,11 +4,11 @@ connection slave; ...@@ -4,11 +4,11 @@ connection slave;
select get_lock("a",5); select get_lock("a",5);
connection master; connection master;
create table t1(n int); create table t1(n int);
insert into t1 values(1+get_lock("a",10)*0); insert into t1 values(1+get_lock("a",15)*0);
insert into t1 values(2); insert into t1 values(2);
save_master_pos; save_master_pos;
connection slave; connection slave;
sleep 3; # can't sync_with_master as we should be blocked --real_sleep 3; # can't sync_with_master as we should be blocked
stop slave; stop slave;
select * from t1; select * from t1;
--replace_result $MASTER_MYPORT MASTER_MYPORT --replace_result $MASTER_MYPORT MASTER_MYPORT
......
...@@ -85,7 +85,7 @@ do ...@@ -85,7 +85,7 @@ do
fi fi
done done
for i in COPYING COPYING.LIB README Docs/INSTALL-BINARY \ for i in COPYING README Docs/INSTALL-BINARY \
MySQLEULA.txt LICENSE.doc README.NW MySQLEULA.txt LICENSE.doc README.NW
do do
if [ -f $i ] if [ -f $i ]
......
...@@ -282,7 +282,7 @@ touch $BASE/innobase/ib_config.h ...@@ -282,7 +282,7 @@ touch $BASE/innobase/ib_config.h
# #
cd $SOURCE cd $SOURCE
for i in COPYING COPYING.LIB ChangeLog README \ for i in COPYING ChangeLog README \
INSTALL-SOURCE INSTALL-WIN \ INSTALL-SOURCE INSTALL-WIN \
INSTALL-WIN-SOURCE \ INSTALL-WIN-SOURCE \
Docs/manual_toc.html Docs/manual.html \ Docs/manual_toc.html Docs/manual.html \
......
...@@ -286,7 +286,7 @@ Release Notes: ...@@ -286,7 +286,7 @@ Release Notes:
* --old_server: mysqlaccess will now use a full where clause when * --old_server: mysqlaccess will now use a full where clause when
retrieving information from the MySQL-server. If retrieving information from the MySQL-server. If
you are connecting to an old server (before v3.21) you are connecting to an old server (before v3.21)
use the option --old_server. then use the option --old_server.
2.03 : (1998-02-27) 2.03 : (1998-02-27)
- bugfix: - bugfix:
* in Host::MatchTemplate: incorrect match if host-field was left empty. * in Host::MatchTemplate: incorrect match if host-field was left empty.
......
...@@ -509,7 +509,7 @@ All benchmarks takes the following options: ...@@ -509,7 +509,7 @@ All benchmarks takes the following options:
--socket='socket' --socket='socket'
If the database supports connecting through a Unix socket, If the database supports connecting through a Unix socket,
use this socket to connect then use this socket to connect
--regions --regions
This is a test specific option that is only used when debugging a test. This is a test specific option that is only used when debugging a test.
......
...@@ -120,7 +120,6 @@ Este pacote cont ...@@ -120,7 +120,6 @@ Este pacote cont
%package devel %package devel
Release: %{release} Release: %{release}
Requires: %{name}-client
Summary: MySQL - Development header files and libraries Summary: MySQL - Development header files and libraries
Group: Applications/Databases Group: Applications/Databases
Summary(pt_BR): MySQL - Medies de desempenho Summary(pt_BR): MySQL - Medies de desempenho
...@@ -446,7 +445,7 @@ fi ...@@ -446,7 +445,7 @@ fi
%files server %files server
%defattr(755 root, root) %defattr(755 root, root)
%doc %attr(644, root, root) COPYING COPYING.LIB README %doc %attr(644, root, root) COPYING README
%doc %attr(644, root, root) Docs/manual.{html,ps,texi,txt} Docs/manual_toc.html %doc %attr(644, root, root) Docs/manual.{html,ps,texi,txt} Docs/manual_toc.html
%doc %attr(644, root, root) support-files/my-*.cnf %doc %attr(644, root, root) support-files/my-*.cnf
...@@ -569,6 +568,11 @@ fi ...@@ -569,6 +568,11 @@ fi
# The spec file changelog only includes changes made to the spec file # The spec file changelog only includes changes made to the spec file
# itself # itself
%changelog %changelog
* Fri Nov 21 2003 Lenz Grimmer <lenz@mysql.com>
- removed dependency on MySQL-client from the MySQL-devel subpackage
as it is not really required. (BUG 1610)
* Fri Aug 29 2003 Lenz Grimmer <lenz@mysql.com> * Fri Aug 29 2003 Lenz Grimmer <lenz@mysql.com>
- Fixed BUG 1162 (removed macro names from the changelog) - Fixed BUG 1162 (removed macro names from the changelog)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment