diff options
author | greg@mysql.com <> | 2003-03-03 23:04:36 -0500 |
---|---|---|
committer | greg@mysql.com <> | 2003-03-03 23:04:36 -0500 |
commit | 61f280a9785e8fa049ca3dc1cf23dbd07cbae6fd (patch) | |
tree | 7358046cedc3b7efaa5946e9a18388465420626d /netware/BUILD/compile-netware-START | |
parent | 8fb09059c1a2856f683a6112baf5c8ea22b3441a (diff) | |
download | mariadb-git-61f280a9785e8fa049ca3dc1cf23dbd07cbae6fd.tar.gz |
New build scripts for NetWare
Diffstat (limited to 'netware/BUILD/compile-netware-START')
-rw-r--r-- | netware/BUILD/compile-netware-START | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/netware/BUILD/compile-netware-START b/netware/BUILD/compile-netware-START new file mode 100644 index 00000000000..2941d8868e4 --- /dev/null +++ b/netware/BUILD/compile-netware-START @@ -0,0 +1,23 @@ +#! /bin/sh + +#debug +#set -x + +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 \ + " + |