mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
d497966a18
configure.in: To configure InnoDB for cross compilation. include/config-netware.h: NetWare specific change to fix the compilation errors caused by event.h NetWare specific change required for WINE PATH and for new versions LibC(Jun 05) and zlib(1.2.3) netware/BUILD/compile-AUTOTOOLS: Netware specific change reflecting the change in source code directory structure. netware/BUILD/compile-linux-tools: Netware specific change to fix the location where gen_lex_hash gets created. Fixed also directory structure reflecting changes. netware/BUILD/compile-netware-END: Netware specific change for creating mysqld_error.h netware/BUILD/mwenv: Netware specific change required for WINE PATH and for new versions LibC(Jun 05) and zlib(1.2.3). netware/BUILD/nwbootstrap: NetWare Specific change to produce absoulte path for XDC file. netware/Makefile.am: Netware specific changes to fix to match new directory structure. netware/my_manage.h: Netware specific change required for WINE PATH and for new versions LibC(Jun 05) and zlib(1.2.3). netware/mysql_test_run.c: Netware specific change, added --autoclose option for mysql_test_run.nlm. scripts/make_binary_distribution.sh: Fix to reflect change in directory structure. sql/mysqld.cc: Stacksize change for Netware. Netware specific change to fix the compilation errors caused by event.h sql/set_var.cc: Minor indending related fix. sql/sql_class.cc: Added #ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATION macro. storage/innobase/os/os0thread.c: Netware specific change to increase the thread stack size. storage/myisam/mi_locking.c: Enclosed MMAP related code under HAVE_MMAP preprocessor directive.
28 lines
1.2 KiB
Bash
Executable file
28 lines
1.2 KiB
Bash
Executable file
#! /bin/sh
|
|
|
|
# F:/mydev, /home/kp/mydev, and 4.0.21 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/fs64/headers;$MYDEV/zlib-1.2.3;$MYDEV/mysql-VERSION/include;$MYDEV"
|
|
export MWNWx86Libraries="$MYDEV/libc/imports;$MYDEV/mw/lib;$MYDEV/fs64/imports;$MYDEV/zlib-1.2.3;$MYDEV/openssl;$MYDEV/mysql-VERSION/netware/BUILD"
|
|
export MWNWx86LibraryFiles="libcpre.o;libc.imp;netware.imp;mwcrtl.lib;mwcpp.lib;libz.a;neb.imp;zPublics.imp;knetware.imp"
|
|
|
|
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='-enum int -align 8 -proc 686 -relax_pointers -dialect c'
|
|
export CXX='mwccnlm -gccincludes'
|
|
export CXXFLAGS='-enum int -align 8 -proc 686 -relax_pointers -dialect c++ -bool on -wchar_t on -D_WCHAR_T'
|
|
export LD='mwldnlm'
|
|
export LDFLAGS='-entry _LibCPrelude -exit _LibCPostlude -map -flags pseudopreemption'
|
|
export RANLIB=:
|
|
export STRIP=:
|