auto-import changelog data from mysql-3.23.51-4.src.rpm
Mon Jul 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.51-4 - rebuild Thu Jul 18 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.51-3 - Fix #63543 and #63542 Thu Jul 11 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.51-2 - Turn off bdb on PPC(#68591) - Turn off the assembly optimizations, for safety. Wed Jun 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.51-1 - Work around annoying auto* thinking this is a crosscompile - 3.23.51 Fri Jun 21 2002 Tim Powers <timp@redhat.com> - automated rebuild Mon Jun 10 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.50-2 - Add dependency on perl-DBI and perl-DBD-MySQL (#66349) Thu May 30 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.50-1 - 3.23.50 Thu May 23 2002 Tim Powers <timp@redhat.com> - automated rebuild Mon May 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.49-4 - Rebuild - Don't set CXX to gcc, it doesn't work anymore - Exclude Alpha
This commit is contained in:
parent
2fa19b7256
commit
f031fece04
@ -1 +1 @@
|
|||||||
mysql-3.23.49.tar.bz2
|
mysql-3.23.51.tar.bz2
|
||||||
|
55
mysql.spec
55
mysql.spec
@ -1,12 +1,13 @@
|
|||||||
Name: mysql
|
Name: mysql
|
||||||
Version: 3.23.49
|
Version: 3.23.51
|
||||||
Release: 3
|
Release: 4
|
||||||
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
|
||||||
Source2: mysql.logrotate
|
Source2: mysql.logrotate
|
||||||
Source3: my.cnf
|
Source3: my.cnf
|
||||||
# Working around perl dependency checking bug in rpm FTTB. Remove later.
|
# Working around perl dependency checking bug in rpm FTTB. Remove later.
|
||||||
Source999: filter-requires-mysql.sh
|
Source999: filter-requires-mysql.sh
|
||||||
|
Patch0: mysql-3.23.51-manfixes.patch
|
||||||
URL: http://www.mysql.com
|
URL: http://www.mysql.com
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
Summary: MySQL client programs and shared library.
|
Summary: MySQL client programs and shared library.
|
||||||
@ -17,7 +18,9 @@ BuildRequires: gperf, perl, readline-devel
|
|||||||
BuildRequires: gcc-c++, ncurses-devel, zlib-devel
|
BuildRequires: gcc-c++, ncurses-devel, zlib-devel
|
||||||
Requires: bash
|
Requires: bash
|
||||||
Conflicts: MySQL
|
Conflicts: MySQL
|
||||||
|
Requires: perl-DBI, perl-DBD-MySQL
|
||||||
Obsoletes: mysql-client mysql-bench mysql-perl
|
Obsoletes: mysql-client mysql-bench mysql-perl
|
||||||
|
ExcludeArch: alpha
|
||||||
|
|
||||||
# Working around perl dependency checking bug in rpm FTTB. Remove later.
|
# Working around perl dependency checking bug in rpm FTTB. Remove later.
|
||||||
%define __find_requires %{SOURCE999}
|
%define __find_requires %{SOURCE999}
|
||||||
@ -62,16 +65,17 @@ developing MySQL applications.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
|
%patch0 -p1
|
||||||
%build
|
%build
|
||||||
CFLAGS="%{optflags} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE"
|
CFLAGS="%{optflags} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE"
|
||||||
CXXFLAGS="%{optflags} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-rtti -fno-exceptions"
|
CXXFLAGS="%{optflags} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-rtti -fno-exceptions"
|
||||||
CXX=gcc
|
export CFLAGS CXXFLAGS
|
||||||
export CFLAGS CXXFLAGS CXX
|
|
||||||
|
|
||||||
#CPPFLAGS="$CFLAGS"
|
#CPPFLAGS="$CFLAGS"
|
||||||
#export CPPFLAGS
|
#export CPPFLAGS
|
||||||
|
|
||||||
%configure --without-debug \
|
#configure --without-debug \
|
||||||
|
./configure --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
||||||
--without-readline \
|
--without-readline \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--with-extra-charsets=complex \
|
--with-extra-charsets=complex \
|
||||||
@ -81,11 +85,11 @@ export CFLAGS CXXFLAGS CXX
|
|||||||
--with-mysqld-user="mysql" \
|
--with-mysqld-user="mysql" \
|
||||||
--with-extra-charsets=all \
|
--with-extra-charsets=all \
|
||||||
--with-innodb \
|
--with-innodb \
|
||||||
%ifnarch alpha
|
--enable-large-files=yes --enable-largefile=yes \
|
||||||
--with-berkeley-db --enable-large-files=yes --enable-largefile=yes \
|
%ifnarch alpha ppc
|
||||||
|
--with-berkeley-db \
|
||||||
%endif
|
%endif
|
||||||
--with-thread-safe-client \
|
--with-thread-safe-client
|
||||||
--enable-assembler
|
|
||||||
|
|
||||||
make
|
make
|
||||||
make check
|
make check
|
||||||
@ -235,7 +239,38 @@ fi
|
|||||||
/usr/lib/mysql/libmysqlclient*.so
|
/usr/lib/mysql/libmysqlclient*.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Apr 8 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.49-2
|
* Mon Jul 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.51-4
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Thu Jul 18 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.51-3
|
||||||
|
- Fix #63543 and #63542
|
||||||
|
|
||||||
|
* Thu Jul 11 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.51-2
|
||||||
|
- Turn off bdb on PPC(#68591)
|
||||||
|
- Turn off the assembly optimizations, for safety.
|
||||||
|
|
||||||
|
* Wed Jun 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.51-1
|
||||||
|
- Work around annoying auto* thinking this is a crosscompile
|
||||||
|
- 3.23.51
|
||||||
|
|
||||||
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||||
|
- automated rebuild
|
||||||
|
|
||||||
|
* Mon Jun 10 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.50-2
|
||||||
|
- Add dependency on perl-DBI and perl-DBD-MySQL (#66349)
|
||||||
|
|
||||||
|
* Thu May 30 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.50-1
|
||||||
|
- 3.23.50
|
||||||
|
|
||||||
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
||||||
|
- automated rebuild
|
||||||
|
|
||||||
|
* Mon May 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.49-4
|
||||||
|
- Rebuild
|
||||||
|
- Don't set CXX to gcc, it doesn't work anymore
|
||||||
|
- Exclude Alpha
|
||||||
|
|
||||||
|
* Mon Apr 8 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.23.49-3
|
||||||
- Add the various .cnf examples as doc files to mysql-server (#60349)
|
- Add the various .cnf examples as doc files to mysql-server (#60349)
|
||||||
- Don't include manual.ps, it's just 200 bytes with a URL inside (#60349)
|
- Don't include manual.ps, it's just 200 bytes with a URL inside (#60349)
|
||||||
- Don't include random files in /usr/share/mysql (#60349)
|
- Don't include random files in /usr/share/mysql (#60349)
|
||||||
|
Loading…
Reference in New Issue
Block a user