mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-08 07:58:02 +02:00
Fix to always link tests against locally built library, not installed version.
This commit is contained in:
parent
1839d679b1
commit
39d57762a6
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2004-10-27 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* test/Makefile.am (AM_LDFLAGS): Fix to always link tests against
|
||||
locally built library, not installed version.
|
||||
|
||||
* test/fill_rule.c: Add new test for cairo_set_fill_rule. Also
|
||||
demonstrate some of the current tessellation bugs with the version
|
||||
of the code that is in CVS.
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ check_PROGRAMS = $(TESTS)
|
|||
# problem.
|
||||
INCLUDES = -D_GNU_SOURCE -I$(srcdir) $(CAIRO_CFLAGS) -I$(srcdir)/../src
|
||||
|
||||
AM_LDFLAGS = $(CAIRO_LIBS) -L../src -lcairo
|
||||
AM_LDFLAGS = $(CAIRO_LIBS) ../src/libcairo.la
|
||||
|
||||
cairo_test_lib =\
|
||||
cairo_test.c \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue