INSTALLING TIMESPAN IN THE CYGWIN ENVIRONMENT:

For use insude the cygwin environment, timespan can be treated exactly as if
on a real UNIX/Linux system.  Simply follow the instructions in INSTALL.

An alternative method, which uses the command line compiler for Visual C++ 6,
is to enter the following commands:
  % export CXX=cl
  % export CXXFLAGS='-GX -FIutility -TP'
  % configure
  % make
  % make CXXFLAGS=-GX

Note that the first make will fail during the link process because the -TP part
of the CXXFLAGS variable interferes with Microsoft's linker.  This process is
currently untested with Visual Studio .NET and relies on the environment
variables being set properly.  If the environment variables have not been
registered, locate and run the vcvars.bat batch file to set the appropriate
variables.

To use 'make install' when compiling with the Visual C++ 6 command line
compiler, give configure the --prefix option with the appropriate path to the
directory you wish to install to.  For example,
  % configure --prefix=/cygdrive/C/Program\ Files/timespan
assuming that your C: drive is accessible at /cygdrive/C.

