Emmanuele Bassi 8249e48802 Clean up the windowing system defines
Instead of defining new symbols for the windowing systems enabled at
configure time, we can reuse the same symbols for both the compile time
and run time checks, e.g.:

  #ifdef CLUTTER_WINDOWING_X11
    if (clutter_check_windowing_backend (CLUTTER_WINDOWING_X11))
      /* use the clutter_x11_* API */
    else
  #endif
  #ifdef CLUTTER_WINDOWING_WIN32
    if (clutter_check_windowing_backend (CLUTTER_WINDOWING_WIN32))
      /* use the clutter_win32_* API */
  #endif

This scheme allows us to ensure that the input system namespace is free
for us to use and select at run time in later versions of Clutter.
2011-11-03 13:45:20 +00:00
..
2011-11-03 13:45:19 +00:00
2011-11-03 13:45:19 +00:00
2011-11-03 13:45:19 +00:00
2011-10-19 15:23:55 +01:00
2011-10-19 15:23:55 +01:00
2011-06-20 15:25:53 +01:00
2011-10-11 23:42:23 +01:00
2011-09-07 16:14:10 +01:00
2011-09-19 20:26:37 +01:00
2011-11-03 13:45:19 +00:00