.profile
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:6k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #!/bin/sh
  2. #
  3. # The contents of this file are subject to the Mozilla Public
  4. # License Version 1.1 (the "License"); you may not use this file
  5. # except in compliance with the License. You may obtain a copy of
  6. # the License at http://www.mozilla.org/MPL/
  7. # Software distributed under the License is distributed on an "AS
  8. # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9. # implied. See the License for the specific language governing
  10. # rights and limitations under the License.
  11. # The Original Code is the Netscape security libraries.
  12. # The Initial Developer of the Original Code is Netscape
  13. # Communications Corporation.  Portions created by Netscape are 
  14. # Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  15. # Rights Reserved.
  16. # Contributor(s):
  17. # Alternatively, the contents of this file may be used under the
  18. # terms of the GNU General Public License Version 2 or later (the
  19. # "GPL"), in which case the provisions of the GPL are applicable 
  20. # instead of those above.  If you wish to allow use of your 
  21. # version of this file only under the terms of the GPL and not to
  22. # allow others to use your version of this file under the MPL,
  23. # indicate your decision by deleting the provisions above and
  24. # replace them with the notice and other provisions required by
  25. # the GPL.  If you do not delete the provisions above, a recipient
  26. # may use your version of this file under either the MPL or the
  27. # GPL.
  28. #
  29. # Startup file for sh, ksh and bash.  It is meant to work on:
  30. #
  31. # SunOS 4.1.3_U1,
  32. # Sun Solaris,
  33. # Sun Solaris on Intel,
  34. # SGI IRIX,
  35. # SGI IRIX64,
  36. # UNIX_SV,
  37. # IBM AIX,
  38. # Hewlett-Packard HP-UX,
  39. # SCO_SV,
  40. # FreeBSD,
  41. # DEC OSF/1,
  42. # Linux,
  43. # and everything else.
  44. #
  45. ###############################################
  46. # Set operating system name and release level #
  47. ###############################################
  48. OS_NAME=`uname -s`
  49. export OS_NAME
  50. OS_RELEASE=`uname -r`
  51. export OS_RELEASE
  52. ##########################################################
  53. #  Set environment variables based upon operating system #
  54. ##########################################################
  55. case $OS_NAME in
  56. SunOS)
  57. ##############################
  58. # Sun
  59. #
  60. case $OS_RELEASE in
  61. 4.1.3_U1)
  62. ##############################
  63. # SunOS 4.1.3_U1
  64. #
  65. NO_MDUPDATE=1
  66. export NO_MDUPDATE
  67. PATH=/tools/ns/soft/gcc-2.6.3/run/default/sparc_sun_sunos4.1.3_U1/bin:tools/ns/bin:/sbin:/usr/bin:/usr/openwin/bin:/usr/openwin/include:/usr/ucb:/usr/local/bin:/etc:/usr/etc:/usr/etc/install:.
  68. export PATH
  69. ;;
  70. *)
  71. ################################
  72. #  Assume it is Sun Solaris
  73. #
  74. # To build Navigator on Solaris 2.5, I must set the environment
  75. # variable NO_MDUPDATE and use gcc-2.6.3.
  76. NO_MDUPDATE=1
  77. export NO_MDUPDATE
  78. PATH=/share/builds/components/jdk/1.2.2_01/SunOS:/usr/ccs/bin:/usr/opt/bin:/tools/ns/bin:/usr/sbin:/sbin:/usr/bin:/usr/dt/bin:/usr/openwin/bin:/usr/openwin/include:/usr/ucb:/usr/opt/java/bin:/usr/local/bin:/etc:/usr/etc:/usr/etc/install:/opt/Acrobat3/bin:.
  79. export PATH
  80. # To get the native Solaris cc
  81. OS_TEST=`uname -m`
  82. export OS_TEST
  83. case $OS_TEST in
  84. i86pc)
  85. PATH=/h/solx86/export/home/opt/SUNWspro/SC3.0.1/bin:$PATH
  86. export PATH
  87. ;;
  88. *)
  89. PATH=/tools/ns/workshop/bin:/tools/ns/soft/gcc-2.6.3/run/default/sparc_sun_solaris2.4/bin:$PATH
  90. export PATH
  91. ;;
  92. esac
  93. LD_LIBRARY_PATH=/share/builds/components/jdk/1.2.2_01/SunOS/lib/sparc/native_threads
  94. export LD_LIBRARY_PATH
  95. MANPATH=/usr/local/man:/usr/local/lib/mh/man:/usr/local/lib/rcscvs/man:/usr/local/lib/fvwm/man:/usr/local/lib/xscreensaver/man:/usr/share/man:/usr/openwin/man:/usr/opt/man
  96. export MANPATH
  97. # For Purify
  98. PURIFYHOME=/usr/local-sparc-solaris/pure/purify-4.0-solaris2
  99. export PURIFYHOME
  100. PATH=/usr/local-sparc-solaris/pure/purify-4.0-solaris2:$PATH
  101. export PATH
  102. MANPATH=$PURIFYHOME/man:$MANPATH
  103. export MANPATH
  104. LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local-sparc-solaris/pure/purify-4.0-solaris2
  105. export LD_LIBRARY_PATH
  106. PURIFYOPTIONS="-max_threads=1000 -follow-child-processes=yes"
  107. export PURIFYOPTIONS
  108. ;;
  109. esac
  110. ;;
  111. IRIX | IRIX64)
  112. #############
  113. #  SGI Irix
  114. #
  115. PATH=/share/builds/components/jdk/1.2.1/IRIX:/tools/ns/bin:/tools/contrib/bin:/usr/local/bin:/usr/sbin:/usr/bsd:/usr/bin:/bin:/etc:/usr/etc:/usr/bin/X11:.
  116. export PATH
  117. ;;
  118. UNIX_SV)
  119. #################
  120. # UNIX_SV
  121. #
  122. PATH=/usr/local/bin:/tools/ns/bin:/bin:/usr/bin:/usr/bin/X11:/X11/bin:/usr/X/bin:/usr/ucb:/usr/sbin:/sbin:/usr/ccs/bin:.
  123. export PATH
  124. ;;
  125. AIX)
  126. #################
  127. #  IBM AIX
  128. #
  129. PATH=/share/builds/components/jdk/1.2.2/AIX:/usr/ucb/:/tools/ns-arch/rs6000_ibm_aix4.1/bin:/tools/ns-arch/rs6000_ibm_aix3.2.5/bin:/share/tools/ns/soft/cvs-1.8/run/default/rs6000_ibm_aix3.2.5/bin:/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/local/bin:/usr/bin/X11:/usr/etc:/etc:/sbin:.
  130. export PATH
  131. ;;
  132. HP-UX)
  133. #################
  134. # HP UX
  135. #
  136. PATH=/share/builds/components/jdk/1.1.6/HP-UX:/usr/bin:/opt/ansic/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/nettladm/bin:/opt/graphics/common/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/upgrade/bin:/opt/CC/bin:/opt/aCC/bin:/opt/langtools/bin:/opt/imake/bin:/etc:/usr/etc:/usr/local/bin:/tools/ns/bin:/tools/contrib/bin:/usr/sbin:/usr/local/bin:/tools/ns/bin:/tools/contrib/bin:/usr/sbin:/usr/include/X11R5:.
  137. export PATH
  138. ;;
  139. SCO_SV)
  140. #################
  141. # SCO
  142. #
  143. PATH=/bin:/usr/bin:/tools/ns/bin:/tools/contrib/bin:/usr/sco/bin:/usr/bin/X11:/usr/local/bin:.
  144. export PATH
  145. ;;
  146. FreeBSD)
  147. #################
  148. # FreeBSD
  149. #
  150. PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11R6/bin:/usr/local/java/bin:/usr/local/bin:/usr/ucb:/usr/ccs/bin:/tools/contrib/bin:/tools/ns/bin:.
  151. export PATH
  152. ;;
  153. OSF1)
  154. #################
  155. # DEC OSF1
  156. #
  157. PATH=/share/builds/components/jdk/1.2.2_3/OSF1:/tools/ns-arch/alpha_dec_osf4.0/bin:/tools/ns-arch/soft/cvs-1.8.3/run/default/alpha_dec_osf2.0/bin:/usr/local-alpha-osf/bin:/usr3/local/bin:/usr/local/bin:/usr/sbin:/usr/bin:/bin:/usr/bin/X11:/usr/ucb:.
  158. export PATH
  159. ;;
  160. Linux)
  161. #################
  162. # Linux
  163. #
  164. PATH=/share/builds/components/jdk/1.2.2/Linux:$PATH
  165. export PATH
  166. ;;
  167. esac
  168. ###############################
  169. # Reset any "tracked" aliases #
  170. ###############################
  171. hash -r