diff options
author | unknown <lenz@mysql.com> | 2002-05-03 12:31:25 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-05-03 12:31:25 +0200 |
commit | 7c510b93c64773b609b97f04ae2d19c84b88045b (patch) | |
tree | f018e0ba3a16dbef55c7195250c190640678514d /support-files/mysql.server.sh | |
parent | 3bf08c41b2451475ea4f9676c36c151ef567abc7 (diff) | |
download | mariadb-git-7c510b93c64773b609b97f04ae2d19c84b88045b.tar.gz |
Reworked the RPM spec file and added several fixes to make the
build scripts work again.
BUILD/compile-pentium-max:
Added "--with-embedded-server" to have the libmysqld files included
in the source distribution when using "make dist"
Build-tools/Do-linux-build:
Only use the "--with-other-libc" parameter, if another libc actually
exists, since this will also force static linking, which does not work
together with OpenSSL
Makefile.am:
Removed hard-coded file name for TAR, let configure do this instead
(many systems actually ship GNU tar installed as "tar" instead of
"gtar")
configure.in:
Added check for GNU tar named "gtar", fall back to "tar" if "gtar"
was not found (and hope, that it's a GNU tar as well - this should
probably be checked more properly)
include/Makefile.am:
Added "my_semaphore.h" to pkginclude_HEADERS since it was missing
from the distribution
strings/Makefile.am:
Added "longlong2str.c" since it was missing from the distribution
support-files/mysql.server.sh:
Added LSB-compatible header info to make init script more portable
support-files/mysql.spec.sh:
- Use more RPM macros (e.g. infodir, mandir) to make the spec
file more portable
- reorganized the installation of documentation files: let RPM
take care of this
- reorganized the file list: actually install man pages along
with the binaries of the respective subpackage
- don't include libmysqld.a in the devel subpackage as well, if we
have a special "embedded" subpackage
- reworked the package descriptions
Diffstat (limited to 'support-files/mysql.server.sh')
-rw-r--r-- | support-files/mysql.server.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/support-files/mysql.server.sh b/support-files/mysql.server.sh index eed749bf5b2..e6a32d91e77 100644 --- a/support-files/mysql.server.sh +++ b/support-files/mysql.server.sh @@ -13,6 +13,18 @@ # chkconfig: 2345 90 90 # description: A very fast and reliable SQL database engine. +# Comments to support LSB init script conventions +### BEGIN INIT INFO +# Provides: mysql +# Required-Start: $local_fs $network $remote_fs +# Required-Stop: $local_fs $network $remote_fs +# Default-Start: 3 5 +# Default-Stop: 3 5 +# Short-Description: start and stop MySLQ +# Description: MySQL is a very fast and reliable SQL database engine. +### END INIT INFO + + # The following variables are only set for letting mysql.server find things. # If you want to affect other MySQL variables, you should make your changes # in the /etc/my.cnf or other configuration files. |