home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / getstats.zip / README.vms < prev    next >
Text File  |  1995-04-11  |  2KB  |  56 lines

  1.  
  2. README for getstats VMS users
  3.  
  4. 2/1/94
  5.  
  6. *Many* thanks go to Mark Donszelmann (donszelmann@vxcern.cern.ch) for
  7. porting the code and reporting bugs! The following files will have to be
  8. extracted and used when running/compilng the program.
  9.  
  10. 2/24/94
  11.  
  12. Added support for VMS systems running UCX  Danny Mayer
  13.                                            (mayer@devlpr.enet.dec.com)
  14.  
  15. --
  16.  
  17. getstats.opt    (option file to be used for linking...)
  18. setup.com       (command file to set up the command to run as under Unix.
  19.                  this is normally not clear for VMS users...)
  20. make.com        (command file to compile getstats)
  21.  
  22. --
  23. **DUNS************ getstats_multinet_vax.opt *******************************
  24. IDENT="Getstats 1.1B2"
  25. sys$share:vaxcrtl/share
  26. multinet:multinet_socket_library/share
  27. **DUNS************ getstats_ucx_vax.opt ************************************
  28. IDENT="Getstats 1.1B2"
  29. SYS$SHARE:VAXCRTL/SHARE
  30. SYS$LIBRARY:VAXCCURSE/LIBRARY
  31. SYS$LIBRARY:UCX$IPC.OLB/LIBRARY
  32. **DUNS************ getstats_ucx_axp.opt ************************************
  33. IDENT="Getstats 1.1B2"
  34. sys$share:ucx$ipc_shr/share
  35. **DUNS************ setup.com ***********************************************
  36. $ getstats :== "$ disk$delphi1:[donszelmann.getstats]getstats.exe"
  37. $ getstats_d :== "$ disk$delphi1:[donszelmann.getstats]getstats_d.exe"
  38. **DUNS************ make.com ************************************************
  39. $!** getstats.com
  40. $ TCP_TYPE = P1
  41. $ IF TCP_TYPE .EQS. "" Then TCP_TYPE = "UCX"    ! Default to UCX
  42. $ CPU := VAX
  43. $ IF F$GETSYI("CPU") .GE. 128 Then CPU := AXP   ! Find the CPU type
  44. $ DEB_FLAG = ""
  45. $ LINK_FLAG = ""
  46. $ EXE_FLAG = ""
  47. $ IF P2 .EQS. "DEB"
  48. $    Then
  49. $    DEB_FLAG = "/debug/noopt"
  50. $    LINK_FLAG = "/debug"
  51. $    EXE_FLAG = "_D"
  52. $ Endif
  53. $ cc 'DEB_FLAG' /define=('TCP_TYPE'=1)  getstats.c
  54. $ link 'LINK_FLAG' /exe=getstats'EXE_FLAG'.exe getstats,getstats_'TCP_TYPE'_'CP
  55. ****************************************************************************
  56.