mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
230147990d
Change mode to -rwxrwxr-x netware/BUILD/compile-AUTOTOOLS: Change mode to -rwxrwxr-x netware/BUILD/compile-linux-tools: Change mode to -rwxrwxr-x netware/BUILD/compile-netware-END: Change mode to -rwxrwxr-x netware/BUILD/compile-netware-START: Change mode to -rwxrwxr-x netware/BUILD/compile-netware-all: Change mode to -rwxrwxr-x netware/BUILD/compile-netware-debug: Change mode to -rwxrwxr-x netware/BUILD/compile-netware-standard: Change mode to -rwxrwxr-x netware/BUILD/mwasmnlm: Change mode to -rwxrwxr-x netware/BUILD/mwccnlm: Change mode to -rwxrwxr-x netware/BUILD/mwenv: Change mode to -rwxrwxr-x netware/BUILD/mwldnlm: Change mode to -rwxrwxr-x netware/BUILD/nwbootstrap: Change mode to -rwxrwxr-x
29 lines
975 B
Bash
Executable file
29 lines
975 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# WINE_BUILD_DIR, BUILD_DIR, and VERSION must be changed before compiling
|
|
# This values are normally changed by the nwbootstrap script
|
|
|
|
# the default for WINE_BUILD_DIR is "F:/mydev"
|
|
export MYDEV="WINE_BUILD_DIR"
|
|
|
|
export MWCNWx86Includes="$MYDEV/libc/include"
|
|
export MWNWx86Libraries="$MYDEV/libc/imports;$MYDEV/mw/lib"
|
|
export MWNWx86LibraryFiles="libcpre.o;libc.imp;netware.imp;mwcrtl.lib;mwcpp.lib"
|
|
|
|
export WINEPATH="$MYDEV/mw/bin"
|
|
|
|
# the default for BUILD_DIR is "$HOME/mydev"
|
|
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 -bool on -relax_pointers -DUSE_OLD_FUNCTIONS'
|
|
export CXX='mwccnlm -gccincludes'
|
|
export CXXFLAGS='-dialect c++ -proc 686 -bool on -relax_pointers'
|
|
export LD='mwldnlm'
|
|
export LDFLAGS='-entry _LibCPrelude -exit _LibCPostlude -flags pseudopreemption'
|
|
export RANLIB=:
|
|
export STRIP=:
|
|
|