-----BEGIN PGP SIGNED MESSAGE-----
Attached is a patch to xmame-0.77.1/src/unix/video-drivers/x11_window.c which will allow the use of MIT-Shared Memory X Extensions on OpenVMS. =========================================================================== - --- xmame-0.77.1/src/unix/video-drivers/x11_window.c Thu Nov 13 00:06:05 2003 +++ x11_window.c Fri Jan 9 11:07:15 2004 @@ -1,4 +1,11 @@ + /* + * Modifications For OpenVMS By: Robert Alan Byer + * [EMAIL PROTECTED] + * Jan. 9, 2004 + */ + +/* * X-Mame video specifics code * */ @@ -14,11 +21,18 @@ #include <X11/Xlib.h> #include <X11/Xutil.h> #include <X11/cursorfont.h> + #ifdef USE_MITSHM - -#include <sys/ipc.h> - -#include <sys/shm.h> - -#include <X11/extensions/XShm.h> +# if defined(__DECC) && defined(VMS) +# include <X11/extensions/ipc.h> +# include <X11/extensions/shm.h> +# else +# include <sys/ipc.h> +# include <sys/shm.h> +# endif +# include <X11/extensions/XShm.h> #endif + #ifdef USE_XV #include <X11/extensions/Xv.h> #include <X11/extensions/Xvlib.h> =========================================================================== +------------------+--------------------------+---------------+ | Robert Alan Byer | [EMAIL PROTECTED] | ICQ #65926579 | +------------------+--------------------------+---------------+ | Send an E-mail request to obtain a copy of my PGP key. | +-------------------------------------------------------------+ | "It is by caffeine alone I set my mind in motion. It is by | | cans of cola the thoughts aquire speed, the hands acquire | | shakes, the shakes become a warning. It is by caffeine | | alone I set my mind in motion." | +-------------------------------------------------------------+ -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQEVAwUBP/7Vx6VSqzlBVJbBAQGumAf+PRLsdsVDhCbhNIhYBk9L4j7z6LAqWcV5 2N+Hm9TIuq8/K79q4YerzQloB3h4fBaQ5NKp4Aw5/G0N9FitslEcA5hz+6NhGpQK RiMVFQPcE84BcnaAvi7gzQ8rtW1SLnwt2KkQ5ch8dWxrRAhfdF7J+4aUpu8TKplX XOZCXlXtf66f8dvZOt0iAgMzL4tJ9zgYrlPLWUaOLlzRY3cGHBOwBVnwHsGLmnXo mGOAWdE0Lw/j1dJ2NYB8SLeowfXJUTug+jJChhYerQt/TZbvZN51u9d7OnTeYB2s foJze9O6njLsrZWE2FPD1w+DjxwH8+jJnrAd8Xb1Ej6sFpqd/4WFGg== =Ojwg -----END PGP SIGNATURE----- _______________________________________________ Xmame mailing list [EMAIL PROTECTED] http://toybox.twisted.org.uk/mailman/listinfo/xmame
