From: Jon TURNEY Date: Mon, 19 Sep 2011 10:17:58 +0000 (-0400) Subject: Fix build on cygwin after commit efdf65c0c4fff551fb3cd9104deda9adb6261e22 X-Git-Tag: 1.0_branch~186 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3432e1a3444a55f71e294da7d350957a8e1232c3;p=profile%2Fivi%2Fpixman.git Fix build on cygwin after commit efdf65c0c4fff551fb3cd9104deda9adb6261e22 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 --- diff --git a/test/Makefile.am b/test/Makefile.am index 4268cd7..802d3f4 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -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)