Apply changes from mysql-5.1.38-release clone:
- Add conditionals for bundled zlib and innodb plugin. - Apply patch from bug#46834 to install the test suite in RPMs. - Add plugins to RPMs. Disable example plugins.
This commit is contained in:
parent
7ae2baea09
commit
c4fa4f31ae
@ -31,6 +31,20 @@
|
|||||||
%{?_with_yassl:%define YASSL_BUILD 1}
|
%{?_with_yassl:%define YASSL_BUILD 1}
|
||||||
%{!?_with_yassl:%define YASSL_BUILD 0}
|
%{!?_with_yassl:%define YASSL_BUILD 0}
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# use "rpmbuild --with bundled_zlib" or "rpm --define '_with_bundled_zlib 1'"
|
||||||
|
# (for RPM 3.x) to build using the bundled zlib (off by default)
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
%{?_with_bundled_zlib:%define WITH_BUNDLED_ZLIB 1}
|
||||||
|
%{!?_with_bundled_zlib:%define WITH_BUNDLED_ZLIB 0}
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
# use "rpmbuild --without innodb_plugin" or "rpm --define '_without_innodb_plugin 1'"
|
||||||
|
# (for RPM 3.x) to not build the innodb plugin (on by default with innodb builds)
|
||||||
|
# ----------------------------------------------------------------------
|
||||||
|
%{?_without_innodb_plugin:%define WITHOUT_INNODB_PLUGIN 1}
|
||||||
|
%{!?_without_innodb_plugin:%define WITHOUT_INNODB_PLUGIN 0}
|
||||||
|
|
||||||
# use "rpmbuild --with cluster" or "rpm --define '_with_cluster 1'" (for RPM 3.x)
|
# use "rpmbuild --with cluster" or "rpm --define '_with_cluster 1'" (for RPM 3.x)
|
||||||
# to build with cluster support (off by default)
|
# to build with cluster support (off by default)
|
||||||
%{?_with_cluster:%define CLUSTER_BUILD 1}
|
%{?_with_cluster:%define CLUSTER_BUILD 1}
|
||||||
@ -292,6 +306,9 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-$PATH}\" \
|
|||||||
--enable-thread-safe-client \
|
--enable-thread-safe-client \
|
||||||
--with-readline \
|
--with-readline \
|
||||||
--with-innodb \
|
--with-innodb \
|
||||||
|
%if %{WITHOUT_INNODB_PLUGIN}
|
||||||
|
--without-plugin-innodb_plugin \
|
||||||
|
%endif
|
||||||
%if %{CLUSTER_BUILD}
|
%if %{CLUSTER_BUILD}
|
||||||
--with-ndbcluster \
|
--with-ndbcluster \
|
||||||
%else
|
%else
|
||||||
@ -301,8 +318,13 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-$PATH}\" \
|
|||||||
--with-csv-storage-engine \
|
--with-csv-storage-engine \
|
||||||
--with-blackhole-storage-engine \
|
--with-blackhole-storage-engine \
|
||||||
--with-federated-storage-engine \
|
--with-federated-storage-engine \
|
||||||
|
--without-plugin-daemon_example \
|
||||||
|
--without-plugin-example \
|
||||||
--with-partition \
|
--with-partition \
|
||||||
--with-big-tables \
|
--with-big-tables \
|
||||||
|
%if %{WITH_BUNDLED_ZLIB}
|
||||||
|
--with-zlib-dir=bundled \
|
||||||
|
%endif
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
"
|
"
|
||||||
make
|
make
|
||||||
@ -426,7 +448,7 @@ install -d $RBR%{_sbindir}
|
|||||||
|
|
||||||
|
|
||||||
# Install all binaries
|
# Install all binaries
|
||||||
(cd $MBD && make install DESTDIR=$RBR benchdir_root=%{_datadir})
|
(cd $MBD && make install DESTDIR=$RBR testroot=%{_datadir})
|
||||||
# Old packages put shared libs in %{_libdir}/ (not %{_libdir}/mysql), so do
|
# Old packages put shared libs in %{_libdir}/ (not %{_libdir}/mysql), so do
|
||||||
# the same here.
|
# the same here.
|
||||||
mv $RBR/%{_libdir}/mysql/*.so* $RBR/%{_libdir}/
|
mv $RBR/%{_libdir}/mysql/*.so* $RBR/%{_libdir}/
|
||||||
@ -693,6 +715,8 @@ fi
|
|||||||
%attr(755, root, root) %{_bindir}/resolve_stack_dump
|
%attr(755, root, root) %{_bindir}/resolve_stack_dump
|
||||||
%attr(755, root, root) %{_bindir}/resolveip
|
%attr(755, root, root) %{_bindir}/resolveip
|
||||||
|
|
||||||
|
%attr(755, root, root) %{_libdir}/plugin/*.so*
|
||||||
|
|
||||||
%attr(755, root, root) %{_sbindir}/mysqld
|
%attr(755, root, root) %{_sbindir}/mysqld
|
||||||
%attr(755, root, root) %{_sbindir}/mysqld-debug
|
%attr(755, root, root) %{_sbindir}/mysqld-debug
|
||||||
%attr(755, root, root) %{_sbindir}/mysqlmanager
|
%attr(755, root, root) %{_sbindir}/mysqlmanager
|
||||||
@ -818,6 +842,8 @@ fi
|
|||||||
%{_libdir}/mysql/libvio.a
|
%{_libdir}/mysql/libvio.a
|
||||||
%{_libdir}/mysql/libz.a
|
%{_libdir}/mysql/libz.a
|
||||||
%{_libdir}/mysql/libz.la
|
%{_libdir}/mysql/libz.la
|
||||||
|
%{_libdir}/plugin/*.a
|
||||||
|
%{_libdir}/plugin/*.la
|
||||||
|
|
||||||
%files shared
|
%files shared
|
||||||
%defattr(-, root, root, 0755)
|
%defattr(-, root, root, 0755)
|
||||||
@ -847,6 +873,19 @@ fi
|
|||||||
# itself - note that they must be ordered by date (important when
|
# itself - note that they must be ordered by date (important when
|
||||||
# merging BK trees)
|
# merging BK trees)
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 24 2009 Jonathan Perkin <jperkin@sun.com>
|
||||||
|
|
||||||
|
- Add conditionals for bundled zlib and innodb plugin
|
||||||
|
|
||||||
|
* Fri Aug 21 2009 Jonathan Perkin <jperkin@sun.com>
|
||||||
|
|
||||||
|
- Install plugin libraries in appropriate packages.
|
||||||
|
- Disable example plugins.
|
||||||
|
|
||||||
|
* Thu Aug 20 2009 Jonathan Perkin <jperkin@stripped>
|
||||||
|
|
||||||
|
- Update variable used for mysql-test suite location to match source.
|
||||||
|
|
||||||
* Fri Nov 07 2008 Joerg Bruehe <joerg@mysql.com>
|
* Fri Nov 07 2008 Joerg Bruehe <joerg@mysql.com>
|
||||||
|
|
||||||
- Correct yesterday's fix, so that it also works for the last flag,
|
- Correct yesterday's fix, so that it also works for the last flag,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user