#!/bin/sh
-# Don't build on Windows
+#
+# Don't build this helper on Windows
+#
+if test "$1" = "mingw"; then
+ exit 1
+fi
if [ -f /usr/include/w32api/windows.h ]; then
exit 1
fi
#!/bin/sh
+#
+# Only build this helper on Windows
+#
+if test "$1" = "mingw"; then
+ exit 0
+fi
if [ -f /usr/include/w32api/windows.h ]; then
exit 0
fi
#!/bin/sh
+#
+# Only build this helper on Windows
+#
+if test "$1" = "mingw"; then
+ exit 0
+fi
if [ -f /usr/include/w32api/windows.h ]; then
exit 0
fi
#!/bin/sh
+#
+# Only build this helper on Windows
+#
+if test "$1" = "mingw"; then
+ exit 0
+fi
if [ -f /usr/include/w32api/windows.h ]; then
exit 0
fi
#!/bin/sh
+#
+# Only build this helper on Windows
+#
+if test "$1" = "mingw"; then
+ exit 0
+fi
if [ -f /usr/include/w32api/windows.h ]; then
exit 0
fi
#!/bin/sh
-# Don't build on Windows
+#
+# Don't build this helper on Windows
+#
+if test "$1" = "mingw"; then
+ exit 1
+fi
if [ -f /usr/include/w32api/windows.h ]; then
exit 1
fi