home *** CD-ROM | disk | FTP | other *** search
/ Internet File Formats / InternetFileFormatsCD.bin / text / troff / dos / lib / djgpp.fix next >
Encoding:
Text File  |  1992-04-17  |  688 b   |  31 lines

  1. matherr.c
  2.    line 28
  3.     change 
  4.        int matherr(exc)
  5.        struct exception *exc;
  6.     to
  7.        #if 0
  8.        int matherr(exc)
  9.        struct exception *exc;
  10.        #else
  11.        int matherr(exc)
  12.        struct libm_exception *exc;
  13.        #endif
  14. fontpath.h
  15.   create, with contents
  16.      #define FONTPATH ".;/usr/local/lib/groff/font;/usr/local/lib/font;/usr/lib/font"
  17. version.c
  18.   create, with contents
  19.      const char* version_string="1.05";
  20. fontfile.c
  21.    line 64
  22.      change
  23.         strcat(cl_font_dirs, ":");
  24.      to
  25.         strcat(cl_font_dirs, ";");
  26.    line 87
  27.      change 
  28.     const char *p = strchr(dirs, ':');
  29.      to
  30.     const char *p = strchr(dirs, ';');
  31.