#!/bin/sh # Helper script to set the correct dynamic library search path # # Uncomment the line appropriate for your system and run the script as # . ./setenv # GEOS=$(pwd)/parts/geos/lib # For Linux systems with a bash compatible shell export LD_LIBRARY_PATH=$GEOS # For Linux systems with a tcsh compatible shell #setenv LD_LIBRARY_PATH $GEOS # For Mac OS X with a bash compatible shell #export DYLD_LIBRARY_PATH=$GEOS # For Mac OS X with a tcsh compatible shell #setenv DYLD_LIBRARY_PATH $GEOS