home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / windows / x / 14443 < prev    next >
Encoding:
Text File  |  1992-07-27  |  2.1 KB  |  66 lines

  1. Newsgroups: comp.windows.x
  2. Path: sparky!uunet!darwin.sura.net!wupost!gumby!destroyer!sol.ctr.columbia.edu!carson
  3. From: carson@cs.columbia.edu (Carson A. Gaspar)
  4. Subject: Problems with Type1 font support - X11R5p14 SunOs 4.1.2
  5. Organization: Columbia University Department of Computer Science
  6. References: <#yhmwhc.qualtrak@netcom.com> <WARE.92Jul27142118@organ.cis.ohio-state.edu>
  7. Message-ID: <1992Jul27.183722.25789@ctr.columbia.edu>
  8. Distribution: usa
  9. Sender: news@ctr.columbia.edu (The Daily Lose)
  10. Date: Mon, 27 Jul 1992 18:37:22 GMT
  11. X-Posted-From: shadow.cs.columbia.edu
  12. X-Posted-Through: sol.ctr.columbia.edu
  13. Lines: 51
  14.  
  15. When I make all in mit/fonts/lib/fonts/Type1, I get the following
  16. error: 
  17.  
  18. rm -f t1funcs.o
  19. cc -c -O -pipe -I../../../.././fonts/lib/font/include
  20. -I../../../.././fonts/include -I../../../.././fonts/../include
  21. -I../../../.././fonts/../.  -I../../../../.  -DXDMCP -DSHAPE -DXIDLE
  22. -DMULTIBUFFER -DMITMISC -DPEXEXT -DMITSHM  -DXTRAP=32 -DVERBOSE
  23. -DINCLUDE_ALLOCA_H     t1funcs.c
  24. "t1funcs.c", line 692: get_bitmaps undefined
  25. "t1funcs.c", line 695: get_extents undefined
  26. make: *** [t1funcs.o] Error 1
  27.  
  28. cc/gcc give the same error, gcc with slightly more context.  The code
  29. generating the error is this:
  30.  
  31. int Type1OpenScalable (fpe, ppFont, flags, entry, fileName, vals, format, fmask)
  32.     FontPathElementPtr  fpe;
  33.     FontPtr             *ppFont;
  34.     int                 flags;
  35.     FontEntryPtr        entry;
  36.     char                *fileName;
  37.     FontScalablePtr     vals;
  38.     fsBitmapFormat      format;
  39.     fsBitmapFormatMask  fmask;
  40. {
  41. .
  42. .
  43.        FontPtr     pFont;
  44. .
  45. .
  46.        pFont->get_bitmaps = GenericGetBitmaps;
  47.        pFont->get_metrics = Type1GetMetrics;
  48.        pFont->get_glyphs  = Type1GetGlyphs;
  49.        pFont->get_extents = GenericGetExtents;
  50.        pFont->unload_font = Type1CloseFont;
  51.        pFont->refcnt = 0;
  52.        pFont->maxPrivate = -1;
  53.        pFont->devPrivates = 0;
  54.  
  55.  
  56.  
  57. I can't figure out where the FontPtr type is defined, and can't find
  58. any references to get_bitmaps or get_extents.  What's going on?  As of
  59. X11R5p12, I had no problems.
  60.  
  61. -- 
  62.                 Carson Gaspar
  63.             carson@cs.columbia.edu
  64.