mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-04 20:20:19 +01:00
build: Add explicit dependcy to cxx lib
Otherwise the build will fail because it doesn't add the dependency manually. https://bugs.freedesktop.org/show_bug.cgi?id=29114
This commit is contained in:
parent
6b92d5a0f9
commit
51b0c21f02
2 changed files with 4 additions and 1 deletions
|
|
@ -41,6 +41,9 @@ libcairoboilerplate_cxx_la_LIBADD = $(top_builddir)/src/libcairo.la \
|
|||
$(CAIRO_LIBS) \
|
||||
$(CAIROBOILERPLATE_LIBS) \
|
||||
$(NULL)
|
||||
libcairoboilerplate_la_DEPENDENCIES = \
|
||||
$(cxx_boilerplate_lib) \
|
||||
$(NULL)
|
||||
|
||||
if CAIRO_HAS_DL
|
||||
libcairoboilerplate_la_LIBADD += -ldl
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ libcairo_la_SOURCES = \
|
|||
libcairo_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(CAIRO_LIBTOOL_VERSION_INFO) -no-undefined $(export_symbols)
|
||||
libcairo_la_LIBADD = $(CAIRO_LIBS) \
|
||||
$(cairo_cxx_lib)
|
||||
libcairo_la_DEPENDENCIES = $(cairo_def_dependency)
|
||||
libcairo_la_DEPENDENCIES = $(cairo_def_dependency) $(cairo_cxx_lib)
|
||||
|
||||
# Special headers
|
||||
cairoinclude_HEADERS += $(top_srcdir)/cairo-version.h
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue