"wvtestmain ''" actually still runs all the tests, so skip the warning.
[wvstreams.git] / configure-mingw32
blobe2ced8a743ca1fa7d4af3c3c853363bbbabf92ff
1 #!/bin/bash
2 PORTS=$PWD/../wvports
3 ./configure \
4 --build=$(./config.guess) \
5 --host=i586-mingw32msvc \
6 --enable-exceptions \
7 --with-xplc=$PORTS/xplc/build/xplc \
8 CPPFLAGS="-mno-cygwin \
9 -I$PORTS/xplc/build/xplc/include \
10 -I$PORTS/zlib/build/zlib \
11 -I$PORTS/openssl/build/openssl/include $XCPPFLAGS \
12 -I$PORTS/win32api/build/w32api/include" \
13 LDFLAGS="\
14 -L$PORTS/xplc/build/xplc \
15 -L$PORTS/zlib/build/zlib \
16 -L$PORTS/openssl/build/openssl \
17 -L$PORTS/win32api/build/w32api/lib" \
18 LIBS="-lxplc-cxx -lwsock32 -lgdi32" \