Add compatibility defines FONTCONFIG_LIBS, X_LIBS, XRENDER_LIBS to keep automake happy - they look like automake variable names.

This commit is contained in:
Dave Beckett 2003-12-12 16:00:19 +00:00
parent b694e4d1ff
commit 8b00a61e8b
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2003-12-12 Dave Beckett <Dave.Beckett@bristol.ac.uk>
* src/Makefile.am: Add compatibility defines FONTCONFIG_LIBS,
X_LIBS, XRENDER_LIBS to keep automake happy - they look like
automake variable names.
2003-12-12 Carl Worth <cworth@east.isi.edu>
* src/cairo_font.c (_cairo_font_create): Add comment about

View file

@ -9,6 +9,14 @@ if CAIRO_HAS_XLIB_SURFACE
libcairo_xlib_sources = cairo_xlib_surface.c
endif
# These names match automake style variable definition conventions so
# without these lines, automake will complain during the handling of
# the libcairo_la_LIBADD below. (The INCLUDES is an autoconf only
# term and automake does not care about it)
FONTCONFIG_LIBS=@FONTCONFIG_LIBS@
X_LIBS=@X_LIBS@
XRENDER_LIBS=@XRENDER_LIBS@
libcairo_la_SOURCES = \
cairo.c \
cairo.h \