#!/bin/sh

# Note, you have to source this file for it to be useful

if [ -f environment ]
then

  dir=`/bin/pwd`/_lib

  if [ -z $LD_LIBRARY_PATH ]
  then
    LD_LIBRARY_PATH="$dir"
  else
    LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$dir"
  fi
  export LD_LIBRARY_PATH
  echo LD_LIBRARY_PATH=\"$LD_LIBRARY_PATH\"

else
  echo please run this file from the directory where it is
fi       

