~ubuntu-branches/ubuntu/trusty/x11-xserver-utils/trusty

« back to all changes in this revision

Viewing changes to xmodmap/ChangeLog

  • Committer: Package Import Robot
  • Author(s): Julien Cristau
  • Date: 2012-05-01 10:35:40 UTC
  • mfrom: (5.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20120501103540-q36egsmycutcctzz
Tags: 7.7~2
xrandr: update keystone program to run with new nichrome bits
(cherry-picked from upstream git)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
commit f857804dd904c69de447f4117220db149d9239ec
 
2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
 
3
Date:   Fri Apr 20 14:09:31 2012 -0700
 
4
 
 
5
    xmodmap 1.0.7
 
6
    
 
7
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
 
8
 
 
9
commit 5d24213a01231345848d378cb55186fbe7996504
 
10
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
 
11
Date:   Sat Apr 14 14:37:55 2012 -0700
 
12
 
 
13
    Add AC_USE_SYSTEM_EXTENSIONS to expose asprintf() in GNU libc headers
 
14
    
 
15
    Fixes https://bugs.freedesktop.org/show_bug.cgi?id=48696
 
16
    
 
17
    Reported-by: Dominique Leuenberger
 
18
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
 
19
    Reviewed-by: Julien Cristau <jcristau@debian.org>
 
20
 
 
21
commit 1aebb2e8b358c26b36ca4a9c063180479ee38557
 
22
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
 
23
Date:   Sat Apr 14 14:34:39 2012 -0700
 
24
 
 
25
    config: Add missing AC_CONFIG_SRCDIR
 
26
    
 
27
    Regroup AC statements under the Autoconf initialization section.
 
28
    Regroup AM statements under the Automake initialization section.
 
29
    
 
30
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
 
31
 
 
32
commit b355a23e6787f348db97faaa48085428277c659b
 
33
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
 
34
Date:   Thu Mar 22 23:04:32 2012 -0700
 
35
 
 
36
    xmodmap 1.0.6
 
37
    
 
38
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
 
39
 
 
40
commit d0dfd2128e6111b967c51136d97093d3b53ee6d6
 
41
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
 
42
Date:   Fri Nov 11 21:07:30 2011 -0800
 
43
 
 
44
    Replace chk_malloc + sprintf with asprintf
 
45
    
 
46
    Includes local private copy of asprintf for OS'es without it in libc.
 
47
    Removes chk_malloc as no callers remain anymore.
 
48
    
 
49
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
 
50
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
 
51
 
 
52
commit fecb1f5a0c2121de6d9209fc9525ac7d9b9555ea
 
53
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
 
54
Date:   Fri Nov 11 20:46:00 2011 -0800
 
55
 
 
56
    Free copy of input line at end of process_line instead of leaking it
 
57
    
 
58
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
 
59
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
 
60
 
 
61
commit 66c09c83aa2f64b31dc657f90447c269621545b7
 
62
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
 
63
Date:   Fri Nov 11 20:40:18 2011 -0800
 
64
 
 
65
    Fix gcc -Wwrite-strings warnings
 
66
    
 
67
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
 
68
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
 
69
 
 
70
commit 8751095511c7d9065ab12a40e90e38bdd9d728e4
 
71
Author: Jeremy Huddleston <jeremyhu@apple.com>
 
72
Date:   Fri Nov 11 11:22:43 2011 -0800
 
73
 
 
74
    Add missing _X_NORETURN to functions that need it
 
75
    
 
76
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
 
77
 
 
78
commit c71811ebe193cecc4add4c2d9cec751fc721343b
 
79
Author: Jeremy Huddleston <jeremyhu@apple.com>
 
80
Date:   Fri Nov 11 11:21:45 2011 -0800
 
81
 
 
82
    Include strings.h for strcasecmp
 
83
    
 
84
    Our minimum requirement for X11 is currently Unix98.  Unix98 provides
 
85
    strcasecmp in <strings.h>.  This commit fixes implicit declarations
 
86
    of this function on systems that closely adhere to the standard.
 
87
    
 
88
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
 
89
 
 
90
commit b6b5bc9e9874934dd1c1b80a1aa0c0b1c454eab2
 
91
Author: Jeremy Huddleston <jeremyhu@apple.com>
 
92
Date:   Sat May 7 22:05:16 2011 -0700
 
93
 
 
94
    Improve error handling in copy_to_scratch
 
95
    
 
96
    handle.c:95:5: warning: Array access (from variable 'buf') results in a null pointer dereference
 
97
        buf[len] = '\0';
 
98
        ^~~
 
99
    
 
100
    Found-by: clang static analyzer
 
101
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
 
102
 
 
103
commit 1f801eea5f4d17b83aee1170423d65a74e01a138
 
104
Author: Jeremy Huddleston <jeremyhu@apple.com>
 
105
Date:   Sat May 7 21:45:22 2011 -0700
 
106
 
 
107
    Dead code removal
 
108
    
 
109
    xmodmap.c:159:5: warning: Value stored to 'status' is never read
 
110
        status = 0;
 
111
        ^        ~
 
112
    
 
113
    Found-by: clang static analyzer
 
114
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
 
115
 
 
116
commit d427337286e0a8ac061d5acbc326e7bdb8b056a3
 
117
Author: Gaetan Nadon <memsize@videotron.ca>
 
118
Date:   Fri Mar 4 20:50:41 2011 -0500
 
119
 
 
120
    man: replace hard coded section with __appmansuffix__
 
121
    
 
122
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
 
123
 
 
124
commit 65011e8a86f64d5f7e9f39052e04e5ee7e57ce1b
 
125
Author: Gaetan Nadon <memsize@videotron.ca>
 
126
Date:   Wed Jan 12 16:28:02 2011 -0500
 
127
 
 
128
    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
 
129
    
 
130
    This silences an Autoconf warning
 
131
 
 
132
commit ec2cab2dc9b6e7c804984320d8f560adbc3477ff
 
133
Author: Jesse Adkins <jesserayadkins@gmail.com>
 
134
Date:   Tue Sep 28 13:29:50 2010 -0700
 
135
 
 
136
    Purge cvs tags.
 
137
    
 
138
    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
 
139
 
1
140
commit 3fe64746bb6c3ede67c9967ebd216a8a39cdb2ea
2
141
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3
142
Date:   Fri Sep 24 11:53:40 2010 -0700