pkgsrc/lang/perl5/files/install_threads.tmpl
wiz 41b2a2663a Remove duplicate PERL5 definition.
This is already defined in mk/pkginstall/header.
2016-12-12 16:08:00 +00:00

24 lines
619 B
Cheetah

# $NetBSD: install_threads.tmpl,v 1.2 2016/12/12 16:08:00 wiz Exp $
#
# Require the presence of a pkgsrc Perl installation that supports threads
# during the PRE-INSTALL stage, otherwise we bail out.
case ${STAGE} in
PRE-INSTALL)
if [ ! -x "${PERL5}" ]; then
${ECHO} "==> ${PERL5} does not exist." 1>&2
exit 1
fi
eval `${PERL5} -V:usethreads`
case $usethreads in
define*|true|[yY]*) # possible "yes" values in Perl Config.pm
# We found what we were looking for (a threaded perl) so
# do nothing.
;;
*)
${ECHO} "==> ${PKGNAME} requires a Perl that supports threads." 1>&2
exit 1
;;
esac
;;
esac