|
Revision 825, 503 bytes
(checked in by dokai, 3 years ago)
|
|
Fixed the calling mode of the script. Now you can just do: . ./setenv like in the other buildouts.
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | # Helper script to set the correct dynamic library search path |
|---|
| 4 | # |
|---|
| 5 | # Uncomment the line appropriate for your system and run the script as |
|---|
| 6 | # . ./setenv |
|---|
| 7 | # |
|---|
| 8 | |
|---|
| 9 | GEOS=$(pwd)/parts/geos/lib |
|---|
| 10 | |
|---|
| 11 | # For Linux systems with a bash compatible shell |
|---|
| 12 | export LD_LIBRARY_PATH=$GEOS |
|---|
| 13 | |
|---|
| 14 | # For Linux systems with a tcsh compatible shell |
|---|
| 15 | #setenv LD_LIBRARY_PATH $GEOS |
|---|
| 16 | |
|---|
| 17 | # For Mac OS X with a bash compatible shell |
|---|
| 18 | #export DYLD_LIBRARY_PATH=$GEOS |
|---|
| 19 | |
|---|
| 20 | # For Mac OS X with a tcsh compatible shell |
|---|
| 21 | #setenv DYLD_LIBRARY_PATH $GEOS |
|---|