Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[xsrc/trunk]: xsrc/external/mit/libXinerama/dist merge libXinerama 1.1.5



details:   https://anonhg.NetBSD.org/xsrc/rev/c45a71d8aa7a
branches:  trunk
changeset: 7224:c45a71d8aa7a
user:      mrg <mrg%NetBSD.org@localhost>
date:      Fri Nov 11 07:49:34 2022 +0000

description:
merge libXinerama 1.1.5

diffstat:

 external/mit/libXinerama/dist/README         |  25 -------------------------
 external/mit/libXinerama/dist/src/Xinerama.c |  10 +++++-----
 2 files changed, 5 insertions(+), 30 deletions(-)

diffs (77 lines):

diff -r dc8f45532d6a -r c45a71d8aa7a external/mit/libXinerama/dist/README
--- a/external/mit/libXinerama/dist/README      Fri Nov 11 07:48:54 2022 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +0,0 @@
-libXinerama - API for Xinerama extension to X11 Protocol
-
-All questions regarding this software should be directed at the
-Xorg mailing list:
-
-        http://lists.freedesktop.org/mailman/listinfo/xorg
-
-Please submit bug reports to the Xorg bugzilla:
-
-        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
-
-The master development code repository can be found at:
-
-        git://anongit.freedesktop.org/git/xorg/lib/libXinerama
-
-        http://cgit.freedesktop.org/xorg/lib/libXinerama
-
-For patch submission instructions, see:
-
-       http://www.x.org/wiki/Development/Documentation/SubmittingPatches
-
-For more information on the git code manager, see:
-
-        http://wiki.x.org/wiki/GitPage
-
diff -r dc8f45532d6a -r c45a71d8aa7a external/mit/libXinerama/dist/src/Xinerama.c
--- a/external/mit/libXinerama/dist/src/Xinerama.c      Fri Nov 11 07:48:54 2022 +0000
+++ b/external/mit/libXinerama/dist/src/Xinerama.c      Fri Nov 11 07:49:34 2022 +0000
@@ -101,7 +101,7 @@
 {
     XExtDisplayInfo *info = find_display (dpy);
     xPanoramiXQueryVersionReply            rep;
-    register xPanoramiXQueryVersionReq  *req;
+    xPanoramiXQueryVersionReq             *req;
 
     PanoramiXCheckExtension (dpy, info, 0);
 
@@ -136,7 +136,7 @@
 {
     XExtDisplayInfo                    *info = find_display (dpy);
     xPanoramiXGetStateReply    rep;
-    register xPanoramiXGetStateReq     *req;
+    xPanoramiXGetStateReq      *req;
 
     PanoramiXCheckExtension (dpy, info, 0);
 
@@ -165,7 +165,7 @@
 {
     XExtDisplayInfo                    *info = find_display (dpy);
     xPanoramiXGetScreenCountReply      rep;
-    register xPanoramiXGetScreenCountReq       *req;
+    xPanoramiXGetScreenCountReq                *req;
 
     PanoramiXCheckExtension (dpy, info, 0);
 
@@ -195,7 +195,7 @@
 {
     XExtDisplayInfo                    *info = find_display (dpy);
     xPanoramiXGetScreenSizeReply       rep;
-    register xPanoramiXGetScreenSizeReq        *req;
+    xPanoramiXGetScreenSizeReq         *req;
 
     PanoramiXCheckExtension (dpy, info, 0);
 
@@ -303,7 +303,7 @@
     if ((rep.number > 0) && (rep.number <= 1024))
        scrnInfo = Xmalloc(sizeof(XineramaScreenInfo) * rep.number);
     if (scrnInfo != NULL) {
-       int i;
+       CARD32 i;
 
        for (i = 0; i < rep.number; i++) {
            xXineramaScreenInfo scratch;



Home | Main Index | Thread Index | Old Index