aboutsummaryrefslogtreecommitdiffstats
path: root/config-mingw
blob: 811909386068aef2cbb77c63e7c6d8ca2bb9ee2a (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
set -x
if echo $PATH | grep -q /mingw64; then
    wordsize=64
else
    wordsize=32
fi
./configure --disable-test-compare-images --enable-external-libs --enable-werror --with-windows-wordsize=$wordsize --with-buildrules=mingw ${1+"$@"}