###################################################################### # # path File # # Sets user search paths with tcsh on Mac OS X. # Place in /Users//Library/init/tcsh # # Author: Gary Embler # Date: 04/12/02 # Shell tested: tcsh 6.10.00 # OS tested: Mac OS X 10.1.3 # ###################################################################### # # Copyright (c) 2002 Gary Embler . # All rights reserved. # # Permission to use, copy, modify, and distribute this software for # any purpose with or without fee is hereby granted, provided that # the above copyright notice, this permission notice, and the # following disclaimer appear on all copies. # # This software is provided by Gary Embler on an as-is basis and all # warranties expressed or implied are disclaimed. In no event shall # the author be held liable for any direct or indirect damages # however caused arising from the use of this software. # ###################################################################### # # Executable Search Path # setenv PATH "$PATH":/usr/X11R6/bin setenv PATH "$PATH":/Developer/Tools setenv PATH "$PATH":/Developer/Applications # # Man Pages Search Path # setenv MANPATH "$MANPATH":/usr/local/man setenv MANPATH "$MANPATH":/usr/X11R6/man # # Library Search Path # setenv LD_LIBRARY_PATH /usr/lib setenv LD_LIBRARY_PATH "$LD_LIBRARY_PATH":/usr/local/lib setenv LD_LIBRARY_PATH "$LD_LIBRARY_PATH":/usr/X11R6/lib setenv LD_LIBRARY_PATH "$LD_LIBRARY_PATH":/Users/"$USER"/lib