From a71c7d1f68fadccd7cc49b01d18eb94599d521a6 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 27 Jul 2011 07:40:19 +0000 Subject: [PATCH] Ecore_X: For some very odd reason, certain *buntu systems will not build our ecore_xcb without having pixman_clags & libs as separate variables here...works on every other system I've tried, but eh it's *buntu .. their stupid :P SVN revision: 61796 --- legacy/ecore/src/lib/ecore_x/xcb/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legacy/ecore/src/lib/ecore_x/xcb/Makefile.am b/legacy/ecore/src/lib/ecore_x/xcb/Makefile.am index 203bfe026a..0dcdad476d 100644 --- a/legacy/ecore/src/lib/ecore_x/xcb/Makefile.am +++ b/legacy/ecore/src/lib/ecore_x/xcb/Makefile.am @@ -20,6 +20,7 @@ AM_CPPFLAGS = \ @XCB_CURSOR_CFLAGS@ \ @XCB_DRI_CFLAGS@ \ @XCB_CFLAGS@ \ + @PIXMAN_CFLAGS@ \ -I$(top_srcdir)/src/lib/ecore \ -I$(top_srcdir)/src/lib/ecore_x \ -I$(top_srcdir)/src/lib/ecore_input \ @@ -85,6 +86,7 @@ libecore_x_xcb_la_LIBADD = \ @XCB_CURSOR_LIBS@ \ @XCB_DRI_LIBS@ \ @XCB_LIBS@ \ + @PIXMAN_LIBS@ \ $(top_builddir)/src/lib/ecore/libecore.la \ $(top_builddir)/src/lib/ecore_input/libecore_input.la \ @EINA_LIBS@ \