ChangeLog revision 636c353e
1commit 208421df7cdb1a44d5a88c6d189caecae01f1cde
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Mon Mar 11 18:25:27 2024 -0700
4
5    xf86-video-vboxvideo 1.0.1
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit b66441a27fa85e2a3b63f10a0a5a846344327042
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Mon Mar 11 18:43:53 2024 -0700
12
13    Fix builds with C23 compilers
14    
15    Relies on C99 & later stdbool.h header to avoid making our own
16    definitions of bool, true, & false that C23 already defines for us.
17    
18    ./VBoxVideoIPRT.h:35:5: error: expected identifier before ‘false’
19       35 |     false = 0,
20          |     ^~~~~
21    ./VBoxVideoIPRT.h:37:3: error: expected ‘;’, identifier or ‘(’ before ‘bool’
22       37 | } bool;
23          |   ^~~~
24    ./VBoxVideoIPRT.h:37:3: warning: useless type name in empty declaration
25    
26    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
27
28commit 006126987bd85cff4d17eca28cbed65fa27d0661
29Author: Alan Coopersmith <alan.coopersmith@oracle.com>
30Date:   Tue Jan 16 14:37:17 2024 -0800
31
32    COPYING: include all three MIT/X11 license variants from source files
33    
34    Different source files have slightly different variants of the MIT/X11
35    license in, so include all three in the COPYING file.
36    
37    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
38
39commit 9684853f4654c0cbd2fc5433c960f80f7ba68f62
40Author: Alan Coopersmith <alan.coopersmith@oracle.com>
41Date:   Tue Jan 16 14:18:04 2024 -0800
42
43    Stop building helpers.c
44    
45    Clears -Wmissing-prototypes warning for every function in it,
46    none of which are referenced in any other file.
47    
48    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
49
50commit 42e39d102f5fc9e4834431b351e9d584052b4f75
51Author: Alan Coopersmith <alan.coopersmith@oracle.com>
52Date:   Tue Jan 16 14:14:02 2024 -0800
53
54    Fix 142 instances of -Wredundant-decls warning for RTASSERTVAR
55    
56    ./VBoxVideoIPRT.h:77:16: warning: redundant redeclaration of ‘RTASSERTVAR’ [-Wredundant-decls]
57       77 |     extern int RTASSERTVAR[1] __attribute__((__unused__)), \
58          |                ^~~~~~~~~~~
59    ./VBoxVideoIPRT.h:80:5: note: in expansion of macro ‘AssertCompile’
60       80 |     AssertCompile(sizeof(type) == (size))
61          |     ^~~~~~~~~~~~~
62    ./VBoxVideoIPRT.h:73:12: note: previous declaration of ‘RTASSERTVAR’ with type ‘int[1]’
63       73 | extern int RTASSERTVAR[1];
64          |            ^~~~~~~~~~~
65    
66    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
67
68commit 5abe92c24fa3de28f740490228b66ca5f42f3322
69Author: Alan Coopersmith <alan.coopersmith@oracle.com>
70Date:   Mon Jan 15 11:44:21 2024 -0800
71
72    Quiet -Wredundant-decls from xorg/os.h fallbacks for new libc functions
73    
74    The Xorg headers provide their own versions of strlcat, strlcpy, and
75    timingsafe_memcmp for platforms that don't have them in libc yet, but
76    rely on configure to set HAVE_* defines to determine if they should be
77    defined in the headers.
78    
79    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
80
81commit bc4fa3b99e979bb1ad63812bc53ff0979c8baac4
82Author: Alan Coopersmith <alan.coopersmith@oracle.com>
83Date:   Tue Jan 16 14:28:07 2024 -0800
84
85    Silence some standard X.Org warnings that cause too much noise
86    
87    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
88
89commit 293a6b927b032ed96fc611f04bad1bb9ab903dd7
90Author: Alan Coopersmith <alan.coopersmith@oracle.com>
91Date:   Mon Jan 15 11:38:33 2024 -0800
92
93    Add X.Org's standard C warning flags to AM_CFLAGS
94    
95    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
96
97commit 8dc8094c36b38e5c8f60c59fb5adecb56ee4a46e
98Author: Alan Coopersmith <alan.coopersmith@oracle.com>
99Date:   Mon Jan 15 11:33:07 2024 -0800
100
101    configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
102    
103    AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008,
104    so it's time to rely on it.
105    
106    Clears autoconf warnings:
107    
108    configure.ac:44: warning: The macro 'AC_PROG_LIBTOOL' is obsolete.
109    configure.ac:44: You should run autoupdate.
110    aclocal.m4:3515: AC_PROG_LIBTOOL is expanded from...
111    configure.ac:44: the top level
112    
113    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
114
115commit 1a950f1e3e028b6b99268bad595b277ef1c6e4c0
116Author: Alan Coopersmith <alan.coopersmith@oracle.com>
117Date:   Fri Oct 6 14:36:33 2023 -0700
118
119    gitlab CI: ensure libtool is installed in build container
120    
121    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
122
123commit a3da399dfc1290afdec713a3902d5aebab8df2fd
124Author: Alan Coopersmith <alan.coopersmith@oracle.com>
125Date:   Thu Jul 28 17:30:21 2022 -0700
126
127    gitlab CI: stop requiring Signed-off-by in commits
128    
129    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
130
131commit fa736a8e3e65beb700406ad5d95bfe10e87e1f0f
132Author: Alan Coopersmith <alan.coopersmith@oracle.com>
133Date:   Sat Jan 29 15:55:11 2022 -0800
134
135    gitlab CI: add a basic build test
136    
137    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
138
139commit 479aa89713c766c627aca06db64dfc8acded6aa5
140Author: Alan Coopersmith <alan.coopersmith@oracle.com>
141Date:   Sat Jan 29 15:54:30 2022 -0800
142
143    Fix spelling/wording issues
144    
145    Found by using:
146        codespell --builtin clear,rare,usage,informal,code,names
147    
148    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
149
150commit 450a7a11f47bf23fc55d2e103dc0835b5ce9a999
151Author: Alan Coopersmith <alan.coopersmith@oracle.com>
152Date:   Sat Jan 29 15:51:16 2022 -0800
153
154    Build xz tarballs instead of bzip2
155    
156    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
157
158commit 4f3a2bea254ebebcca4328bc780ce6b8f08dddfa
159Author: Alan Coopersmith <alan.coopersmith@oracle.com>
160Date:   Fri Dec 7 19:19:02 2018 -0800
161
162    Update configure.ac bug URL for gitlab migration
163    
164    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
165
166commit 8b88ebfb4325156db3550278e1b2c19bd7d783b2
167Author: Alan Coopersmith <alan.coopersmith@oracle.com>
168Date:   Sun Nov 18 16:42:19 2018 -0800
169
170    Update README for gitlab migration
171    
172    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
173
174commit 948bc1ae047668df040d62a19cae6d7a49e452fd
175Author: Michael Thayer <michael.thayer@oracle.com>
176Date:   Tue Nov 28 11:58:30 2017 +0100
177
178    vboxvideo 1.0.0
179
180commit ab07f97612d045d8c0a376174b39a294d028fef2
181Author: Michael Thayer <michael.thayer@oracle.com>
182Date:   Sat Oct 14 10:23:47 2017 +0200
183
184    Initial commit.
185