ChangeLog 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. commit 152d7f3992fc0982006f7024589c1491feb273ee
  2. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  3. Date: Thu Apr 16 22:49:23 2015 -0700
  4. xcmsdb 1.0.5
  5. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  6. commit aa02eb3d4f0c5722b8f9012ec08512daa7420184
  7. Author: Erkki Seppälä <erkki.seppala@vincit.fi>
  8. Date: Sun Jan 4 12:51:10 2015 -0800
  9. _XcmsGetProperty: don't deal with uninitialized values, fail instead
  10. Import commit 502d414118c97d35a44f8e295709682022876331 from the
  11. master copy of this code in libX11.
  12. Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
  13. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  14. commit 88135312d0cdfd624dfdd029539959849302a1f4
  15. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  16. Date: Sat Jan 3 14:56:48 2015 -0800
  17. Only use results from GetWindowProperty if it returned Success
  18. Since Xlib prior to 1.6 didn't always clear values on failure, don't
  19. assume they're safe to use unless we succeeded.
  20. Reported by Oracle Parfait 1.5.1:
  21. Error: Uninitialised memory
  22. Uninitialised memory variable (CWE 457): Possible access to uninitialised memory variable 'ret_format'
  23. at line 743 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
  24. ret_format allocated at line 733.
  25. at line 757 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
  26. ret_format allocated at line 733.
  27. Uninitialised memory variable (CWE 457): Possible access to uninitialised memory variable 'ret_prop'
  28. at line 748 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
  29. ret_prop allocated at line 731.
  30. at line 762 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
  31. ret_prop allocated at line 731.
  32. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  33. Reviewed-by: Hans de Goede <hdegoede@redhat.com>
  34. commit 09bb2c8287e6cafc7acb8e1680ce7b0cc5e36a3d
  35. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  36. Date: Wed Dec 31 10:20:07 2014 -0800
  37. Strip trailing whitespace from source files
  38. git ls-files | xargs gsed -i 's/[ \t]*$//'
  39. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  40. commit 1a67ecc569db633a43cf2bbd7c5633b4455b4f4b
  41. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  42. Date: Mon Jun 2 22:14:40 2014 -0700
  43. autogen.sh: Honor NOCONFIGURE=1
  44. See http://people.gnome.org/~walters/docs/build-api.txt
  45. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  46. commit 4e083547f90259fe7e855a4fcad1dd22253b7a2d
  47. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  48. Date: Mon Jun 2 22:14:40 2014 -0700
  49. configure: Drop AM_MAINTAINER_MODE
  50. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  51. commit dee634b8eb0d1777baf48cfc12d892db778be587
  52. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  53. Date: Tue Nov 26 21:44:20 2013 -0800
  54. config: Add missing AC_CONFIG_SRCDIR
  55. Regroup AC statements under the Autoconf initialization section.
  56. Regroup AM statements under the Automake initialization section.
  57. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  58. commit 953e12eab18c50001fcabeac9f3a9008a2858bc1
  59. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  60. Date: Tue Nov 26 21:39:00 2013 -0800
  61. Remove break statements immediately after return statements
  62. Silences clang -Wunreachable-code warnings
  63. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  64. commit c715abbca4885d03e8f9d6b71cf8fb54e5be5667
  65. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  66. Date: Tue Nov 26 21:34:01 2013 -0800
  67. Fix const char * warnings
  68. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  69. Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
  70. commit 93fcd59757e87cb79db8a98e0379c0a90eddae4c
  71. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  72. Date: Tue Nov 26 21:26:54 2013 -0800
  73. Add -version option to print program version
  74. Adds both -version and previously undocumented -help to man page
  75. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  76. commit dfd9fa8720cb8001d6569cd8b4d65819ff9d5ba5
  77. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  78. Date: Tue Nov 26 21:22:38 2013 -0800
  79. Print which option was in error along with usage message
  80. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  81. commit 9ee59de6b0ab352e22d89edee361af40b85a1c79
  82. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  83. Date: Tue Nov 26 21:13:41 2013 -0800
  84. Combine usage message strings
  85. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  86. commit db25a4a75d4a3ea5c904ec63669c47bd5f467d98
  87. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  88. Date: Tue Feb 14 18:39:28 2012 -0800
  89. xcmsdb 1.0.4
  90. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  91. commit 9e7799634dd8149b741583672f9bb75fa2451489
  92. Author: Jeremy Huddleston <jeremyhu@apple.com>
  93. Date: Sat May 7 21:36:59 2011 -0700
  94. Dead code removal
  95. loadData.c:1497:2: warning: Value stored to 'token1' is never read
  96. token1 = token2 = token3 = (char*)NULL;
  97. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  98. Found-by: clang static analyzer
  99. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
  100. commit 08c8b7a6ee4232c5a6614b8fc4aac2b337623de0
  101. Author: Jeremy Huddleston <jeremyhu@apple.com>
  102. Date: Sat May 7 19:57:53 2011 -0700
  103. Improved error handling for corrupt intensity profiles
  104. loadData.c:661:15: warning: Access to field 'value' results in a dereference of a null pointer (loaded from variable 'pIRec')
  105. pIRec->value = tmp;
  106. ~~~~~ ^
  107. loadData.c:682:19: warning: The right operand of '>' is a garbage value
  108. if (++count > size) {
  109. ^ ~~~~
  110. Found-by: clang static analyzer
  111. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
  112. commit f872b47cb606d448766c1fa750709fd06a8a6904
  113. Author: Jeremy Huddleston <jeremyhu@apple.com>
  114. Date: Sat May 7 19:48:04 2011 -0700
  115. Coding style cleanup to appease static analyzer
  116. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
  117. commit 7ff5997a990e1c82c723ac08fc2d8a70c4839619
  118. Author: Gaetan Nadon <memsize@videotron.ca>
  119. Date: Wed Jan 19 10:06:55 2011 -0500
  120. config: move man pages into their own directory
  121. Use services provided by XORG_MANPAGE_SECTIONS.
  122. Use standard Makefile for man pages.
  123. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  124. commit 8b88bdd918413590962fc14a249b8963c183fcb0
  125. Author: Gaetan Nadon <memsize@videotron.ca>
  126. Date: Thu Jan 13 17:15:36 2011 -0500
  127. man: replace hard coded man page section with substitution strings
  128. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  129. commit 005c3fd93440eb653744ca50da3c02ac40ea1062
  130. Author: Gaetan Nadon <memsize@videotron.ca>
  131. Date: Thu Jan 13 11:15:47 2011 -0500
  132. man: remove trailing spaces and tabs
  133. Using s/[ \t]*$//
  134. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  135. commit 22d71915e74cbea51d46aaf0922abe4de5ec368f
  136. Author: Gaetan Nadon <memsize@videotron.ca>
  137. Date: Wed Jan 12 16:28:02 2011 -0500
  138. config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  139. This silences an Autoconf warning
  140. commit b9ddf66b520bfadb3ce65e7d988474e2acfd6048
  141. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  142. Date: Thu Sep 23 19:03:34 2010 -0700
  143. xcmsdb 1.0.3
  144. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  145. commit d279151713bd7f3023ebd24494a8021c7f9b896b
  146. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  147. Date: Thu Sep 23 18:58:16 2010 -0700
  148. config: Remove unnecessary calls from configure.ac
  149. AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
  150. PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
  151. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  152. commit 0f3e8ddb7ba7b0cd0b07f16a41f38dec47a25f27
  153. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  154. Date: Thu Sep 23 18:57:04 2010 -0700
  155. config: upgrade to util-macros 1.8 for additional man page support
  156. Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
  157. The value of MAN_SUBST is the same for all X.Org packages.
  158. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
  159. The existing statement can now be removed from the configuration file.
  160. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  161. commit 4d06455d3b31d1d721805526c4a05f143f7d92ef
  162. Author: Gaetan Nadon <memsize@videotron.ca>
  163. Date: Tue Jul 20 18:45:18 2010 -0400
  164. config: update AC_PREREQ statement to 2.60
  165. Unrelated to the previous patches, the new value simply reflects
  166. the reality that the minimum level for autoconf to configure
  167. all x.org modules is 2.60 dated June 2006.
  168. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
  169. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  170. commit 68ca4762f91601feb8369a54234e2957ca1f9a48
  171. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  172. Date: Fri Aug 6 08:42:45 2010 -0700
  173. Add Open Group notice to COPYING for man page
  174. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  175. commit 8d26b362b4172d3e5cc1760d051f480bf9932be5
  176. Author: Gaetan Nadon <memsize@videotron.ca>
  177. Date: Thu Jan 7 21:31:03 2010 -0500
  178. COPYING: replace stub with actual copyright notice
  179. Refer to xcmsdb.c
  180. Copyright 1990 Tektronix Inc.
  181. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  182. commit 50dfd44f0c1f9e66d8378298580a32d01a3e5fce
  183. Author: Gaetan Nadon <memsize@videotron.ca>
  184. Date: Thu Nov 26 09:19:53 2009 -0500
  185. Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
  186. Now that the INSTALL file is generated.
  187. Allows running make maintainer-clean.
  188. commit 6038a8d561337d2fd275135dfadb26aa691024e6
  189. Author: Gaetan Nadon <memsize@videotron.ca>
  190. Date: Wed Oct 28 14:09:08 2009 -0400
  191. INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  192. Add missing INSTALL file. Use standard GNU file on building tarball
  193. README may have been updated
  194. Remove AUTHORS file as it is empty and no content available yet.
  195. Remove NEWS file as it is empty and no content available yet.
  196. commit a0d137251dec348557a33e758f40419955f674ad
  197. Author: Gaetan Nadon <memsize@videotron.ca>
  198. Date: Mon Oct 26 22:08:38 2009 -0400
  199. Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
  200. ChangeLog filename is known to Automake and requires no further
  201. coding in the makefile.
  202. commit 537a1fdd08991d82f0e6e8e52f2fa80672abbb8d
  203. Author: Gaetan Nadon <memsize@videotron.ca>
  204. Date: Thu Oct 22 12:34:15 2009 -0400
  205. .gitignore: use common defaults with custom section # 24239
  206. Using common defaults will reduce errors and maintenance.
  207. Only the very small or inexistent custom section need periodic maintenance
  208. when the structure of the component changes. Do not edit defaults.
  209. commit 0929f650a140ff25ac7f3e337e2784891f851ca4
  210. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  211. Date: Wed Oct 14 23:16:12 2009 -0700
  212. xcmsdb 1.0.2
  213. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  214. commit 19d201b8d1661f447bf9c0ce6ee761e3c34661dc
  215. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  216. Date: Wed Oct 14 23:11:15 2009 -0700
  217. Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
  218. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  219. commit 0590764cd3922620888043dde186619d7e8688b1
  220. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  221. Date: Thu Oct 1 14:54:21 2009 -0700
  222. Add README with pointers to mailing lists, bugzilla, & git
  223. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  224. commit 1ff763d1f34c3027969f9f09d3226fc447435c04
  225. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  226. Date: Mon Jan 19 19:23:43 2009 -0200
  227. Ansification and compile warning fixes.
  228. This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
  229. make distcheck and all gcc 4.3 and sparse warnings.
  230. commit 89508e83db03b45a8b1d1a5191084ddb93ea34f8
  231. Author: James Cloos <cloos@jhcloos.com>
  232. Date: Thu Dec 6 16:37:10 2007 -0500
  233. Replace static ChangeLog with dist-hook to generate from git log
  234. commit be13ab935be74f19c4f98c3b51b61154f7da9dcc
  235. Author: walter <wharms@bfs.de>
  236. Date: Thu Nov 22 17:37:09 2007 -0800
  237. X.Org Bug #13357: xcmsdb segfaults on xcms.txt
  238. <http://bugs.freedesktop.org/show_bug.cgi?id=13357>
  239. commit 235821c4198dc101cc52c83295dab96c0bcc3e8c
  240. Author: James Cloos <cloos@jhcloos.com>
  241. Date: Mon Sep 3 05:51:17 2007 -0400
  242. Add *~ to .gitignore to skip patch/emacs droppings
  243. commit cab0ea9ef7c2d05d2659dff7337f00e47113747e
  244. Author: James Cloos <cloos@jhcloos.com>
  245. Date: Thu Aug 23 19:24:41 2007 -0400
  246. Rename .cvsignore to .gitignore
  247. commit 78daad2bcf798bd6e5bcfb495b4343e8455997fc
  248. Author: Kevin E Martin <kem@kem.org>
  249. Date: Wed Dec 21 02:29:48 2005 +0000
  250. Update package version for X11R7 release.
  251. commit a33a162c915f7385b8f48b7d4929a2d3fc6f4d7b
  252. Author: Adam Jackson <ajax@nwnk.net>
  253. Date: Mon Dec 19 16:22:42 2005 +0000
  254. Stub COPYING files
  255. commit 35e4edaa3c87edaa94162bbb4e1f432622955a69
  256. Author: Kevin E Martin <kem@kem.org>
  257. Date: Thu Dec 15 00:24:05 2005 +0000
  258. Update package version number for final X11R7 release candidate.
  259. commit d958222d35aca227ef7911c2e2932e1969c5e102
  260. Author: Kevin E Martin <kem@kem.org>
  261. Date: Tue Dec 6 22:48:20 2005 +0000
  262. Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
  263. commit 36493b79df32c0b5bc5c641a99ca0d30798a2b30
  264. Author: Kevin E Martin <kem@kem.org>
  265. Date: Sat Dec 3 05:49:18 2005 +0000
  266. Update package version number for X11R7 RC3 release.
  267. commit c11f5a3a0f44b6e8cbf0bfcdf9ad874d6e21af04
  268. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  269. Date: Mon Nov 28 22:01:40 2005 +0000
  270. Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
  271. update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
  272. commit b85ceb853c042a78d7a9b48959ed02d24505b57b
  273. Author: Eric Anholt <anholt@freebsd.org>
  274. Date: Mon Nov 21 10:34:59 2005 +0000
  275. Another pass at .cvsignores for apps.
  276. commit ac026c20643e7d2027cec49929217cdc76fc1d00
  277. Author: Eric Anholt <anholt@freebsd.org>
  278. Date: Sun Nov 20 22:08:51 2005 +0000
  279. Add/improve .cvsignore files for apps.
  280. commit 06f46e63686b043c219be0b80fea765a96485e4d
  281. Author: Kevin E Martin <kem@kem.org>
  282. Date: Wed Oct 19 02:47:52 2005 +0000
  283. Update package version number for RC1 release.
  284. commit 4438e30eade44b6fb2b3f73f1f292737133c4951
  285. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  286. Date: Mon Oct 17 23:56:21 2005 +0000
  287. Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
  288. work better with BSD make
  289. commit 55836b1773cc45cbf172e3daf741e762fc946c69
  290. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  291. Date: Fri Oct 14 00:25:43 2005 +0000
  292. Use sed to fill in variables in man page
  293. commit 5390e06bb50207203a1e188b27b8eeb1281ea535
  294. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  295. Date: Mon Aug 1 20:25:29 2005 +0000
  296. Install man pages to section 1 instead of section m (Patch from Donnie
  297. Berkholz)
  298. commit 5f54f305d92a3181d486cf97854997961c7d4977
  299. Author: Kevin E Martin <kem@kem.org>
  300. Date: Fri Jul 29 21:22:31 2005 +0000
  301. Various changes preparing packages for RC0:
  302. - Verify and update package version numbers as needed
  303. - Implement versioning scheme
  304. - Change bug address to point to bugzilla bug entry form
  305. - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
  306. reenable it)
  307. - Fix makedepend to use pkgconfig and pass distcheck
  308. - Update build script to build macros first
  309. - Update modular Xorg version
  310. commit b2775e434a61617f0d7af4ed758605fa30b5f1fc
  311. Author: Adam Jackson <ajax@nwnk.net>
  312. Date: Wed Jul 20 19:31:52 2005 +0000
  313. Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
  314. configure cache, you cache it, and the cached value is probably wrong.
  315. commit bdf7beaadb08e4599d28433a49422825949b8295
  316. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  317. Date: Wed Jul 6 20:07:41 2005 +0000
  318. Build system for xcmsdb
  319. commit 946ee35bc34efb4fc3aa1eacf7201e97381c1d6a
  320. Author: Egbert Eich <eich@suse.de>
  321. Date: Fri Apr 23 19:54:41 2004 +0000
  322. Merging XORG-CURRENT into trunk
  323. commit d6f6a730752c355e1c07980cdf0320043b0bf0b8
  324. Author: Egbert Eich <eich@suse.de>
  325. Date: Sun Mar 14 08:35:01 2004 +0000
  326. Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
  327. commit 28a93a124d494cac6408a45a6a618bbf312f67de
  328. Author: Egbert Eich <eich@suse.de>
  329. Date: Wed Mar 3 12:12:55 2004 +0000
  330. Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
  331. commit d131f6a211a2ee442bab02e5aae3fea157a067dc
  332. Author: Egbert Eich <eich@suse.de>
  333. Date: Thu Feb 26 13:36:16 2004 +0000
  334. readding XFree86's cvs IDs
  335. commit 193d40571385ff202b3254f044838ba210fd3ccf
  336. Author: Egbert Eich <eich@suse.de>
  337. Date: Thu Feb 26 09:23:58 2004 +0000
  338. Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
  339. commit 8f708f1adacba44502ff465cda0c0e3c0a4490b0
  340. Author: Kaleb Keithley <kaleb@freedesktop.org>
  341. Date: Tue Nov 25 19:29:03 2003 +0000
  342. XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
  343. commit c68d579b627ff85dbb60061d9befca014d3e5096
  344. Author: Kaleb Keithley <kaleb@freedesktop.org>
  345. Date: Fri Nov 14 16:48:58 2003 +0000
  346. XFree86 4.3.0.1
  347. commit 71194c9839debbb6c1baaa4d5d8105af39907803
  348. Author: Kaleb Keithley <kaleb@freedesktop.org>
  349. Date: Fri Nov 14 15:54:53 2003 +0000
  350. R6.6 is the Xorg base-line