summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2002-09-27 20:28:34 +0000
committerHavoc Pennington <hp@src.gnome.org>2002-09-27 20:28:34 +0000
commit74b3bca93d0223e3b273c7613b9020fdbd8fef80 (patch)
treec62e308f1d98ae0cec62415196116e57ac33fb64 /src/main.c
parente7e41b045d1dc27bf5cb474651db9418d062d362 (diff)
downloadmetacity-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.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 88fc1350..81aca432 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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 */