2003-03-03 23:04:36 -05:00
|
|
|
#! /bin/sh
|
|
|
|
|
2003-04-24 18:15:52 -04:00
|
|
|
# debug
|
2003-03-03 23:04:36 -05:00
|
|
|
#set -x
|
|
|
|
|
2003-04-24 18:15:52 -04:00
|
|
|
# stop on errors
|
|
|
|
set -e
|
|
|
|
|
2003-03-03 23:04:36 -05:00
|
|
|
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 \
|
2005-01-13 19:24:54 +02:00
|
|
|
--without-mysqlmanager \
|
|
|
|
--without-man \
|
2006-03-26 21:19:43 -05:00
|
|
|
--without-csv-storage-engine \
|
2003-03-03 23:04:36 -05:00
|
|
|
"
|