Don't set up the sm_hidden table in wvdbi; that's a schemamatic thing.
[versaplex.git] / configure-mingw32
blob51dba0bb659f177a16a6b3d8c644c6ba4e4a04a0
1 #!/bin/sh -x
2 set -e
3 test -e wv/Makefile || ./get-git-modules
5 rm -f config.mk
6 cat >config.mk <<EOF
7 BUILD_TARGET=win32
8 EOF
10 # We tell the autobuilder to ignore warnings in the 'wv' directory, as
11 # they're not our fault. That project should have its own autobuilder.
12 echo --START-IGNORE-WARNINGS
13 (cd wv && ./configure-mingw32) || exit $?
14 echo --STOP-IGNORE-WARNINGS
16 # Not needed on win32
17 #(cd vxodbc && make configure && ./configure) || exit $?