morefiles.doc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. Notes about MoreFiles, dnr.c & other non-Tcl source files
  2. ---------------------------------------------------------
  3. RCS: @(#) $Id: morefiles.doc,v 1.2 1998/09/14 18:40:04 stanton Exp $
  4. The Macintosh distribution uses several source files that don't
  5. actually ship with Tcl.  This sometimes causes problems or confusion
  6. to developers.  This document should help clear up a few things.
  7. dnr.c
  8. -----
  9. We have found a way to work around some bugs in dnr.c that 
  10. Apple has never fixed even though we sent in numerous bug reports.
  11. The file tclMacDNR.c simply set's some #pragma's and the includes
  12. the Apple dnr.c file.  This should work the problems that many of
  13. you have reported with dnr.c.
  14. More Files
  15. ----------
  16. Macintosh Tcl/Tk also uses Jim Luther's very useful package called
  17. More Files.  More Files fixes many of the broken or underfunctional
  18. parts of the file system.
  19. More Files can be found on the MetroWerks CD and Developer CD from
  20. Apple.  You can also down load the latest version from:
  21. ftp://members.aol.com/JumpLong/
  22. The package can also be found at the home of Tcl/Tk for the mac:
  23. ftp://ftp.sunlabs.com/pub/tcl/mac/
  24. I used to just link the More Files library in the Tcl projects.  
  25. However, this caused problems when libraries wern't matched correctly.
  26. I'm now including the files in the Tcl project directly.  This
  27. solves the problem of missmatched libraries - but may not always
  28. compile.
  29. If you get a compiliation error in MoreFiles you need to contact
  30. Jim Luther.  His email address:
  31. JumpLong@aol.com
  32. The version of More Files that we use with Tcl/Tk is 1.4.3.  Early
  33. version may work as well..
  34. Unfortunantly, there is one bug in his library (in 1.4.3).  The bug is
  35. in the function FSpGetFullPath found in the file FullPath.c.  After
  36. the call to PBGetCatInfoSync you need to change the line:
  37.     if ( result == noErr )
  38. to:
  39.     if ( (result == noErr) || (result == fnfErr) )
  40. The latest version of More Files is 1.4.6.  Unfortunantly, this
  41. version has a bug that keeps it from working with shared libraries
  42. right out of the box.  If you want to use 1.4.6 you can but you will
  43. need to make the following fix:
  44. In the file "Opimization.h" in the More Files package you
  45. need to remove the line "#pragma internal on".  And in the
  46. file "OptimazationEnd.h" you need to remove the line
  47. "#pragma internal reset".
  48. Note: the version of MoreFile downloaded from the Sun Tcl/Tk site
  49. will have the fix included.  (If you want you can send email to
  50. Jim Luther suggesting that he use Tcl for regression testing!)
  51. Ray Johnson