On Wed, 27 Jul 2011, Enlightenment SVN wrote:
> Log: > Ecore: Fix configure.ac for dumb systems that cannot find pixman > without being explicitly told where it is. ????? It's not a problem of a system. It's pkg-config ! The problem is elsewhere, you're just doing a bad hack Vincent > > > > Author: devilhorns > Date: 2011-07-27 00:40:55 -0700 (Wed, 27 Jul 2011) > New Revision: 61797 > Trac: http://trac.enlightenment.org/e/changeset/61797 > > Modified: > trunk/ecore/configure.ac > > Modified: trunk/ecore/configure.ac > =================================================================== > --- trunk/ecore/configure.ac 2011-07-27 07:40:19 UTC (rev 61796) > +++ trunk/ecore/configure.ac 2011-07-27 07:40:55 UTC (rev 61797) > @@ -784,12 +784,26 @@ > fi > > ## x11-xcb > - PKG_CHECK_MODULES(XCB, xcb xcb-shm xcb-icccm xcb-image xcb-keysyms > pixman-1, > + PKG_CHECK_MODULES(XCB, xcb xcb-shm xcb-icccm xcb-image xcb-keysyms, > [ have_ecore_x_xcb="yes" > - requirements_ecore_x="xcb xcb-shm xcb-icccm xcb-image xcb-keysyms > pixman-1 ${requirements_ecore_x}" ], > + requirements_ecore_x="xcb xcb-shm xcb-icccm xcb-image xcb-keysyms > ${requirements_ecore_x}" ], > [ have_ecore_x_xcb="no" ]) > > if test "x$have_ecore_x_xcb" = "xyes" ; then > + > + PKG_CHECK_MODULES([PIXMAN], > + [pixman-1], > + [ > + have_pixman="yes" > + AC_DEFINE(HAVE_PIXMAN, 1, [have pixman for rendering]) > + requirements_ecore_x="pixman-1 ${requirements_ecore_x}" > + ], > + [ > + if test "x${want_pixman}" = "xyes" -a "x${use_strict}" = "xyes" ; then > + AC_MSG_ERROR([Pixman not found (strict dependencies checking)]) > + fi > + ]) > + > if test "x$want_ecore_x_composite" != "xno"; then > PKG_CHECK_MODULES(XCB_COMPOSITE, xcb-composite, > [ have_ecore_x_xcb_composite="yes" > > > ------------------------------------------------------------------------------ > Got Input? Slashdot Needs You. > Take our quick survey online. Come on, we don't ask for help often. > Plus, you'll get a chance to win $100 to spend on ThinkGeek. > http://p.sf.net/sfu/slashdot-survey > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > > ------------------------------------------------------------------------------ Got Input? Slashdot Needs You. Take our quick survey online. Come on, we don't ask for help often. Plus, you'll get a chance to win $100 to spend on ThinkGeek. http://p.sf.net/sfu/slashdot-survey _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
