2010-12-23 04:18:18 +00:00
|
|
|
#!/bin/sh -x
|
2012-11-29 02:19:09 +00:00
|
|
|
set -e
|
|
|
|
mkdir -p native i686-pc-mingw32
|
|
|
|
cd native
|
|
|
|
../../configure \
|
|
|
|
--disable-shared \
|
|
|
|
--without-clients \
|
|
|
|
--without-servers \
|
|
|
|
--with-tools=qfcc,pak
|
|
|
|
cd ../i686-pc-mingw32
|
2012-12-14 08:03:52 +00:00
|
|
|
export MINGW=/opt/mxe
|
2012-11-29 02:19:09 +00:00
|
|
|
export MINGW_USR=$MINGW/usr/i686-pc-mingw32
|
|
|
|
export PKG_CONFIG_LIBDIR=$MINGW_USR/lib/pkgconfig
|
|
|
|
export PKG_CONFIG_PATH=$MINGW_USR/local/lib/pkgconfig
|
2010-12-23 02:45:08 +00:00
|
|
|
export PATH=$MINGW/usr/bin:$PATH
|
2012-11-29 02:19:09 +00:00
|
|
|
../../configure \
|
|
|
|
--host=i686-pc-mingw32 \
|
|
|
|
--disable-shared \
|
2010-12-23 04:18:18 +00:00
|
|
|
$*
|