Module Name: xsrc
Committed By: mrg
Date: Tue Jul 7 07:30:01 UTC 2009
Modified Files:
xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bsd:
bsd_init.c
Log Message:
ShareVTs is only visible #if defined (SYSCONS_SUPPORT) ||
defined (PCVT_SUPPORT).
fixes sparc64 build for me.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bsd/bsd_init.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bsd/bsd_init.c
diff -u xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bsd/bsd_init.c:1.3 xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bsd/bsd_init.c:1.4
--- xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bsd/bsd_init.c:1.3 Thu Jun 11 02:13:46 2009
+++ xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bsd/bsd_init.c Tue Jul 7 07:30:01 2009
@@ -660,7 +660,9 @@
struct vt_mode VT;
#endif
+#if defined (SYSCONS_SUPPORT) || defined (PCVT_SUPPORT)
if (ShareVTs) return;
+#endif
switch (xf86Info.consType)
{