File: ossim_environment

package info (click to toggle)
ossim 1.8.16-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 24,156 kB
  • ctags: 31,345
  • sloc: cpp: 324,330; ansic: 14,940; sh: 7,473; pascal: 1,072; perl: 306; makefile: 207; lex: 183; xml: 141; sql: 78; csh: 4; php: 1
file content (33 lines) | stat: -rwxr-xr-x 922 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#-------------------------------------------------------------------
# -*-Shell-script-*-
#
# This file is not a stand-alone shell script; it provides the 
# environment for ossim application script wrappers that source it.
#
# License: LGPL
#
#-------------------------------------------------------------------
# $Id: ossim_environment 8012 2005-09-01 19:56:50Z dburken $

# Set up a default search path.
PATH="/usr/local/ossim/bin"
export PATH

#---
# Tell ossim where to find the ossim_preferences file:
#---
OSSIM_PREFS_FILE="/usr/local/ossim/bin/ossim_preferences"
export OSSIM_PREFS_FILE

#---
# Set up a default ld library path.
#
# Note:
#   
# In this example all code that ossim relies upon was configured with
# the --prefix=/usr/local/ossim to make a sandbox for ossim applications; 
# hence, there is only one place to look for libraries.
#
#---
LD_LIBRARY_PATH="/usr/local/ossim/lib"
export LD_LIBRARY_PATH