DyConnect Installation Instructions, Linux Version

***********************
***** To Install: *****
***********************

  Before compiling, you need to have the zlib compression library installed.
  You can find it at: http://www.zlib.net/

    cp makefile.linux makefile
    make
    su -c 'make install'

  This will create a static library in the /usr/lib directory, and
  place the DyConnect.h header file in /usr/include.  To specify a different
  location, edit the basedir variable at the top of makefile.linux

***********************
***** 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 linux.txt.

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

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

    cp makefile.linux makefile
    su -c 'make uninstall'
    make clean
    make
    su -c '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 pthread libraries.

  Sample Compilation:

  g++ myprogram.cpp -pthread -l dconn -l z -D_REENTRANT
