16418361.patch revision 1447
1447N/Adiff --git a/hw/xfree86/utils/cvt/cvt.c b/hw/xfree86/utils/cvt/cvt.c
1447N/Aindex 9483964..752b35c 100644
1447N/A--- a/hw/xfree86/utils/cvt/cvt.c
1447N/A+++ b/hw/xfree86/utils/cvt/cvt.c
1447N/A@@ -23,6 +23,16 @@
1447N/A
1447N/A /* Standalone VESA CVT standard timing modelines generator. */
1447N/A
1351N/A+
1447N/A+/* These are needed for building the standalone cvt utility using code that
1447N/A+ was built against headers expecting these to be defined in dix/regions.o
1447N/A+ Oracle bug 16418361 */
1351N/A+#if (defined(__sparc__) || defined(__sparc))
1447N/A+#include "regionstr.h"
1447N/A+_X_EXPORT BoxRec RegionEmptyBox = { 0, 0, 0, 0 };
1447N/A+_X_EXPORT RegDataRec RegionEmptyData = { 0, 0 };
1351N/A+#endif
1351N/A+
1447N/A #include "xf86.h"
1447N/A
1447N/A /* FatalError implementation used by the server code we built in */