aboutsummaryrefslogtreecommitdiffstats
path: root/README.win32
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-04 01:26:40 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-04 01:26:40 +0000
commit90446d2969349b21eee2cc4d10ac320ee1b02a0c (patch)
tree6eb640b00fba913db021018591ac8b257d2db869 /README.win32
parent7d0a912f9ff4d42ded0910825397234d5157cbac (diff)
downloadwireshark-90446d2969349b21eee2cc4d10ac320ee1b02a0c.tar.gz
wireshark-90446d2969349b21eee2cc4d10ac320ee1b02a0c.tar.bz2
wireshark-90446d2969349b21eee2cc4d10ac320ee1b02a0c.zip
Update the "README.win32" file to reflect Andrew Feren's changes to use
Python iff PYTHON is defined in "config.nmake". svn path=/trunk/; revision=4859
Diffstat (limited to 'README.win32')
-rw-r--r--README.win3224
1 files changed, 12 insertions, 12 deletions
diff --git a/README.win32 b/README.win32
index 3b5e10c07e..1bbc18e250 100644
--- a/README.win32
+++ b/README.win32
@@ -1,4 +1,4 @@
-$Id: README.win32,v 1.30 2001/12/19 19:16:11 guy Exp $
+$Id: README.win32,v 1.31 2002/03/04 01:26:40 guy Exp $
Installing Ethereal, Tethereal, and Editcap on Win32
====================================================
@@ -159,9 +159,11 @@ The file will probably be called "ucd-snmp-X.X-x86-win32.zip", where
Instructions for MS Visual C
----------------------------
-Modify the config.nmake file in the top directory of the Ethereal
-source tree to work for your local configuration. You should not
-have to modify any other Makefile.
+Modify the config.nmake file in the top directory of the Ethereal source
+tree to work for your local configuration; if you don't have Python,
+comment out the line that defines PYTHON, otherwise set it to refer to
+the pathname of your Python interpreter executable. You should not have
+to modify any other Makefile.
In order to compile, at least with the default settings, you
also need zlib, which is provided as an archive library, not
@@ -211,14 +213,12 @@ make-reg-dotc, packet*.c register.c Bash + grep + sed
or
make-reg-dotc.py, packet*.c register.c Python
-The Makefile.nmake supplied with the Ethereal distribution will
-attempt to make register.c with Python, since it is much much much
-faster than the shell version. The reason it is faster is because
-the shell version launches multiple processes (grep, sed) for each
-source file, multiple times. The Python script is one process. This
-matters a lot on Win32. If for some reason you want to build register.c
-with the shell script, uncomment out the action line for the register.c
-target in Makefile.nmake.
+The Makefile.nmake supplied with the Ethereal distribution will, if
+PYTHON is defined in config.nmake, attempt to make register.c with
+Python, since it is much much much faster than the shell version. The
+reason it is faster is because the shell version launches multiple
+processes (grep, sed) for each source file, multiple times. The Python
+script is one process. This matters a lot on Win32.
If you have a Unix system handy, you can first build on Unix to create
most of the source files that these tools make, then run the build on