mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-05 10:20:16 +01:00
The cairo-missing library provides the functions which are needed in order to correctly compile cairo (or its utilities) and which were not found during configuration. Fixes the build on MacOS X Lion, which failed because of collisons between the cairo internal getline and strndup and those in libc: cairo-analyse-trace.c:282: error: static declaration of ‘getline’ follows non-static declaration /usr/include/stdio.h:449: error: previous declaration of ‘getline’ was here cairo-analyse-trace.c:307: error: static declaration of ‘strndup’ follows non-static declaration ...
10 lines
258 B
Makefile
10 lines
258 B
Makefile
include $(top_srcdir)/util/cairo-missing/Makefile.sources
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src
|
|
|
|
lib_LTLIBRARIES = libcairo-missing.la
|
|
|
|
libcairo_missing_la_SOURCES = \
|
|
$(libcairo_missing_sources) \
|
|
$(libcairo_missing_headers) \
|
|
$(NULL)
|