freebsd-ports/textproc/xalan-c/scripts/check-config-options
Volker Stolz af049c5ab8 Updated Xalan C++ to 1.8.0 and fixed to work with Xerces C++ 2.6.0
Based on PR:	ports/73259
Submitted by:	Douglas Thrift
Heavily hacked on by: Bjoern A. Zeeb (maintainer)
2005-01-17 17:45:52 +00:00

24 lines
354 B
Bash

#!/bin/sh
# $FreeBSD$
rc=0
if test -n "${WITH_NLS}"; then
rc=$(expr $rc + 1)
fi
if test -n "${WITH_ICU}"; then
rc=$(expr $rc + 1)
fi
if test -n "${WITH_INMEM}"; then
rc=$(expr $rc + 1)
fi
if test ${rc} -gt 1; then
echo "ERROR: please re-run make config and" >&2
echo "only select one of the three locale systems." >&2
exit 254
fi
exit 0
# end