mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
9424f80f19
BitKeeper/etc/logging_ok: auto-union Build-tools/Do-linux-build: Auto merged sql/opt_range.cc: Auto merged sql/sql_base.cc: Auto merged
28 lines
978 B
Bash
Executable file
28 lines
978 B
Bash
Executable file
#! /bin/sh
|
|
|
|
set -e -x
|
|
|
|
# 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
|
|
OTHER_LIBC_DIR=/usr/local/mysql-glibc
|
|
OTHER_LIBC=""
|
|
if [ -d OTHER_LIBC_DIR ] ; then
|
|
OTHER_LIBC="--with-other-libc=$OTHER_LIBC_DIR"
|
|
fi
|
|
|
|
BUILD/compile-pentium-max $OTHER_LIBC \
|
|
--with-comment="Official MySQL Binary" \
|
|
--prefix=/usr/local/mysql --with-extra-charset=complex \
|
|
--enable-thread-safe-client --enable-local-infile \
|
|
--with-server-suffix=-max
|
|
nm -n sql/mysqld | gzip -9 -v 2>&1 > sql/mysqld.sym.gz
|
|
scripts/make_binary_distribution
|
|
make dist
|
|
Build-tools/Do-rpm --local
|
|
BUILD/compile-pentium --with-other-libc=$OTHER_LIBC_DIR \
|
|
--with-comment="Official MySQL Binary" \
|
|
--prefix=/usr/local/mysql --with-extra-charset=complex \
|
|
--enable-thread-safe-client --enable-local-infile
|
|
nm -n sql/mysqld | gzip -9 -v 2>&1 > sql/mysqld.sym.gz
|
|
scripts/make_binary_distribution
|