Fix to always link tests against locally built library, not installed version.

This commit is contained in:
Carl Worth 2004-10-27 11:42:45 +00:00
parent 1839d679b1
commit 39d57762a6
2 changed files with 4 additions and 1 deletions

View file

@ -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.

View file

@ -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 \