Port to native Win32
====================

   There are at least three ways to port this package to Win32. If you 
have installed a current Cygwin installation or MinGW package both of the
ports should work as usual.

$ tar xzvf sizzle-<version>.tar.gz
$ cd sizzle-<version>
$ ./configure --with-included-gettext --enable-uvector
$ make

   The much more sophisticated way is to compile this package with the
native M$ Visual C++ compiler. Therefore we included a so called workspace
file (sizzle.dsw), the appropriate project files (*.dsp) and a prebuild
configuration file (config.h.sizzle). Follow these instructions to build
the whole package on your own.

$ copy version.h.sizzle version.h
$ copy config.h.sizzle config.h
$ copy intl\libgettext.h intl\libintl.h

   The config.h.sizzle has been build with a current Cygwin installation.
If you want to, you can also do this on your own, but this is just
optional. Adjust the paths.

$ c:\Programme\DevStudio\VC\bin\VCVARS32.BAT
$ set PATH=%PATH%;c:\Programme\cygwin\bin
$ set CC=cl -D__MINGW32__ -D_WIN32
$ set LD=link
$ sh configure --with-included-gettext --enable-uvector

   When you have done all this you can start to build the package. Open the
workspace `sizzle.dsw'. Choose either "Debug" or "Release" of the sizzle
project itself and compile. This will first build the `libintl.dll',
then the `libsizzle.dll' and finally the `sizzle.exe' which depends on
`libsizzle.dll'.

   The native (MSVC++), MinGW32 and Cygwin port is currently working with 
my own version of the GNU regex package (original version 0.12). That is
why it has not been released for MinGW32, yet.

ela.
