mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
New build directory files - NetWare only, as used in 4.0.15
This commit is contained in:
parent
16de8b37f8
commit
3d5505d56e
5 changed files with 93 additions and 0 deletions
23
netware/BUILD/compile-netware-max
Normal file
23
netware/BUILD/compile-netware-max
Normal file
|
@ -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
|
||||
|
||||
|
23
netware/BUILD/compile-netware-max-debug
Normal file
23
netware/BUILD/compile-netware-max-debug
Normal file
|
@ -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
|
||||
|
||||
|
36
netware/BUILD/compile-netware-src
Normal file
36
netware/BUILD/compile-netware-src
Normal file
|
@ -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
|
||||
|
2
netware/BUILD/knetware.imp
Normal file
2
netware/BUILD/knetware.imp
Normal file
|
@ -0,0 +1,2 @@
|
|||
kYieldIfTimeSliceUp
|
||||
|
9
netware/BUILD/openssl.imp
Normal file
9
netware/BUILD/openssl.imp
Normal file
|
@ -0,0 +1,9 @@
|
|||
WS2_32_shutdown
|
||||
WS2_32_closesocket
|
||||
WSASetLastError
|
||||
WS2_32_recv
|
||||
WSASetLastError
|
||||
WS2_32_send
|
||||
WSAGetLastError
|
||||
GetProcessSwitchCount
|
||||
RunningProcess
|
Loading…
Reference in a new issue