af049c5ab8
Based on PR: ports/73259 Submitted by: Douglas Thrift Heavily hacked on by: Bjoern A. Zeeb (maintainer)
24 lines
354 B
Bash
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
|