mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
d41b34bf95
netware/BUILD/compile-AUTOTOOLS: Fixes for Netware builds: 1) The "autotools" used there have problems with changing variables in Makefiles after the initial setting. 2) "storage/innobase" does not need an autotool run any more. 3) "automake --verbose" may be able to help if new problems arise. netware/BUILD/compile-netware-START: The CSV engine is now mandatory in 5.1, must not be de-configured. netware/BUILD/mwenv: When testing for a possibly empty shell variable, it is mandatory to use quotes! netware/BUILD/nwbootstrap: The "mwenv" file has been changed, reflect these changes here: 1) It is no longer necessary to set the variables WINE_BUILD_DIR, BUILD_DIR, and VERSION. 2) The handling of MYDEV there has changed, the "export" line may be indented.
27 lines
363 B
Bash
Executable file
27 lines
363 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# debug
|
|
#set -x
|
|
|
|
# stop on errors
|
|
set -e
|
|
|
|
if test ! -r ./sql/mysqld.cc
|
|
then
|
|
echo "you must start from the top source directory"
|
|
exit 1
|
|
fi
|
|
|
|
path=`dirname $0`
|
|
|
|
# stop on errors
|
|
set -e
|
|
|
|
base_configs=" \
|
|
--host=i686-pc-netware \
|
|
--enable-local-infile \
|
|
--with-extra-charsets=all \
|
|
--prefix=N:/mysql \
|
|
--without-mysqlmanager \
|
|
--without-man \
|
|
"
|