In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/96027ab81f0eb51dc68801abe079290bd13d69d9?hp=a39d27b5959c1ae4fb91fc453ee12752f24e2e6d>
- Log ----------------------------------------------------------------- commit 96027ab81f0eb51dc68801abe079290bd13d69d9 Author: Craig A. Berry <[email protected]> Date: Thu Nov 3 20:17:36 2016 -0500 configure.com: missing ELSE in usethreads logic This would only bite if an unknown compiler had been selected, but there is a port of clang in progress, so try to be ready for anything. ----------------------------------------------------------------------- Summary of changes: configure.com | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.com b/configure.com index 088cabc..888d2d0 100644 --- a/configure.com +++ b/configure.com @@ -2057,6 +2057,8 @@ $ ENDIF $ ELSE $ usethreads = "undef" $ ENDIF +$ ELSE +$ usethreads = "undef" $ ENDIF $ IF F$TYPE(usethreadupcalls) .EQS. "" THEN usethreadupcalls = "undef" $ IF F$TYPE(usekernelthreads) .EQS. "" THEN usekernelthreads = "undef" -- Perl5 Master Repository
