cpython/PCbuild
Tim Peters bbc5d1674b SF bug 660795: logging missing from Python 2.3a1 for Windows.
Added the logging package.  In the meantime, Neal Norwitz added a
test_logging.py to the std test suite, which would have caught this
oversight in the Windows installer.
2003-01-02 16:02:27 +00:00
..
.cvsignore Changes by Mark Hammond to ignore more by-products of the build. 2000-04-24 13:32:05 +00:00
_bsddb.dsp Try linking the static Sleepycat lib into _bsddb.pyd. Hard to say 2002-11-23 18:48:06 +00:00
_socket.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
_sre.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
_ssl.dsp Add _ssl build process for Windows. 2002-12-03 05:47:26 +00:00
_ssl.mak Add the SSL libraries as dependencies. 2002-12-03 20:59:46 +00:00
_symtable.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
_testcapi.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
_tkinter.dsp Windows changes to move from Tcl/Tk 8.3.2 to 8.4.1. I tested this by 2002-11-14 23:24:40 +00:00
bsddb_patch.txt Move Windows Python away from bsddb 1.85 and toward Sleepycat's latest. 2002-11-22 20:00:34 +00:00
build_ssl.py Don't make all the OpenSSL executables, just the library we need. 2002-12-03 21:00:29 +00:00
BUILDno.txt Bump the Windows build # for 2.3a1. 2002-12-31 02:09:08 +00:00
bz2.dsp Start building the bz2 module on Windows. 2002-11-09 04:48:58 +00:00
datetime.dsp datetime escapes the sandbox. The Windows build is all set. I leave it 2002-12-16 20:18:38 +00:00
field3.py The MS resource compiler simply cannot be convinced to do arithmetic 2002-10-11 18:25:52 +00:00
installer.bmp New, larger installer bitmap from Erik van Blokland. Added more 2001-08-15 06:10:16 +00:00
mmap.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
parser.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
pcbuild.dsw datetime escapes the sandbox. The Windows build is all set. I leave it 2002-12-16 20:18:38 +00:00
pyexpat.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
python.dsp Windows changes to move from Tcl/Tk 8.3.2 to 8.4.1. I tested this by 2002-11-14 23:24:40 +00:00
python.iss Removed old Digital Creations copyright/license notices (with 2002-04-04 17:52:50 +00:00
python20.wse SF bug 660795: logging missing from Python 2.3a1 for Windows. 2003-01-02 16:02:27 +00:00
pythoncore.dsp Bump the Windows build # for 2.3a1. 2002-12-31 02:09:08 +00:00
pythonw.dsp Remove the unused, and therefore distracting, "Alpha" build configurations. 2002-07-10 06:22:10 +00:00
readme.txt Revert the last change. Tim was faster and chose a different route. 2002-12-30 00:40:40 +00:00
rmpyc.py Remove now-unnecessary "from __future__ import nested_scopes" stmts. 2001-07-12 22:36:02 +00:00
rt.bat Add -E and -tt options to the python invocations, as for the Unix tests. 2002-08-07 19:06:27 +00:00
select.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
unicodedata.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
Uninstal.wse New runtime vrbl DOADMIN. When false, we never try to write under HKLM, 2001-08-05 04:12:30 +00:00
w9xpopen.dsp Support for building the new w9xpopen.exe, which is used for reliable popen operation on Windows 9x. 2000-08-14 05:07:05 +00:00
winreg.dsp Revert this checkin: 2000-08-13 22:59:26 +00:00
winsound.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00
zlib.dsp Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link 2002-07-23 06:31:15 +00:00

Building Python using VC++ 6.0 or 5.0
-------------------------------------
This directory is used to build Python for Win32 platforms, e.g. Windows
95, 98 and NT.  It requires Microsoft Visual C++ 6.x or 5.x.
(For other Windows platforms and compilers, see ../PC/readme.txt.)

All you need to do is open the workspace "pcbuild.dsw" in MSVC++, select
the Debug or Release setting (using Build -> Set Active Configuration...),
and build the projects.

The proper order to build subprojects:

1) pythoncore (this builds the main Python DLL and library files,
               python21.{dll, lib} in Release mode)
              NOTE:  in previous releases, this subproject was
              named after the release number, e.g. python20.

2) python (this builds the main Python executable,
           python.exe in Release mode)

3) the other subprojects, as desired or needed (note:  you probably don't
   want to build most of the other subprojects, unless you're building an
   entire Python distribution from scratch, or specifically making changes
   to the subsystems they implement; see SUBPROJECTS below)

When using the Debug setting, the output files have a _d added to
their name:  python21_d.dll, python_d.exe, parser_d.pyd, and so on.

SUBPROJECTS
-----------
These subprojects should build out of the box.  Subprojects other than the
main ones (pythoncore, python, pythonw) generally build a DLL (renamed to
.pyd) from a specific module so that users don't have to load the code
supporting that module unless they import the module.

pythoncore
    .dll and .lib
python
    .exe
pythonw
    pythonw.exe, a variant of python.exe that doesn't pop up a DOS box
_socket
    socketmodule.c
_sre
    Unicode-aware regular expression engine
_symtable
    the _symtable module, symtablemodule.c
_testcapi
    tests of the Python C API, run via Lib/test/test_capi.py, and
    implemented by module Modules/_testcapimodule.c
datetime
    datetimemodule.c
mmap
    mmapmodule.c
parser
    the parser module
pyexpat
    Python wrapper for accelerated XML parsing, which incorporates stable
    code from the Expat project:  http://sourceforge.net/projects/expat/
select
    selectmodule.c
unicodedata
    large tables of Unicode data
winreg
    Windows registry API
winsound
    play sounds (typically .wav files) under Windows

The following subprojects will generally NOT build out of the box.  They
wrap code Python doesn't control, and you'll need to download the base
packages first and unpack them into siblings of PCbuilds's parent
directory; for example, if your PCbuild is  .......\dist\src\PCbuild\,
unpack into new subdirectories of dist\.

_tkinter
    Python wrapper for the Tk windowing system.  Requires building
    Tcl/Tk first.  Following are instructions for Tcl/Tk 8.4.1:

    Get source
    ----------
    Go to
        http://prdownloads.sourceforge.net/tcl/
    and download
        tcl841-src.zip
        tk841-src.zip
    Unzip into
        dist\tcl8.4.1\
        dist\tk8.4.1\
    respectively.

    Build Tcl first (done here w/ MSVC 6 on Win2K; also Win98SE)
    ---------------
    cd dist\tcl8.4.1\win
    run vcvars32.bat [necessary even on Win2K]
    nmake -f makefile.vc
    nmake -f makefile.vc INSTALLDIR=..\..\tcl84 install

    XXX Should we compile with OPTS=threads?

    XXX Some tests failed in "nmake -f makefile.vc test".

    Build Tk
    --------
    cd dist\tk8.4.1\win
    nmake -f makefile.vc TCLDIR=..\..\tcl8.4.1
    nmake -f makefile.vc TCLDIR=..\..\tcl8.4.1 INSTALLDIR=..\..\tcl84 install

    XXX Should we compile with OPTS=threads?

    XXX Some tests failed in "nmake -f makefile.vc test".

    XXX Our installer copies a lot of stuff out of the Tcl/Tk install
    XXX directory.  Is all of that really needed for Python use of Tcl/Tk?

    Make sure the installer matches
    -------------------------------
    Ensure that the Wise compiler vrbl _TCLDIR_ is set to the name of
    the common Tcl/Tk installation directory (tcl84 for the instructions
    above).  This is needed so the installer can copy various Tcl/Tk
    files into the Python distribution.


zlib
    Python wrapper for the zlib compression library.  Get the source code
    for version 1.1.4 from a convenient mirror at:
        http://www.gzip.org/zlib/
    Unpack into dist\zlib-1.1.4.
    A custom pre-link step in the zlib project settings should manage to
    build zlib-1.1.4\zlib.lib by magic before zlib.pyd (or zlib_d.pyd) is
    linked in PCbuild\.
    However, the zlib project is not smart enough to remove anything under
    zlib-1.1.4\ when you do a clean, so if you want to rebuild zlib.lib
    you need to clean up zlib-1.1.4\ by hand.

bz2
    Python wrapper for the libbz2 compression library.  Homepage
        http://sources.redhat.com/bzip2/
    Download the source tarball, bzip2-1.0.2.tar.gz.
    Unpack into dist\bzip2-1.0.2.  WARNING:  If you're using WinZip, you
    must disable its "TAR file smart CR/LF conversion" feature (under
    Options -> Configuration -> Miscellaneous -> Other) for the duration.

    Don't bother trying to use libbz2.dsp with MSVC.  After 10 minutes
    of fiddling, I couldn't get it to work.  Perhaps it works with
    MSVC 5 (I used MSVC 6).  It's better to run the by-hand makefile
    anyway, because it runs a helpful test step at the end.

    cd into dist\bzip2-1.0.2, and run
        nmake -f makefile.msc
    [Note that if you're running Win9X, you'll need to run vcvars32.bat
     before running nmake (this batch file is in your MSVC installation).
     TODO:  make this work like zlib (in particular, MSVC runs the prelink
     step in an enviroment that already has the correct envars set up).
    ]
    The make step shouldn't yield any warnings or errors, and should end
    by displaying 6 blocks each terminated with
        FC: no differences encountered
    If FC finds differences, see the warning abou WinZip above (when I
    first tried it, sample3.ref failed due to CRLF conversion).

    All of this managed to build bzip2-1.0.2\libbz2.lib, which the Python
    project links in.


_bsddb
    XXX The Sleepycat release we use will probably change before
    XXX 2.3a1.
    Go to Sleepycat's patches page:
        http://www.sleepycat.com/update/index.html
    and download
        4.0.14.zip
    from the download page.  The file name is db-4.0.14.zip.  Unpack into
        dist\db-4.0.14

    Apply the patch file bsddb_patch.txt in this (PCbuild) directory
    against the file
        dist\db-4.0.14\db\db_reclaim.c

    Go to
        http://www.sleepycat.com/docs/ref/build_win/intro.html
    and follow the instructions for building the Sleepycat software.
    Build the Release version.
    NOTE:  The instructions are for a later release of the software,
    so use your imagination.  Berkeley_DB.dsw in this release was
    also pre-MSVC6, so you'll be prompted to upgrade the format (say
    yes, of course).  Choose configuration "db_buildall - Win32 Release",
    and build db_buildall.exe.

    XXX We're actually linking against Release_static\libdb40s.lib.
    XXX This yields the following warnings:
"""
Compiling...
_bsddb.c
Linking...
   Creating library ./_bsddb.lib and object ./_bsddb.exp
LINK : warning LNK4049: locally defined symbol "_malloc" imported
LINK : warning LNK4049: locally defined symbol "_free" imported
LINK : warning LNK4049: locally defined symbol "_fclose" imported
LINK : warning LNK4049: locally defined symbol "_fopen" imported
_bsddb.pyd - 0 error(s), 4 warning(s)
"""
    XXX This isn't encouraging, but I don't know what to do about it.


_ssl
    Python wrapper for the secure sockets library.

    Get the latest source code for OpenSSL from
        http://www.openssl.org

    You (probably) don't want the "engine" code.  For example, get
        openssl-0.9.6g.tar.gz
    not
        openssl-engine-0.9.6g.tar.gz

    Unpack into the "dist" directory, retaining the folder name from
    the archive - for example, the latest stable OpenSSL will install as
        dist/openssl-0.9.6g

    You can (theoretically) use any version of OpenSSL you like - the
    build process will automatically select the latest version.

    You must also install ActivePerl from
        http://www.activestate.com/Products/ActivePerl/
    as this is used by the OpenSSL build process.  Complain to them <wink>.

    The MSVC project simply invokes PCBuild/build_ssl.py to perform
    the build.  This Python script locates and builds your OpenSSL
    installation, then invokes a simple makefile to build the final .pyd.

    Win9x users:  see "Win9x note" below.

    build_ssl.py attempts to catch the most common errors (such as not
    being able to find OpenSSL sources, or not being able to find a Perl
    that works with OpenSSL) and give a reasonable error message.
    If you have a problem that doesn't seem to be handled correctly
    (eg, you know you have ActivePerl but we can't find it), please take
    a peek at build_ssl.py and suggest patches.  Note that build_ssl.py
    should be able to be run directly from the command-line.

    build_ssl.py/MSVC isn't clever enough to clean OpenSSL - you must do
    this by hand.

    Win9x note:  If, near the start of the build process, you see
    something like

        C:\Code\openssl-0.9.6g>set OPTS=no-asm
        Out of environment space

    then you're in trouble, and will probably also see these errors near
    the end of the process:

        NMAKE : fatal error U1073: don't know how to make
            'crypto\md5\asm\m5_win32.asm'
        Stop.
        NMAKE : fatal error U1073: don't know how to make
            'C:\Code\openssl-0.9.6g/out32/libeay32.lib'
        Stop.

    You need more environment space.  Win9x only has room for 256 bytes
    by default, and especially after installing ActivePerl (which fiddles
    the PATH envar), you're likely to run out.  KB Q230205

        http://support.microsoft.com/default.aspx?scid=KB;en-us;q230205

    explains how to edit CONFIG.SYS to cure this.


YOUR OWN EXTENSION DLLs
-----------------------
If you want to create your own extension module DLL, there's an example
with easy-to-follow instructions in ../PC/example/; read the file
readme.txt there first.