This commit is contained in:
Carl Worth 2004-03-30 18:55:48 +00:00
parent 9459871bbf
commit 72667ec568
4 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2004-03-30 Carl Worth <cworth@isi.edu>
* src/Makefile.am (libcairo_la_LIBADD): Add -lz.
2004-03-30 Carl Worth <cworth@isi.edu>
* configure.in: Add checks for Xrender.h in xrender.pc is not

View file

@ -55,4 +55,5 @@ libcairo_la_LDFLAGS = -version-info @VERSION_INFO@ -no-undefined
INCLUDES = -I$(srcdir) $(CAIRO_CFLAGS) $(FONTCONFIG_CFLAGS) $(XRENDER_CFLAGS) $(XCB_CFLAGS) $(PNG_CFLAGS)
libcairo_la_LIBADD = $(CAIRO_LIBS) $(FONTCONFIG_LIBS) $(XRENDER_LIBS) $(XCB_LIBS) $(PNG_LIBS) -lm
libcairo_la_LIBADD = $(CAIRO_LIBS) $(FONTCONFIG_LIBS) $(XRENDER_LIBS) $(XCB_LIBS) $(PNG_LIBS) -lm -lz

View file

@ -496,7 +496,7 @@ _cairo_ft_font_show_glyphs (void *abstract_font,
unsigned char *bitmap;
FT_Load_Glyph (ft->face, glyphs[i].index, FT_LOAD_DEFAULT);
FT_Render_Glyph (glyphslot, FT_RENDER_MODE_NORMAL);
FT_Render_Glyph (glyphslot, ft_render_mode_normal);
width = glyphslot->bitmap.width;
height = glyphslot->bitmap.rows;

View file

@ -496,7 +496,7 @@ _cairo_ft_font_show_glyphs (void *abstract_font,
unsigned char *bitmap;
FT_Load_Glyph (ft->face, glyphs[i].index, FT_LOAD_DEFAULT);
FT_Render_Glyph (glyphslot, FT_RENDER_MODE_NORMAL);
FT_Render_Glyph (glyphslot, ft_render_mode_normal);
width = glyphslot->bitmap.width;
height = glyphslot->bitmap.rows;