
To install wxEuphoria on Windows:
----------------------------------------------
  * Put:
         wxEuphoria\include\wxeud.e 
    ...into a directory on your %EUINC% path. If you're not sure which 
    those directories are, from the command line:
    
    > echo %EUINC%
    
  * Put:
         wxEuphoria\bin\wxmsw28_wat_custom.dll
         wxEuphoria\bin\libwxeu.dll
    ...into the same directory as your euphoria interpreter.

To install wxEuphoria on Linux or FreeBSD
----------------------------------------------
  * Put:
         wxEuphoria/include/wxeud.e 
    ...into a directory on your $EUINC path. If you're not sure which 
    those directories are, from the command line:
    
    $ echo $EUINC
    
  * You must have wxWidgets 2.8 installed, either from your distribution's package
    management system, or by building it from source.  See http://www.wxwidgets.org
    for more information about wxWidgets.
  
  * You can try to use the binary:
         wxEuphoria/bin/libwxeu.so
    ...by installing it into /usr/local/lib.  You'll need root priveledges.
    Then you'll need to run ldconfig.  For Linux:
    
    # ldconfig /usr/local/lib
    or
    # /sbin/ldconfig /usr/local/lib
    
    For FreeBSD:
    
    # ldconfig
    
    This binary may not work if it was built on a machine that had a different 
    configuration than yours.  In this case, you'll need to build the libarary
    from source.  Please refer to:
    
        wxEuphoria/src/readme.txt
        
    ...for more information about how to do this.
