home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / alt / gopher / 1440 < prev    next >
Encoding:
Text File  |  1992-12-22  |  2.1 KB  |  59 lines

  1. Newsgroups: alt.gopher
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!kcgl1.eng.ohio-state.edu!JONESD
  3. From: JONESD@kcgl1.eng.ohio-state.edu (David Jones)
  4. Subject: Re: job.acs.ohio-state.edu (link?)
  5. Message-ID: <1992Dec22.034541.11486@magnus.acs.ohio-state.edu>
  6. Sender: news@magnus.acs.ohio-state.edu
  7. Nntp-Posting-Host: kcgl1.eng.ohio-state.edu
  8. Organization: The Ohio State University
  9. References: <Stafford-211292145030@stafford.winona.msus.edu>
  10. Date: Tue, 22 Dec 1992 03:45:41 GMT
  11. Lines: 46
  12.  
  13. >Could he post back and perhaps offer the compilation
  14. >command procedure or explain why I've got:
  15. >
  16. >%LINK-W-NUDFSYMS, 3 undefined symbols:
  17. >%LINK-I-UDFSYM,         DCACHE_RESTORE
  18. >%LINK-I-UDFSYM,         DCACHE_SAVE
  19. >%LINK-I-UDFSYM,         DCACHE_SEARCH
  20. >
  21.  
  22. You got that because you tried to link the program with the LINK_CLIENT.COM
  23. procedure that is part of the boombox distribution.  GOPHER_CLIENT.SHARE
  24. doesn't include that file, any future versions will.  Those routines are
  25. defined in a new source file, they manage the cache of previously fetched
  26. directories.
  27.  
  28. Here is a LINK_CLIENT.COM that has a good chance of working:
  29. ----------------------------------------------------------------------------
  30. $ IF P1 .EQS. ""
  31. $ THEN
  32. $    IF ( F$getdvi("INET0:","EXISTS") ) THEN P1 = "WOLLONGONG"
  33. $    IF ( f$getdvi("BG:","EXISTS") ) THEN P1 = "UCX"
  34. $    IF ( f$getdvi("MULTINET:","EXISTS") )
  35. $    THEN
  36. $    P1 = "MULTINET"
  37. $    CREATE MULTINET.OPT
  38. GOPHER.OBJ
  39. CSO.OBJ,ERROR.OBJ,GLOBALS.OBJ,DCACHE.OBJ
  40. GOPHERSTRUCT.OBJ,MANAGER.OBJ,OURUTILS.OBJ,SUBPROCS.OBJ,UTIL.OBJ
  41. sys$share:vaxcrtl/share
  42. multinet:multinet_socket_library/share
  43. $    ENDIF
  44. $ ENDIF
  45. $!
  46. $ set noon
  47. $ verify = f$verify(1)
  48. $ link/exe=gopher 'P1'.OPT/OPTION
  49. $ verify = 'f$verify(verify)
  50. $ exit $status
  51. -----------------------------------------------------------------------------
  52.  
  53. David L. Jones               |      Phone:    (614) 292-6929
  54. Ohio State Unviversity       |      Internet:
  55. 1971 Neil Ave. Rm. 406       |               jonesd@kcgl1.eng.ohio-state.edu
  56. Columbus, OH 43210           |               jones-d@eng.ohio-state.edu
  57.  
  58. Disclaimer: A repudiation of a claim.
  59.