#!/bin/sh
# $Id: cfg-vile,v 1.9 2010/12/29 14:10:07 tom Exp $
# CPPFLAGS=-DVILE_ERROR_ABORT
OPTS=
case `partition` in
cygwin64)
	OPTS="$OPTS --with-builtin-filters --with-screen=ncursesw"
	;;
cygwin)
	OPTS="$OPTS --with-builtin-filters"
	;;
*)
	OPTS="$OPTS --with-loadable-filters"
	;;
esac

cfg-normal \
	--with-cflags=-g \
	$OPTS \
	--with-perl \
	"$@"
