perl: drop version check
Meson started handling those differently[0], and Perl 5.8 is old enough that anyone running an even older Perl is honestly asking for it. [0]: https://github.com/mesonbuild/meson/commit/a3679a64eec7c312c81d657880f34f015426c7db Change-Id: Ifba22e38a82abf4b6965dda0eed43a3064533d25
This commit is contained in:
+1
-4
@@ -19,10 +19,7 @@ endif
|
||||
|
||||
cxx = meson.get_compiler('cpp')
|
||||
|
||||
# Really version 5.8.0, but Perl's version string is of the form
|
||||
# "This is perl 5, version 38, subversion 2", for 5.38.2, so as far
|
||||
# as Meson is concerned, the version of Perl we need is 8 or greater.
|
||||
perl = find_program('perl', version : '>=8')
|
||||
perl = find_program('perl')
|
||||
|
||||
# "compiler to convert Perl XS code into C code"
|
||||
xsubpp = find_program('xsubpp')
|
||||
|
||||
Reference in New Issue
Block a user