mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
9c3d7df569
client/mysql.cc: NetWare only: Remove pthread_yield on large screen results client/mysqldump.c: NetWare only: Remove pthread_yield on large screen results include/my_pthread.h: NetWare only: pthread_cond_timedwait now present in LibC mysys/default.c: Add conditional for NetWare mysys/my_init.c: Changes to netware_init mysys/my_pthread.c: NetWare only: special my_pthread_cond_timedwait no longer needed mysys/thr_mutex.c: NetWare: no need for pthread_mutex_lock calls netware/BUILD/mwenv: Add zlib to environment variables netware/Makefile.am: Add isam/isamchk.def to netware_build_files scripts/make_binary_distribution.sh: Made bin directory files more flexible for alternate platforms, without unnecessary repetition
29 lines
1,016 B
Bash
Executable file
29 lines
1,016 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# WINE_BUILD_DIR, BUILD_DIR, and VERSION must be correct before compiling
|
|
# This values are normally changed by the nwbootstrap script
|
|
|
|
# the default is "F:/mydev"
|
|
export MYDEV="WINE_BUILD_DIR"
|
|
|
|
export MWCNWx86Includes="$MYDEV/libc/include;$MYDEV/zlib-1.1.4"
|
|
export MWNWx86Libraries="$MYDEV/libc/imports;$MYDEV/mw/lib;$MYDEV/zlib-1.1.4"
|
|
export MWNWx86LibraryFiles="libcpre.o;libc.imp;netware.imp;mwcrtl.lib;mwcpp.lib;libz.a"
|
|
|
|
export WINEPATH="$MYDEV/mw/bin"
|
|
|
|
# the default added path is "$HOME/mydev/mysql-x.x-x/netware/BUILD"
|
|
export PATH="$PATH:BUILD_DIR/mysql-VERSION/netware/BUILD"
|
|
|
|
export AR='mwldnlm'
|
|
export AR_FLAGS='-type library -o'
|
|
export AS='mwasmnlm'
|
|
export CC='mwccnlm -gccincludes'
|
|
export CFLAGS='-dialect c -proc 686 -relax_pointers'
|
|
export CXX='mwccnlm -gccincludes'
|
|
export CXXFLAGS='-dialect c++ -proc 686 -bool on -wchar_t on -relax_pointers -D_WCHAR_T'
|
|
export LD='mwldnlm'
|
|
export LDFLAGS='-entry _LibCPrelude -exit _LibCPostlude -flags pseudopreemption'
|
|
export RANLIB=:
|
|
export STRIP=:
|
|
|