mirror of
https://github.com/MariaDB/server.git
synced 2025-11-05 01:43:31 +03:00
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.
28 lines
363 B
Bash
Executable File
28 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 \
|
|
"
|