home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / os / os2 / programm / 6249 < prev    next >
Encoding:
Internet Message Format  |  1992-11-07  |  1.9 KB

  1. Path: sparky!uunet!vnet.ibm.com
  2. From: francis@vnet.ibm.com (Tim Francis)
  3. Message-ID: <19921106.073940.447@almaden.ibm.com>
  4. Date: Fri, 6 Nov 92 10:39:27 EST
  5. Subject: NMake, support long filename ?
  6. Newsgroups: comp.os.os2.programmer
  7. References: <1992Nov6.020021.29864@nuscc.nus.sg>
  8. Reply-To: francis@vnet.ibm.com
  9. Organization: IBM Canada Lab, WorkFrame/2 development
  10. Disclaimer: This posting represents the poster's views, not those of IBM
  11. Lines: 29
  12.  
  13. In article <1992Nov6.020021.29864@nuscc.nus.sg>,
  14. scstech@solomon.technet.sg (Wilson Lau) writes:
  15. >
  16. >Howdy,
  17. >
  18. >    I'm new to OS/2 and I'm trying to port an application from Unix to OS/2.  While using the NMAKE utility from the Developer's Toolkit, I got a warning
  19. >message on a filename that was longer than 8 characters in length.  Is there
  20. >an option/fix to resolve this ?  I was happy to note that the HP partition now
  21. >supports long filenames but looks like I still have to be constrained by 8-char
  22. >filename limits.  Doesnt't make much sense here.  I would be grateful if
  23. >anyone out there has a solution to this.  Thanks for your kind attention.
  24.  
  25. There is a bug in the current version of NMAKE, that restricts the use
  26. of HPFS filenames to a OS/2 versions with a minor version >=2 (it should
  27. have also checked the major version).   You can phone the OS/2 support
  28. line (1-800-3IBM-OS2, I think) and request a fixed version of NMAKE --
  29. sorry, I don't have the APAR number.   If you feel adventurous, you can
  30. patch the code yourself.  WARNING: Making the following patch is not
  31. supported!!!!  If in doubt, phone the support line and get the real fix.
  32.  
  33. For NMAKE version 2.000.000, file size 88013 and file date 3-30-92
  34. use the PATCH utility and specify file offset 7B34.  The data at this
  35. location should be:
  36.    80 3E 6D 15 14 ...
  37. The 14 is the version number.  Change this to 00.  Thus the data
  38. should now be:
  39.    80 3E 6D 15 00 ...
  40.  
  41. NMAKE will now support HPFS filenames.   -tim
  42.