Lines Matching full:perl
6 # Uses Perl to create nmake makefiles and otherwise prepare the way
48 # Find a suitable Perl installation for OpenSSL.
49 # cygwin perl does *not* work. ActivePerl does.
50 # Being a Perl dummy, the simplest way I can check is if the "Win32" package
53 for perl in perls:
55 subprocess.check_output([perl, "-e", "use Win32;"])
59 return perl
62 print("The following perl interpreters were found:")
67 print("NO perl interpreters were found on this machine at all!")
92 os.system('nmake /f {} PERL=perl TMP_D={} asms'.format(asm_makefile, tmp_d))
101 copy_if_different = r'$(PERL) $(SRC_D)\util\copy-if-different.pl'
105 perl, script, src, dest = line.split()
116 print("perl Configure "+configure+" no-idea no-mdc2")
117 os.system("perl Configure "+configure+" no-idea no-mdc2")
170 # perl should be on the path, but we also look in "\perl" and "c:\\perl"
172 perls = find_all_on_path("perl.exe", [r"\perl\bin",
173 r"C:\perl\bin",
177 perl = find_working_perl(perls)
178 if perl:
179 print("Found a working perl at '%s'" % (perl,))
190 # Put our working Perl at the front of our path
191 os.environ["PATH"] = os.path.dirname(perl) + \