home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / next / misc / 21867 < prev    next >
Encoding:
Text File  |  1992-11-10  |  2.3 KB  |  68 lines

  1. Newsgroups: comp.sys.next.misc
  2. Path: sparky!uunet!noc.near.net!nic.umass.edu!news.mtholyoke.edu!news.unomaha.edu!nevada.edu!oliverm
  3. From: oliverm@nevada.edu (Moises Oliveira)
  4. Subject: Re: Distinguishing 3.0 binaries
  5. Message-ID: <1992Nov11.022044.9702@nevada.edu>
  6. Sender: news@nevada.edu (USENET News System)
  7. Nntp-Posting-Host: helios.nevada.edu
  8. Organization: University of Nevada System Computing Services
  9. References: <BxIMsr.LKG@mentor.cc.purdue.edu>
  10. Date: Wed, 11 Nov 1992 02:20:44 GMT
  11. Lines: 55
  12.  
  13. In article <BxIMsr.LKG@mentor.cc.purdue.edu> ab@nova.cc.purdue.edu (Allen B) writes:
  14. >Could anyone please tell me an easy way to tell (on a 3.0
  15. >system) whether a binary is 3.0 only or 2.x also.
  16. >
  17.  
  18. >I'm having a devil of a time getting submitters to tell me
  19. >and I'm tired of sending out form letters (especially to
  20. >those who don't give me Copyable email addresses @*#!).  I
  21. >guess I'll change the submissions README to stress these
  22. >things. 
  23. >
  24.  
  25. Yes please do so, and while you're at it, emphasize that if they are
  26. going to provide binaries, the should "make install" to create
  27. a stripped version.
  28.  
  29. >In related news, thanks for being patient (well, most of
  30. >you anyway :-) ).  I've been out of the office a lot lately
  31. >fixing other people's machines and haven't had much time
  32. >to manage the Archives.  Though we still have a few NeXTs
  33. >that appear to be cursed, things are settling down. 
  34. >
  35.  
  36. We apprecaite it!
  37.  
  38. >If you could post under this title or email to
  39. >archive-management@nova.cc.purdue.edu it'd be much
  40. >appreciated.  Thanks everyone! 
  41. >
  42. >Allen B (Blowing the dust off his Archivist's hat)
  43.  
  44. Since you're cleaning up, the least I can do is help.  the program you need to
  45. use is called otool, and comes with the extended release.
  46.  
  47. type otool -L /LocalApps/Local/Viewer  (or whatever the app name is)
  48. a 2.x app will return
  49.         /usr/shlib/libNeXT_s.C.shlib (minor version 52)
  50.         /usr/shlib/libsys_s.B.shlib (minor version 44)
  51.  (note the VERSION numbers, 52 and 44 for 2.x)
  52. There may be other shared libraries listed but those two will be present
  53. in every NeXTSTEP app.  (and some non apps)
  54.  
  55. a 3.0 system will return 
  56.         /usr/shlib/libMedia_s.A.shlib (minor version 12)
  57.         /usr/shlib/libNeXT_s.C.shlib (minor version 57)
  58.         /usr/shlib/libsys_s.B.shlib (minor version 55)
  59.  
  60. Note that the version number is up to 57 and 55, and a new library libMedia
  61. has been added.
  62.  
  63. --enjoy
  64.  
  65.  
  66.  
  67.  
  68.