Lines Matching full:perl
3 # Uses Perl to create nmake makefiles and otherwise prepare the way
45 # Find a suitable Perl installation for OpenSSL.
46 # cygwin perl does *not* work. ActivePerl does.
47 # Being a Perl dummy, the simplest way I can check is if the "Win32" package
50 for perl in perls:
52 subprocess.check_output([perl, "-e", "use Win32;"])
56 return perl
59 print("The following perl interpreters were found:")
64 print("NO perl interpreters were found on this machine at all!")
74 copy_if_different = r'$(PERL) $(SRC_D)\util\copy-if-different.pl'
78 perl, script, src, dest = line.split()
89 print("perl Configure "+configure+" no-idea no-mdc2")
90 os.system("perl Configure "+configure+" no-idea no-mdc2")
166 # perl should be on the path, but we also look in "\perl" and "c:\\perl"
168 perls = find_all_on_path("perl.exe", [r"\perl\bin",
169 r"C:\perl\bin",
173 perl = find_working_perl(perls)
174 if perl:
175 print("Found a working perl at '%s'" % (perl,))
186 # Put our working Perl at the front of our path
187 os.environ["PATH"] = os.path.dirname(perl) + \