mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Tidy previous, put example storage engine back as it's used by tests.
This commit is contained in:
parent
df91ff571b
commit
c2bd07ca9c
1 changed files with 15 additions and 5 deletions
|
@ -319,7 +319,6 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-$PATH}\" \
|
|||
--with-blackhole-storage-engine \
|
||||
--with-federated-storage-engine \
|
||||
--without-plugin-daemon_example \
|
||||
--without-plugin-example \
|
||||
--with-partition \
|
||||
--with-big-tables \
|
||||
%if %{WITH_BUNDLED_ZLIB}
|
||||
|
@ -715,7 +714,11 @@ fi
|
|||
%attr(755, root, root) %{_bindir}/resolve_stack_dump
|
||||
%attr(755, root, root) %{_bindir}/resolveip
|
||||
|
||||
%attr(755, root, root) %{_libdir}/plugin/*.so*
|
||||
%attr(755, root, root) %{_libdir}/mysql/plugin/ha_example.so*
|
||||
%if %{WITHOUT_INNODB_PLUGIN}
|
||||
%else
|
||||
%attr(755, root, root) %{_libdir}/mysql/plugin/ha_innodb_plugin.so*
|
||||
%endif
|
||||
|
||||
%attr(755, root, root) %{_sbindir}/mysqld
|
||||
%attr(755, root, root) %{_sbindir}/mysqld-debug
|
||||
|
@ -842,8 +845,15 @@ fi
|
|||
%{_libdir}/mysql/libvio.a
|
||||
%{_libdir}/mysql/libz.a
|
||||
%{_libdir}/mysql/libz.la
|
||||
%{_libdir}/plugin/*.a
|
||||
%{_libdir}/plugin/*.la
|
||||
%{_libdir}/mysql/plugin/ha_example.a
|
||||
%{_libdir}/mysql/plugin/ha_example.la
|
||||
%if %{WITHOUT_INNODB_PLUGIN}
|
||||
%else
|
||||
%{_libdir}/mysql/plugin/ha_innodb_plugin.a
|
||||
%{_libdir}/mysql/plugin/ha_innodb_plugin.la
|
||||
%endif
|
||||
%{_libdir}/mysql/plugin/mypluglib.a
|
||||
%{_libdir}/mysql/plugin/mypluglib.la
|
||||
|
||||
%files shared
|
||||
%defattr(-, root, root, 0755)
|
||||
|
@ -880,7 +890,7 @@ fi
|
|||
* Fri Aug 21 2009 Jonathan Perkin <jperkin@sun.com>
|
||||
|
||||
- Install plugin libraries in appropriate packages.
|
||||
- Disable example plugins.
|
||||
- Disable libdaemon_example plugin.
|
||||
|
||||
* Thu Aug 20 2009 Jonathan Perkin <jperkin@stripped>
|
||||
|
||||
|
|
Loading…
Reference in a new issue