Changes between Version 1 and Version 2 of SolarisNotes


Ignore:
Timestamp:
Aug 12, 2008, 2:11:50 AM (16 years ago)
Author:
Mike Taves
Comment:

some tips that I've just encountered

Legend:

Unmodified
Added
Removed
Modified
  • SolarisNotes

    v1 v2  
    1616LIBS = -lclntsh -L/opt/oracle/product/10.1.0/db_1/lib32  -lm -lrt -ldl
    1717}}}
     18
     19----
     20
     21On a multi-user Solaris system without root privileges, GDAL may need to be installed in the user's home directory. In this case, be sure to use (for example) --prefix=$HOME/local . Python (among other programs) need to link to the library, and if errors related to missing "libgdal.so.1" are shown, the LD_LIBRARY_PATH environment variable may to be adjusted to the location of the library files. This can be achieved by adjusting (for example) in ~/.bash_profile:
     22{{{
     23export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/local/lib
     24}}}
     25or to wherever the ''prefix''/lib was defined in the configuration.