auto-import changelog data from mysql-3.23.41-1.src.rpm
Tue Aug 14 2001 Trond Eivind Glomsrød <teg@redhat.com> 3.23.41-1 - 3.23.41 bugfix release - disable innodb, to avoid the broken updates - Use "mysqladmin flush_logs" instead of kill -HUP in logrotate script (#51711)
This commit is contained in:
parent
a6c3d38434
commit
01baec9a85
@ -1 +1 @@
|
|||||||
mysql-3.23.40.tar.bz2
|
mysql-3.23.41.tar.bz2
|
||||||
|
49
mysql.spec
49
mysql.spec
@ -1,5 +1,5 @@
|
|||||||
Name: mysql
|
Name: mysql
|
||||||
Version: 3.23.40
|
Version: 3.23.41
|
||||||
Release: 1
|
Release: 1
|
||||||
Source0: http://www.mysql.com/Downloads/MySQL-3.23/mysql-%{version}.tar.bz2
|
Source0: http://www.mysql.com/Downloads/MySQL-3.23/mysql-%{version}.tar.bz2
|
||||||
Source1: mysql.init
|
Source1: mysql.init
|
||||||
@ -7,7 +7,7 @@ Source2: mysql.logrotate
|
|||||||
Source3: my.cnf
|
Source3: my.cnf
|
||||||
URL: http://www.mysql.com
|
URL: http://www.mysql.com
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
Summary: MySQL client program and shared library
|
Summary: MySQL client programs and shared library.
|
||||||
License: GPL/LGPL
|
License: GPL/LGPL
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
Prereq: /sbin/ldconfig, /sbin/install-info, grep, fileutils, chkconfig
|
Prereq: /sbin/ldconfig, /sbin/install-info, grep, fileutils, chkconfig
|
||||||
@ -18,15 +18,15 @@ Conflicts: MySQL
|
|||||||
Obsoletes: mysql-client mysql-bench mysql-perl
|
Obsoletes: mysql-client mysql-bench mysql-perl
|
||||||
|
|
||||||
%description
|
%description
|
||||||
MySQL is a multi-user, multi-threaded SQL database server. SQL is
|
MySQL is a multi-user, multi-threaded SQL database server. MySQL is a
|
||||||
the most popular database language in the world. MySQL is a client/server
|
client/server implementation consisting of a server daemon (mysqld)
|
||||||
implementation that consists of a server daemon mysqld and many different
|
and many different client programs and libraries. This package
|
||||||
client programs and libraries. This package contains the MySQL client
|
contains the MySQL client programs, the client shared library, and
|
||||||
programs, the client shared library, and generic MySQL files.
|
generic MySQL files.
|
||||||
|
|
||||||
%package server
|
%package server
|
||||||
|
|
||||||
Summary: MySQL server
|
Summary: The MySQL server and related files.
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
Prereq: /sbin/chkconfig, /usr/sbin/useradd, /usr/sbin/userdel
|
Prereq: /sbin/chkconfig, /usr/sbin/useradd, /usr/sbin/userdel
|
||||||
@ -34,27 +34,24 @@ Requires: mysql = %{version}, sh-utils
|
|||||||
Conflicts: MySQL-server
|
Conflicts: MySQL-server
|
||||||
|
|
||||||
%description server
|
%description server
|
||||||
MySQL is a true multi-user, multi-threaded SQL database server. SQL is
|
MySQL is a true multi-user, multi-threaded SQL database server. MySQL
|
||||||
the most popular database language in the world. MySQL is a client/server
|
is a client/server implementation that consists of a server daemon
|
||||||
implementation that consists of a server daemon mysqld and many different
|
(mysqld) and many different client programs and libraries. This
|
||||||
client programs and libraries. This package contains the MySQL server and
|
package contains the MySQL server and some accompanying files and
|
||||||
some accompanying files and directories.
|
directories.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
|
|
||||||
Summary: MySQL devel
|
Summary: Files for development of MySQL applications.
|
||||||
License: LGPL
|
License: LGPL
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
Conflicts: MySQL-devel
|
Conflicts: MySQL-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
MySQL is a true multi-user, multi-threaded SQL database server. SQL is
|
MySQL is a true multi-user, multi-threaded SQL database server. This
|
||||||
the most popular database language in the world. MySQL is a client/server
|
package contains the libraries and header files that are needed for
|
||||||
implementation that consists of a server daemon mysqld and many different
|
developing MySQL applications.
|
||||||
client programs and libraries. This package contains the libraries and
|
|
||||||
header files that are needed for developing your own MySQL applications.
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
@ -72,12 +69,12 @@ CXXFLAGS="%{optflags} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE"
|
|||||||
--with-unix-socket-path=/var/lib/mysql/mysql.sock \
|
--with-unix-socket-path=/var/lib/mysql/mysql.sock \
|
||||||
--with-mysqld-user="mysql" \
|
--with-mysqld-user="mysql" \
|
||||||
--with-extra-charsets=all \
|
--with-extra-charsets=all \
|
||||||
--with-innodb \
|
--disable-assember \
|
||||||
--enable-assembler \
|
|
||||||
%ifnarch alpha
|
%ifnarch alpha
|
||||||
--with-berkeley-db --enable-large-files=yes --enable-largefile=yes \
|
--with-berkeley-db --enable-large-files=yes --enable-largefile=yes \
|
||||||
%endif
|
%endif
|
||||||
--with-thread-safe-client
|
--with-thread-safe-client \
|
||||||
|
--enable-assembler
|
||||||
|
|
||||||
make
|
make
|
||||||
make check
|
make check
|
||||||
@ -202,6 +199,12 @@ fi
|
|||||||
/usr/lib/mysql/libmysqlclient*.so
|
/usr/lib/mysql/libmysqlclient*.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Aug 14 2001 Trond Eivind Glomsrød <teg@redhat.com> 3.23.41-1
|
||||||
|
- 3.23.41 bugfix release
|
||||||
|
- disable innodb, to avoid the broken updates
|
||||||
|
- Use "mysqladmin flush_logs" instead of kill -HUP in logrotate
|
||||||
|
script (#51711)
|
||||||
|
|
||||||
* Sat Jul 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
* Sat Jul 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
||||||
- 3.23.40, bugfix release
|
- 3.23.40, bugfix release
|
||||||
- Add zlib-devel to buildrequires:
|
- Add zlib-devel to buildrequires:
|
||||||
|
Loading…
Reference in New Issue
Block a user