mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
2eab6ae62f
netware/mw/mwenv: MW environment for 4.1 (add zlib dir, change path) netware/nwconfigure: with-extra-charsets changed to latin1_de sql/mysqld.cc: Removed duplicate call to pthread_exit(0)
23 lines
640 B
Bash
23 lines
640 B
Bash
#! /bin/sh
|
|
CMD="\
|
|
AR='mwldnlm' \
|
|
AR_FLAGS='-type library -o' \
|
|
AS='mwasmnlm' \
|
|
CC='mwccnlm -gccincludes' \
|
|
CFLAGS='-dialect c -proc 686 -bool on -relax_pointers -DUSE_OLD_FUNCTIONS' \
|
|
CXX='mwccnlm -gccincludes' \
|
|
CXXFLAGS='-dialect c++ -proc 686 -bool on -relax_pointers' \
|
|
LD='mwldnlm' \
|
|
LDFLAGS='-entry _LibCPrelude -exit _LibCPostlude -flags pseudopreemption' \
|
|
RANLIB=: \
|
|
STRIP=: \
|
|
./configure --host=i686-pc-netware $* \
|
|
--without-docs \
|
|
--enable-local-infile \
|
|
--with-extra-charsets=latin1_de \
|
|
--prefix=N:/mysql \
|
|
"
|
|
#rm -f config.cache config.log config.status
|
|
echo $CMD
|
|
eval $CMD
|
|
|