summaryrefslogtreecommitdiff
path: root/PCbuild
diff options
context:
space:
mode:
authorJeremy Kloth <jeremy.kloth@gmail.com>2017-06-20 14:53:39 -0600
committerVictor Stinner <victor.stinner@gmail.com>2017-06-20 22:53:39 +0200
commitebbccea997e03f60fec8308f2fb9e89a11521a74 (patch)
treec86f77825bb5b9a3b5c424426abceca49510afc9 /PCbuild
parentd4324baca4c03eb8d55446cd1b74b32ec5633af5 (diff)
downloadcpython-git-ebbccea997e03f60fec8308f2fb9e89a11521a74.tar.gz
bpo-30368: Update build_ssl.py to restore Perl-less building (#1805)
* bpo-30368: Update build_ssl.py to restore Perl-less building OpenSSL 1.0.2 releases changed how files are copied in the makefile, thus causing Perl to be required even for Python's "prepared" OpenSSL. Now build_ssl.py does the requisite copies before running nmake. * bpo-30368: Update build_ssl.py to use prepared OpenSSL * Updates SSL-linking projects to use the new include{suffix} directory * build_ssl.py now only copies those files not handled by prepare_ssl.py * * bpo-30368: Update build_ssl.py to use prepared OpenSSL * Update SSL-linking projects to use the new include{suffix} directory * Move comment to following line
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/prepare_ssl.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/PCbuild/prepare_ssl.py b/PCbuild/prepare_ssl.py
index d74697660f..4f764785a0 100644
--- a/PCbuild/prepare_ssl.py
+++ b/PCbuild/prepare_ssl.py
@@ -1,4 +1,7 @@
#! /usr/bin/env python3
+# -*- coding: utf8 -*-
+# The encoding declaration is required for running PC\VS9.0\build_ssl.py
+
# Script for preparing OpenSSL for building on Windows.
# Uses Perl to create nmake makefiles and otherwise prepare the way
# for building on 32 or 64 bit platforms.