please, keep the use of || instead of -o, there is a reason for that (same for && and -a).
Vincent On Thu, Nov 15, 2012 at 3:35 AM, Enlightenment SVN <[email protected]> wrote: > Log: > Fix static building of the X11 engines > > > Author: sachiel > Date: 2012-11-14 18:35:55 -0800 (Wed, 14 Nov 2012) > New Revision: 79307 > Trac: http://trac.enlightenment.org/e/changeset/79307 > > Modified: > trunk/efl/configure.ac > > Modified: trunk/efl/configure.ac > =================================================================== > --- trunk/efl/configure.ac 2012-11-15 01:50:19 UTC (rev 79306) > +++ trunk/efl/configure.ac 2012-11-15 02:35:55 UTC (rev 79307) > @@ -1385,7 +1385,7 @@ > # If software_x11 is available, define everything needed for X11 > > have_evas_engine_software_x11="no" > -if test "x${have_evas_engine_software_xlib}" = "xyes" || test > "x${have_evas_engine_software_xcb}" = "xyes" ; then > +if test "x${have_evas_engine_software_xlib}" = "xyes" -o > "x${have_evas_engine_software_xlib}" = "xstatic" || test > "x${have_evas_engine_software_xcb}" = "xyes" -o > "x${have_evas_engine_software_xcb}" = "xstatic" ; then > have_evas_engine_software_x11="yes" > AC_DEFINE_UNQUOTED([BUILD_ENGINE_SOFTWARE_X11], [1], [Build software X11 > engine]) > fi > @@ -1455,7 +1455,7 @@ > # If opengl_x11 is available, define everything needed for X11 > > have_evas_engine_gl_x11="no" > -if test "x${have_evas_engine_gl_xlib}" = "xyes" || test > "x${have_evas_engine_gl_xcb}" = "xyes" ; then > +if test "x${have_evas_engine_gl_xlib}" = "xyes" -o > "x${have_evas_engine_gl_xlib}" = "xstatic" || test > "x${have_evas_engine_gl_xcb}" = "xyes" -o "x${have_evas_engine_gl_xcb}" = > "xstatic" ; then > have_evas_engine_gl_x11="yes" > AC_DEFINE_UNQUOTED([BUILD_ENGINE_GL_X11], [1], [Build OpenGL X11 engine]) > fi > > > ------------------------------------------------------------------------------ > Monitor your physical, virtual and cloud infrastructure from a single > web console. Get in-depth insight into apps, servers, databases, vmware, > SAP, cloud infrastructure, etc. Download 30-day Free Trial. > Pricing starts from $795 for 25 servers or applications! > http://p.sf.net/sfu/zoho_dev2dev_nov > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
