conform: Put xinput enabling under guards
authorEmmanuele Bassi <ebassi@gnome.org>
Wed, 20 Jun 2012 07:50:48 +0000 (08:50 +0100)
committerEmmanuele Bassi <ebassi@gnome.org>
Wed, 20 Jun 2012 07:53:46 +0000 (08:53 +0100)
Calling clutter_x11_* API should be done only under the platform
specific guards we provide with Clutter.

https://bugzilla.gnome.org/show_bug.cgi?id=678423

tests/conform/test-conform-common.c

index 2a80166..09474bc 100644 (file)
@@ -31,7 +31,7 @@ test_conform_simple_fixture_setup (TestConformSimpleFixture *fixture,
                 "$ make test-report");
   counter++;
 
-#ifdef HAVE_CLUTTER_GLX
+#ifdef CLUTTER_WINDOWING_X11
   {
     /* on X11 we need a display connection to run the test suite */
     const gchar *display = g_getenv ("DISPLAY");
@@ -43,9 +43,10 @@ test_conform_simple_fixture_setup (TestConformSimpleFixture *fixture,
         exit (EXIT_SUCCESS);
       }
   }
-#endif
 
+  /* enable XInput support */
   clutter_x11_enable_xinput ();
+#endif
 
   g_assert (clutter_init (shared_state->argc_addr, shared_state->argv_addr)
             == CLUTTER_INIT_SUCCESS);