Fix build on cygwin after commit efdf65c0c4fff551fb3cd9104deda9adb6261e22
authorJon TURNEY <jon.turney@dronecode.org.uk>
Mon, 19 Sep 2011 10:17:58 +0000 (06:17 -0400)
committerSøren Sandmann Pedersen <ssp@redhat.com>
Mon, 19 Sep 2011 10:17:58 +0000 (06:17 -0400)
libutils depends on pixman and so needs to preceed it in the link order

Found by tinderbox, see [1]

[1] http://tinderbox.freedesktop.org/builds/2011-09-15-0005/logs/pixman/#build

Signed-off-by: Jon TURNEY <jon.turney at dronecode.org.uk>
test/Makefile.am

index 4268cd7..802d3f4 100644 (file)
@@ -2,7 +2,7 @@ include $(top_srcdir)/test/Makefile.sources
 
 AM_CFLAGS = @OPENMP_CFLAGS@
 AM_LDFLAGS = @OPENMP_CFLAGS@ @TESTPROGS_EXTRA_LDFLAGS@
-LDADD = $(top_builddir)/pixman/libpixman-1.la libutils.la -lm  @PNG_LIBS@
+LDADD = libutils.la $(top_builddir)/pixman/libpixman-1.la -lm  @PNG_LIBS@
 INCLUDES = -I$(top_srcdir)/pixman -I$(top_builddir)/pixman @PNG_CFLAGS@
 
 libutils_la_SOURCES = $(libutils_sources) $(libutils_headers)