diff options
author | Havoc Pennington <hp@redhat.com> | 2002-09-27 20:28:34 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2002-09-27 20:28:34 +0000 |
commit | 74b3bca93d0223e3b273c7613b9020fdbd8fef80 (patch) | |
tree | c62e308f1d98ae0cec62415196116e57ac33fb64 /src/main.c | |
parent | e7e41b045d1dc27bf5cb474651db9418d062d362 (diff) | |
download | metacity-74b3bca93d0223e3b273c7613b9020fdbd8fef80.tar.gz |
Try to handle Solaris Xinerama, all coded blind, someone on Solaris will
2002-09-27 Havoc Pennington <hp@redhat.com>
Try to handle Solaris Xinerama, all coded blind, someone
on Solaris will need to debug the typos.
* src/display.c: updates for Solaris Xinerama
* src/screen.c: updates for Solaris Xinerama
* configure.in: make Xinerama check more complicated to catch
Solaris Xinerama
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -256,9 +256,19 @@ main (int argc, char **argv) meta_verbose ("Compiled without shape extension\n"); #endif #ifdef HAVE_XINERAMA - meta_verbose ("Compiled with Xinerama extension\n"); + meta_topic (META_DEBUG_XINERAMA, "Compiled with Xinerama extension\n"); #else - meta_verbose ("Compiled without Xinerama extension\n"); + meta_topic (META_DEBUG_XINERAMA, "Compiled without Xinerama extension\n"); +#endif +#ifdef HAVE_XFREE_XINERAMA + meta_topic (META_DEBUG_XINERAMA, " (using XFree86 Xinerama)\n"); +#else + meta_topic (META_DEBUG_XINERAMA, " (not using XFree86 Xinerama)\n"); +#endif +#ifdef HAVE_SOLARIS_XINERAMA + meta_topic (META_DEBUG_XINERAMA, " (using Solaris Xinerama)\n"); +#else + meta_topic (META_DEBUG_XINERAMA, " (not using Solaris Xinerama)\n"); #endif /* Load prefs */ |