mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-31 17:10:15 +01:00
Add -lz.
This commit is contained in:
parent
9459871bbf
commit
72667ec568
4 changed files with 8 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue