Lines Matching full:perl
2 # Uses Perl to setup the OpenSSL environment correctly
18 # Developers don't need an installation of Perl anymore to build Python. A svn
21 # In Order to create the files in the case of an update you still need Perl.
43 # Find a suitable Perl installation for OpenSSL.
44 # cygwin perl does *not* work. ActivePerl does.
45 # Being a Perl dummy, the simplest way I can check is if the "Win32" package
48 for perl in perls:
49 fh = os.popen('"%s" -e "use Win32;"' % perl)
54 return perl
55 print("Can not find a suitable PERL:")
57 print(" the following perl interpreters were found:")
62 print(" NO perl interpreters were found on this machine at all!")
128 if line.startswith("PERL="):
144 print("perl Configure "+configure)
145 os.system("perl Configure "+configure)
177 # perl should be on the path, but we also look in "\perl" and "c:\\perl"
179 perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"])
180 perl = find_working_perl(perls)
181 if perl:
182 print("Found a working perl at '%s'" % (perl,))
184 print("No Perl installation was found. Existing Makefiles are used.")
198 # If the ssl makefiles do not exist, we invoke Perl to generate them.
202 if perl is None:
203 print("Perl is required to build the makefiles!")
208 # Put our working Perl at the front of our path
209 os.environ["PATH"] = os.path.dirname(perl) + \
218 # os.system("perl util\mk1mf.pl debug "+configure+" >"+makefile)
236 #makeCommand = "nmake /nologo PERL=\"%s\" -f \"%s\"" %(perl, makefile)