home *** CD-ROM | disk | FTP | other *** search
- matherr.c
- line 28
- change
- int matherr(exc)
- struct exception *exc;
- to
- #if 0
- int matherr(exc)
- struct exception *exc;
- #else
- int matherr(exc)
- struct libm_exception *exc;
- #endif
- fontpath.h
- create, with contents
- #define FONTPATH ".;/usr/local/lib/groff/font;/usr/local/lib/font;/usr/lib/font"
- version.c
- create, with contents
- const char* version_string="1.05";
- fontfile.c
- line 64
- change
- strcat(cl_font_dirs, ":");
- to
- strcat(cl_font_dirs, ";");
- line 87
- change
- const char *p = strchr(dirs, ':');
- to
- const char *p = strchr(dirs, ';');
-