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

[Git][xorg-team/lib/libxres][upstream-unstable] 5 commits: Update README for gitlab migration



Title: GitLab

Timo Aaltonen pushed to branch upstream-unstable at X Strike Force / lib / libxres

Commits:

5 changed files:

Changes:

  • Makefile.am
    ... ... @@ -37,3 +37,5 @@ ChangeLog:
    37 37
     	$(CHANGELOG_CMD)
    
    38 38
     
    
    39 39
     dist-hook: ChangeLog INSTALL
    
    40
    +
    
    41
    +EXTRA_DIST = README.md

  • READMEREADME.md
    ... ... @@ -3,23 +3,15 @@ libXRes - X-Resource extension client library
    3 3
     All questions regarding this software should be directed at the
    
    4 4
     Xorg mailing list:
    
    5 5
     
    
    6
    -        http://lists.freedesktop.org/mailman/listinfo/xorg
    
    7
    -
    
    8
    -Please submit bug reports to the Xorg bugzilla:
    
    9
    -
    
    10
    -        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
    
    6
    +  https://lists.x.org/mailman/listinfo/xorg
    
    11 7
     
    
    12 8
     The master development code repository can be found at:
    
    13 9
     
    
    14
    -        git://anongit.freedesktop.org/git/xorg/lib/libXRes
    
    10
    +  https://gitlab.freedesktop.org/xorg/lib/libXRes
    
    15 11
     
    
    16
    -        http://cgit.freedesktop.org/xorg/lib/libXRes
    
    12
    +Please submit bug reports and requests to merge patches there.
    
    17 13
     
    
    18 14
     For patch submission instructions, see:
    
    19 15
     
    
    20
    -	http://www.x.org/wiki/Development/Documentation/SubmittingPatches
    
    21
    -
    
    22
    -For more information on the git code manager, see:
    
    23
    -
    
    24
    -        http://wiki.x.org/wiki/GitPage
    
    16
    +  https://www.x.org/wiki/Development/Documentation/SubmittingPatches
    
    25 17
     

  • configure.ac
    ... ... @@ -29,8 +29,8 @@ AC_PREREQ([2.60])
    29 29
     # digit in the version number to track changes which don't affect the
    
    30 30
     # protocol, so XRes version l.n.m corresponds to protocol version l.n
    
    31 31
     #
    
    32
    -AC_INIT([libXres], [1.2.0],
    
    33
    -        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXres])
    
    32
    +AC_INIT([libXres], [1.2.1],
    
    33
    +        [https://gitlab.freedesktop.org/xorg/lib/libXRes/issues], [libXres])
    
    34 34
     AC_CONFIG_SRCDIR([Makefile.am])
    
    35 35
     AC_CONFIG_HEADERS([config.h])
    
    36 36
     
    

  • include/X11/extensions/XRes.h
    ... ... @@ -98,6 +98,7 @@ Status XResQueryClientPixmapBytes (
    98 98
     
    
    99 99
     /* v1.2 */
    
    100 100
     
    
    101
    +/* Returns an array of uint32_t values, not an array of long */
    
    101 102
     Status XResQueryClientIds (
    
    102 103
        Display            *dpy,
    
    103 104
        long                num_specs,
    

  • src/XRes.c
    ... ... @@ -256,11 +256,12 @@ static Bool ReadClientValues(
    256 256
             _XRead32 (dpy, &value, 4);
    
    257 257
             client->length = value;
    
    258 258
             client->value = malloc(client->length);
    
    259
    -        _XRead32 (dpy, client->value, client->length);
    
    259
    +        _XRead (dpy, client->value, client->length);
    
    260 260
         }
    
    261 261
         return True;
    
    262 262
     }
    
    263 263
     
    
    264
    +/* Returns an array of uint32_t values, not an array of long */
    
    264 265
     Status XResQueryClientIds (
    
    265 266
        Display            *dpy,
    
    266 267
        long                num_specs,
    


  • Reply to: