toytoolkit: Remove left-over pixman dependency
authorKristian Høgsberg <krh@bitplanet.net>
Mon, 28 Jan 2013 21:03:51 +0000 (16:03 -0500)
committerKristian Høgsberg <krh@bitplanet.net>
Thu, 14 Feb 2013 20:59:25 +0000 (15:59 -0500)
toytoolkit doesn't use pixman.  Remove the pixman.h include and the
LDADD.

https://bugs.freedesktop.org/show_bug.cgi?id=57812

clients/Makefile.am
clients/window.c

index 18af2c0..621c7c3 100644 (file)
@@ -82,7 +82,6 @@ libtoytoolkit_la_SOURCES =                    \
        workspaces-client-protocol.h
 
 libtoytoolkit_la_LIBADD =                      \
-       $(PIXMAN_LIBS)                          \
        $(CLIENT_LIBS)                          \
        $(CAIRO_EGL_LIBS)                       \
        ../shared/libshared-cairo.la -lrt -lm
@@ -104,7 +103,7 @@ image_LDADD = libtoytoolkit.la
 
 cliptest_SOURCES = cliptest.c
 cliptest_CPPFLAGS = $(AM_CPPFLAGS) $(PIXMAN_CFLAGS)
-cliptest_LDADD = libtoytoolkit.la
+cliptest_LDADD = libtoytoolkit.la $(PIXMAN_LIBS)
 
 dnd_SOURCES = dnd.c
 dnd_LDADD = libtoytoolkit.la
index b7abfc8..3d23b3a 100644 (file)
@@ -39,8 +39,6 @@
 #include <sys/epoll.h>
 #include <sys/timerfd.h>
 
-#include <pixman.h>
-
 #ifdef HAVE_CAIRO_EGL
 #include <wayland-egl.h>