#!/bin/sh

# PLARCH is passed from packages/configure

case $PLARCH in
  *-win32|*-win64)
	exit 0
	;;
  *)
	exit 1
esac
