InitEnvironment.tcl 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Copyright (c) 1999-2014 OPEN CASCADE SAS
  2. #
  3. # This file is part of Open CASCADE Technology software library.
  4. #
  5. # This library is free software; you can redistribute it and/or modify it under
  6. # the terms of the GNU Lesser General Public License version 2.1 as published
  7. # by the Free Software Foundation, with special exception defined in the file
  8. # OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
  9. # distribution for complete text of the license and disclaimer of any warranty.
  10. #
  11. # Alternatively, this file may be used under the terms of Open CASCADE
  12. # commercial license or contractual agreement.
  13. ################################################
  14. #
  15. # find the name of the station
  16. #
  17. ################################################
  18. proc wokstation {} {
  19. set LINE_FROM_UNAME [ exec uname -a ] ;
  20. if { [ regexp SunOS $LINE_FROM_UNAME ] } {
  21. return "sun"
  22. } elseif { [ regexp IRIX $LINE_FROM_UNAME ] } {
  23. return "sil"
  24. } elseif { [ regexp OSF $LINE_FROM_UNAME ] } {
  25. return "ao1"
  26. } elseif { [ regexp HP-UX $LINE_FROM_UNAME ] } {
  27. return "hp"
  28. } elseif { [ regexp Linux $LINE_FROM_UNAME ] } {
  29. return "lin"
  30. } elseif { [ regexp FreeBSD $LINE_FROM_UNAME ] } {
  31. return "bsd"
  32. } elseif { [ regexp Darwin $LINE_FROM_UNAME ] } {
  33. return "mac"
  34. } elseif { [ regexp AIX $LINE_FROM_UNAME ] } {
  35. return "aix"
  36. } else {
  37. return "wnt"
  38. }
  39. }
  40. set env(STATION) [ wokstation ]
  41. # PMN LE 6/06/1997
  42. # Ce type d'environnement n'a rien n'a faire dans les sources
  43. # On doit le faire dans des ilots.tcl ou des ud.tcl ou bien
  44. # dans les procedures de test externes a WOK
  45. #set env(WBCONTAINER) /adv_20/BAG
  46. #set env(WBROOT) "/adv_21/MDL/k1deb/ref"