changes 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. add mkfile to each directory for plan9.
  2. common:
  3. add getopt.c to common.
  4. insert #include <sys/types.h> before #include <fcntl.h> for off_t in bbox.c.
  5. comment out strtok(), ftell(), sqrt() atan2() defs in ext.h.
  6. insert #include <sys/types.h> before #include <fcntl.h> for off_t in misc.c.
  7. comment out RUNELIB on #endif line in rune.c
  8. add defined(plan9) in tempnam.c.
  9. change path.h for plan9!
  10. cropmarks:
  11. add cropmarks.rc to cropmarks.
  12. download:
  13. move #include <sys/types.h> before #include <fcntl.h> for off_t in download.c.
  14. dpost:
  15. insert #include <sys/types.h> before #include <fcntl.h> for off_t in dpost.c.
  16. added
  17. #ifdef plan9
  18. #define isascii(c) ((unsigned char)(c)<=0177)
  19. #endif
  20. after #include <ctype.h> in dpost.c.
  21. grabit:
  22. add grabit.rc to grabit.
  23. hardcopy:
  24. add hardcopy.rc to hardcopy.
  25. postbgi:
  26. insert #include <sys/types.h> before #include <fcntl.h> for off_t in postbgi.c.
  27. added
  28. #ifdef plan9
  29. #define isascii(c) ((unsigned char)(c)<=0177)
  30. #endif
  31. after #include <ctype.h> in postbgi.c.
  32. postdaisy:
  33. insert #include <sys/types.h> before #include <fcntl.h> for off_t in postdaisy.c.
  34. added
  35. #ifdef plan9
  36. #define isascii(c) ((unsigned char)(c)<=0177)
  37. #endif
  38. after #include <ctype.h> in postdaisy.c.
  39. postdmd:
  40. insert #include <sys/types.h> before #include <fcntl.h> for off_t in postdmd.c.
  41. added
  42. #ifdef plan9
  43. #define isascii(c) ((unsigned char)(c)<=0177)
  44. #endif
  45. after #include <ctype.h> in postdmd.c.
  46. postgif:
  47. insert #include <sys/types.h> before #include <fcntl.h> for off_t in postgif.c.
  48. added
  49. #ifdef plan9
  50. #define isascii(c) ((unsigned char)(c)<=0177)
  51. #endif
  52. after #include <ctype.h> in postgif.c.
  53. download:
  54. added #include <string.h> in download.c.
  55. dpost:
  56. added #include <string.h> in draw.c.
  57. picpack:
  58. added #include <string.h> in picpack.c.
  59. postmd:
  60. insert #include <sys/types.h> before #include <fcntl.h> for off_t in postmd.c.
  61. added
  62. #ifdef plan9
  63. #define isascii(c) ((unsigned char)(c)<=0177)
  64. #endif
  65. after #include <ctype.h> in postmd.c.
  66. added #include <string.h> in picpack.c.
  67. postprint:
  68. insert #include <sys/types.h> before #include <fcntl.h> for off_t in postprint.c.
  69. added
  70. #ifdef plan9
  71. #define isascii(c) ((unsigned char)(c)<=0177)
  72. #endif
  73. after #include <ctype.h> in postprint.c.
  74. postreverse:
  75. insert #include <sys/types.h> before #include <fcntl.h> for off_t in postreverse.c.
  76. posttek:
  77. insert #include <sys/types.h> before #include <fcntl.h> for off_t in posttek.c.