DyConnect Installation Instructions, Windows Version

*********************
***** To Build: *****
*********************

  Before compiling, you need to have the following software:
    - a working version of MinGW (g++)
    - the MinGW Windows API
    - Windows XP or newer, or Windows Server 2003 or newer.

    copy makefile.mingw makefile
    mingw32-make
    mingw32-make install

  This will create a static library in mingw's \lib directory, and
  place the DyConnect.h header file in \include.

***********************
***** To Upgrade: *****
***********************

  If you're upgrading from a previous version of DyConnect, use these steps:

  ### Upgrading from version 1.4 or earlier: ###

  The location of DyConnect's files has changed from version 1.4 to 1.5, and make uninstall
  won't correctly remove files from any previous DyConnect installations. You have two options
  here:

  1) Download DyConnect 1.4x and follow the uninstall instructions in mingw.txt.

  2) Manually delete the files yourself. By default, the files are installed here:
     c:\mingw\include\DyConnect.h
     c:\mingw\include\dyconnect\
     c:\mingw\lib\libdconn.a

     (This will vary depending on where MinGW is installed.)

  ### Upgrading from version 1.5 or later: ###

    copy makefile.mingw makefile
    mingw32-make uninstall
    mingw32-make clean
    mingw32-make
    mingw32-make install

  to make sure you're building the correct version.

*******************
***** To Use: *****
*******************

  You need to include DyConnect.h in your source code:

  #include "DyConnect.h"

  When you compile your program, you should link to the dyconnect, zlib
  and winsock libraries.

  Sample Compilation:

  g++ myprogram.cpp -ldconn -lzlib1 -lws2_32 -D_REENTRANT -DDY_WINDOWS_VERSION
