diff options
author | unknown <greg@mysql.com> | 2003-09-30 23:14:07 -0400 |
---|---|---|
committer | unknown <greg@mysql.com> | 2003-09-30 23:14:07 -0400 |
commit | 3d5505d56e9fe8ce8d06af6e39641a23eb25f9fe (patch) | |
tree | 903d4b5dd867949806285b1b7ebe4ff902abc152 /netware/BUILD | |
parent | 16de8b37f803b48df978af6b06a384e861277c83 (diff) | |
download | mariadb-git-3d5505d56e9fe8ce8d06af6e39641a23eb25f9fe.tar.gz |
New build directory files - NetWare only, as used in 4.0.15
Diffstat (limited to 'netware/BUILD')
-rw-r--r-- | netware/BUILD/compile-netware-max | 23 | ||||
-rw-r--r-- | netware/BUILD/compile-netware-max-debug | 23 | ||||
-rw-r--r-- | netware/BUILD/compile-netware-src | 36 | ||||
-rw-r--r-- | netware/BUILD/knetware.imp | 2 | ||||
-rw-r--r-- | netware/BUILD/openssl.imp | 9 |
5 files changed, 93 insertions, 0 deletions
diff --git a/netware/BUILD/compile-netware-max b/netware/BUILD/compile-netware-max new file mode 100644 index 00000000000..ec737d4615c --- /dev/null +++ b/netware/BUILD/compile-netware-max @@ -0,0 +1,23 @@ +#! /bin/sh + +# debug +#set -x + +# stop on errors +set -e + + +path=`dirname $0` +. $path/compile-netware-START + +suffix="max" + +extra_configs=" \ + --with-innodb \ + --with-embedded-server \ + --with-openssl \ + " + +. $path/compile-netware-END + + diff --git a/netware/BUILD/compile-netware-max-debug b/netware/BUILD/compile-netware-max-debug new file mode 100644 index 00000000000..ea3553ae6e1 --- /dev/null +++ b/netware/BUILD/compile-netware-max-debug @@ -0,0 +1,23 @@ +#! /bin/sh + +# debug +#set -x + +# stop on errors +set -e + +path=`dirname $0` +. $path/compile-netware-START + +suffix="max-debug" + +extra_configs=" \ + --with-innodb \ + --with-debug=full \ + --with-embedded-server \ + --with-openssl \ + " + +. $path/compile-netware-END + + diff --git a/netware/BUILD/compile-netware-src b/netware/BUILD/compile-netware-src new file mode 100644 index 00000000000..df7f6fcdd1a --- /dev/null +++ b/netware/BUILD/compile-netware-src @@ -0,0 +1,36 @@ +#! /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` + +# clean +if test -e "Makefile"; then + make -k clean; + make -k distclean; +fi + +# remove other files +rm -f NEW-RPMS/* +rm -f */.deps/*.P +rm -rf Makefile.in.bk + +# zip source +files=`pwd | sed -e "s/.*\\\(mysql-.*\)/\1/"` +file=`pwd | sed -e "s/.*\\mysql-\(.*\)/mysql-src-\1-pc-netware-i686/"` +cd .. +if test -e "$file.zip"; then rm -f $file.zip; fi +zip -r $file.zip $files -x \*.zip -x \*.tar.gz +if test -e "./$files/$file.zip"; then mv -f ./$files/$file.zip ./$files/$file.zip.old; fi +mv -f $file.zip ./$files/$file.zip + diff --git a/netware/BUILD/knetware.imp b/netware/BUILD/knetware.imp new file mode 100644 index 00000000000..d9a9372b34f --- /dev/null +++ b/netware/BUILD/knetware.imp @@ -0,0 +1,2 @@ +kYieldIfTimeSliceUp + diff --git a/netware/BUILD/openssl.imp b/netware/BUILD/openssl.imp new file mode 100644 index 00000000000..8972ff5d58c --- /dev/null +++ b/netware/BUILD/openssl.imp @@ -0,0 +1,9 @@ +WS2_32_shutdown +WS2_32_closesocket +WSASetLastError +WS2_32_recv +WSASetLastError +WS2_32_send +WSAGetLastError +GetProcessSwitchCount +RunningProcess |