File: bad-5100t.pl

package info (click to toggle)
libffi-platypus-perl 2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,860 kB
  • sloc: perl: 7,388; ansic: 6,862; cpp: 53; sh: 19; makefile: 14
file content (21 lines) | stat: -rw-r--r-- 673 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use strict;
use warnings;
use Config;

if($] == 5.010 && $Config{useithreads})
{
  print "\n\n\n";
  print " !! ERROR ERROR ERRORS ERROR !!\n";
  print "\n";
  print "The version of Perl you are using (5.10.0) when compiled\n";
  print "with threads is buggy and not supported by the Platypus team.\n";
  print "Please take the time to upgraded to a supported version of\n";
  print "Perl.  Easiest upgrade is probably to 5.10.0 unthreaded, or\n";
  print "5.10.1.  Better would be to upgrade to 5.32.\n";
  print "\n";
  print "https://github.com/PerlFFI/FFI-Platypus/issues/271\n";
  print "\n";
  print " !! ERROR ERROR ERRORS ERROR !!\n";
  print "\n\n\n";
  exit 2;
}