ChangeLog 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. commit 3d990ebfd1dde829f9fda86c556aa51a0308188b
  2. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  3. Date: Sun Sep 8 09:51:15 2013 -0700
  4. xkill 1.0.4
  5. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  6. commit 1b8bf0b5477c1f6ad38a7d57cd9ef354409472d1
  7. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  8. Date: Fri Sep 6 00:15:23 2013 -0700
  9. Explicitly cast tolower() return value to char before storing in a char
  10. For ancient historical compatibility, the C standards define the
  11. <ctype.h> functions as taking & returning ints, but limiting them
  12. to the subset of values that fit in a char.
  13. Silences clang warning:
  14. xkill.c:244:12: warning: implicit conversion loses integer precision: 'int' to
  15. 'char' [-Wconversion]
  16. *cp = _tolower (*cp);
  17. ~ ^~~~~~~~~~~~~~
  18. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  19. commit 1519db19e3d1ed1efc07c8c428c1e9013d93f285
  20. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  21. Date: Fri Sep 6 00:13:44 2013 -0700
  22. Mark arguments to catch_window_errors as unused
  23. Arguments are required by the callback form, but not needed in this case.
  24. Clears clang compliants:
  25. xkill.c:328:30: warning: unused parameter 'dpy' [-Wunused-parameter]
  26. catch_window_errors(Display *dpy, XErrorEvent *ev)
  27. ^
  28. xkill.c:328:48: warning: unused parameter 'ev' [-Wunused-parameter]
  29. catch_window_errors(Display *dpy, XErrorEvent *ev)
  30. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  31. commit 8c669cdff3f32755cb9c383f5b16397a33183e64
  32. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  33. Date: Sat Aug 3 15:59:03 2013 -0700
  34. Use man page sections in See Also references to libX11 man pages
  35. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  36. commit 411ea0142d62900528d314bc654945c94e4f034d
  37. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  38. Date: Sat Aug 3 15:57:06 2013 -0700
  39. Add -version option to print version
  40. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  41. commit 000d4af7f036119cf19717cff105a2bd2efd01e2
  42. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  43. Date: Thu Jul 18 23:27:40 2013 -0700
  44. Mark static string in verify_okay_to_kill as const
  45. Fixes gcc warning:
  46. xkill.c: In function ‘verify_okay_to_kill’:
  47. xkill.c:371:24: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default]
  48. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  49. commit f33703105f1a1e44c756fbaf150422132d56b1ca
  50. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  51. Date: Sat Feb 23 08:17:10 2013 -0800
  52. Mark msg argument to get_window_id as const, since it's just printed out
  53. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  54. commit 718640ec0d212e8f3bf20005e35c1091646c9aea
  55. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  56. Date: Fri Feb 22 23:13:45 2013 -0800
  57. Use strtoul instead of open coding it with sscanf
  58. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  59. commit 2e195507f5b17425d02af4dd6a4f151158d715c3
  60. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  61. Date: Fri Feb 22 23:01:53 2013 -0800
  62. Mark Exit() and usage() as _X_NORETURN
  63. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  64. commit 07f1204a7d56e6b02098cf4b82f9f90576e7f289
  65. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  66. Date: Fri Feb 22 22:59:56 2013 -0800
  67. Get rid of dpy global so we don't get shadow warnings from every function
  68. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  69. commit acb8b93f9fe598bc58c050ca5272149fbca04b41
  70. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  71. Date: Fri Feb 22 22:55:00 2013 -0800
  72. remove unused variable cpp
  73. Accidentally left behind by ea276533fbc9
  74. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  75. commit 0df97b3ed03c528ba99876cd312e20f3c80dff0f
  76. Author: Gaetan Nadon <memsize@videotron.ca>
  77. Date: Wed Jan 19 10:06:56 2011 -0500
  78. config: move man pages into their own directory
  79. Use services provided by XORG_MANPAGE_SECTIONS.
  80. Use standard Makefile for man pages.
  81. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  82. commit a7347343c1e27f0f55f9198082bb64ab89b48587
  83. Author: Gaetan Nadon <memsize@videotron.ca>
  84. Date: Thu Jan 13 17:15:36 2011 -0500
  85. man: replace hard coded man page section with substitution strings
  86. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  87. commit 5d5c42bb6720df4cc4586535ae069ea706b2b30d
  88. Author: Gaetan Nadon <memsize@videotron.ca>
  89. Date: Thu Jan 13 11:15:47 2011 -0500
  90. man: remove trailing spaces and tabs
  91. Using s/[ \t]*$//
  92. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  93. commit 6f00d84fb6d44bc76e50c111f8afc1c961778d7c
  94. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  95. Date: Wed Nov 10 19:26:12 2010 -0800
  96. xkill 1.0.3
  97. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  98. commit ea276533fbc9da4588d4707c1a21a9d480924b3c
  99. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  100. Date: Tue Nov 9 10:30:07 2010 -0800
  101. Simplify options list for usage from array to constant string
  102. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  103. commit e3c094aa41b2ca724ded1c33fe2ecec9b4155dc7
  104. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  105. Date: Tue Nov 9 10:22:57 2010 -0800
  106. config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  107. Regroup AC statements under the Autoconf initialization section.
  108. Regroup AM sttaements under the Automake initialization section.
  109. Add missing AC_CONFIG_SRCDIR
  110. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  111. commit dfd1f9ddc40dc8082010cd6b649812e57c4542bf
  112. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  113. Date: Tue Nov 9 10:20:25 2010 -0800
  114. config: Remove unnecessary calls from configure.ac
  115. AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
  116. PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
  117. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  118. commit 649f4494e956e58c5dc440047f55c19117334590
  119. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  120. Date: Tue Nov 9 10:19:46 2010 -0800
  121. config: upgrade to util-macros 1.8 for additional man page support
  122. Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
  123. The value of MAN_SUBST is the same for all X.Org packages.
  124. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
  125. Enables use of platform appropriate version of sed.
  126. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  127. commit e945e97c2bf5d03f6ad154c20cae7c870db2e73e
  128. Author: Gaetan Nadon <memsize@videotron.ca>
  129. Date: Tue Nov 9 10:19:29 2010 -0800
  130. config: update AC_PREREQ statement to 2.60
  131. Unrelated to the previous patches, the new value simply reflects
  132. the reality that the minimum level for autoconf to configure
  133. all x.org modules is 2.60 dated June 2006.
  134. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
  135. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  136. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  137. commit 40fe5f11c024ac28f10b9f82efb734b11957c952
  138. Author: Jesse Adkins <jesserayadkins@gmail.com>
  139. Date: Tue Sep 28 13:29:49 2010 -0700
  140. Purge cvs tags.
  141. Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
  142. commit 6678df25e56029d312e80252b80229ab2821c4da
  143. Author: Gaetan Nadon <memsize@videotron.ca>
  144. Date: Thu Nov 26 09:19:54 2009 -0500
  145. Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
  146. Now that the INSTALL file is generated.
  147. Allows running make maintainer-clean.
  148. commit 3dd4335f634a4db4392ded6807e05f1b393e047b
  149. Author: Gaetan Nadon <memsize@videotron.ca>
  150. Date: Wed Oct 28 14:09:08 2009 -0400
  151. INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  152. Add missing INSTALL file. Use standard GNU file on building tarball
  153. README may have been updated
  154. Remove AUTHORS file as it is empty and no content available yet.
  155. Remove NEWS file as it is empty and no content available yet.
  156. commit e6f1691628bcdee1c090933957e41b11515d9678
  157. Author: Gaetan Nadon <memsize@videotron.ca>
  158. Date: Mon Oct 26 22:08:39 2009 -0400
  159. Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
  160. ChangeLog filename is known to Automake and requires no further
  161. coding in the makefile.
  162. commit 4fe9b5706aef7e95e9db699e341bd5d1f3368905
  163. Author: Gaetan Nadon <memsize@videotron.ca>
  164. Date: Thu Oct 22 12:34:15 2009 -0400
  165. .gitignore: use common defaults with custom section # 24239
  166. Using common defaults will reduce errors and maintenance.
  167. Only the very small or inexistent custom section need periodic maintenance
  168. when the structure of the component changes. Do not edit defaults.
  169. commit e923b9e70dbc2a1b1efdecab5804e4445ec53d1c
  170. Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
  171. Date: Wed Oct 21 12:47:21 2009 -0700
  172. This is not a GNU project, so declare it foreign.
  173. On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
  174. > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
  175. > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
  176. > > was quite annoying to work around since 'autoreconf -fvi' replaces
  177. > > it and git wants to commit it. Should these files even be in git?
  178. > > Can I nuke them for the betterment of humanity and since they get
  179. > > created by autoreconf anyways?
  180. >
  181. > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
  182. As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
  183. AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
  184. of the INSTALL file. It is also part of the 24206 solution.
  185. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
  186. commit 5ac1abf7369fc81a07df94e26f4ae21c05610285
  187. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  188. Date: Mon Oct 12 21:01:06 2009 -0700
  189. xkill 1.0.2
  190. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  191. commit 75b4faf2aca43a250e4b5c8201a1abaf659638eb
  192. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  193. Date: Mon Oct 12 20:53:28 2009 -0700
  194. Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
  195. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  196. commit ea102787bfe776f5cde0f69ec608c5303f085c44
  197. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  198. Date: Mon Oct 12 20:53:13 2009 -0700
  199. Fill in COPYING with notice from xkill.c
  200. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  201. commit ab65575eead9ff88b05d9d454bcc21ec2c4dc67d
  202. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  203. Date: Thu Oct 1 14:54:25 2009 -0700
  204. Add README with pointers to mailing lists, bugzilla, & git
  205. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  206. commit b5921d7ad244da5f603e82b559f74496ea87144e
  207. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  208. Date: Thu Jan 22 15:24:07 2009 -0200
  209. Correct make distcheck and sparse warnings.
  210. commit 56d891b93917fc4df223cb853d87d0f8055222ff
  211. Author: James Cloos <cloos@jhcloos.com>
  212. Date: Thu Dec 6 16:37:20 2007 -0500
  213. Replace static ChangeLog with dist-hook to generate from git log
  214. commit 629904623ae2faf045a36ad34232e5221464ea5e
  215. Author: James Cloos <cloos@jhcloos.com>
  216. Date: Mon Sep 3 05:51:29 2007 -0400
  217. Add *~ to .gitignore to skip patch/emacs droppings
  218. commit fcd99b45c1cad1c0401a75f5d5382bb955e19193
  219. Author: James Cloos <cloos@jhcloos.com>
  220. Date: Thu Aug 23 19:24:55 2007 -0400
  221. Rename .cvsignore to .gitignore
  222. commit 4ec3cd5ffd1bbb60080d01f8c231377fc5a826e5
  223. Author: Kevin E Martin <kem@kem.org>
  224. Date: Wed Dec 21 02:29:51 2005 +0000
  225. Update package version for X11R7 release.
  226. commit 9d1b202719c0f309c7415a811ff9ecae98255f89
  227. Author: Adam Jackson <ajax@nwnk.net>
  228. Date: Mon Dec 19 16:22:45 2005 +0000
  229. Stub COPYING files
  230. commit fb1adc01f88c30870101fe347d0318effdcb3e77
  231. Author: Kevin E Martin <kem@kem.org>
  232. Date: Thu Dec 15 00:24:08 2005 +0000
  233. Update package version number for final X11R7 release candidate.
  234. commit ddec6128e6eaa39fa9b2504e48f95528c7160106
  235. Author: Kevin E Martin <kem@kem.org>
  236. Date: Tue Dec 6 22:48:23 2005 +0000
  237. Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
  238. commit 90e38679df91d01ff1080137e19870becab7db9a
  239. Author: Kevin E Martin <kem@kem.org>
  240. Date: Sat Dec 3 05:49:25 2005 +0000
  241. Update package version number for X11R7 RC3 release.
  242. commit 194593e3c5079aae82b6154d8f8a7dc850a7e223
  243. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  244. Date: Mon Nov 28 22:01:43 2005 +0000
  245. Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
  246. update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
  247. commit 478a694c026cb499e81577b8f803e54e30093566
  248. Author: Eric Anholt <anholt@freebsd.org>
  249. Date: Mon Nov 21 10:35:02 2005 +0000
  250. Another pass at .cvsignores for apps.
  251. commit 7b4ee77fb2ca2c3f48679e87d4072b53c67c54bd
  252. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  253. Date: Mon Nov 21 03:14:16 2005 +0000
  254. Change dependency from xmu to xmuu since the full xmu (with all its baggage
  255. like Xt) is not needed here.
  256. commit df1b59a49550f48b1bfae786eb6740c26be6196b
  257. Author: Eric Anholt <anholt@freebsd.org>
  258. Date: Sun Nov 20 22:08:53 2005 +0000
  259. Add/improve .cvsignore files for apps.
  260. commit 220c1ff8c16a08bd80df5875b898ea54d2867a12
  261. Author: Kevin E Martin <kem@kem.org>
  262. Date: Wed Oct 19 02:47:55 2005 +0000
  263. Update package version number for RC1 release.
  264. commit 1728356c8f5283422d95f9a04c1ef198843412ca
  265. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  266. Date: Mon Oct 17 23:56:23 2005 +0000
  267. Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
  268. work better with BSD make
  269. commit 3d6f2fde62212ebb4a1af65318555beea185dced
  270. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  271. Date: Fri Oct 14 00:25:46 2005 +0000
  272. Use sed to fill in variables in man page
  273. commit 32df10f8cd9a03fa7f68c3cc3c4fdbc12caa142a
  274. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  275. Date: Mon Aug 1 20:25:30 2005 +0000
  276. Install man pages to section 1 instead of section m (Patch from Donnie
  277. Berkholz)
  278. commit 2aaef8f0623c84e8e4ee1ab337a0cd2835d485f4
  279. Author: Kevin E Martin <kem@kem.org>
  280. Date: Fri Jul 29 21:22:35 2005 +0000
  281. Various changes preparing packages for RC0:
  282. - Verify and update package version numbers as needed
  283. - Implement versioning scheme
  284. - Change bug address to point to bugzilla bug entry form
  285. - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
  286. reenable it)
  287. - Fix makedepend to use pkgconfig and pass distcheck
  288. - Update build script to build macros first
  289. - Update modular Xorg version
  290. commit d2e267cbaf76a48e2604718477166dfc1178c1d6
  291. Author: Adam Jackson <ajax@nwnk.net>
  292. Date: Wed Jul 20 19:31:57 2005 +0000
  293. Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
  294. configure cache, you cache it, and the cached value is probably wrong.
  295. commit 8d94211de5403640c6fc532952d0c4c923bd90b1
  296. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  297. Date: Tue Jul 5 21:13:49 2005 +0000
  298. build system for xkill
  299. commit 202294e5cb0ab307c4e4fa200b1921ecc38f7044
  300. Author: Egbert Eich <eich@suse.de>
  301. Date: Mon Oct 18 14:21:47 2004 +0000
  302. Made handling of DevelDrivers for x86-64 more conformant to other
  303. platforms.
  304. Compress all font encodings (Stefan Dirsch).
  305. Fixed warnings.
  306. Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and
  307. Root mode (bugzilla #1580, James Su).
  308. Added another compose key combination for the Euro symbol (Stefan Dirsch).
  309. Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian).
  310. Changed default encoding for ru from KOI8-R to ISO8859-5 (Mike Fabian).
  311. This is the encoding that is also used by glibc. We may break other
  312. libcs - lets see who complains.
  313. Added explanation for DESTDIR to install to a different directory than /.
  314. Added some early bailouts to atiprobe if PCI structure pointer is NULL to
  315. prevent sig11.
  316. XV support doesn't depend on 2D acceleration any more. This patch removes
  317. this limitation from the NSC driver. This is a patch that I have
  318. committed to XFree86 a while ago but never ported over to X.Org.
  319. Matthieu Herrb contributed some build fixes.
  320. Fixing SetDPMSTimers() so that DPMS*Time == 0 disables the appropriate
  321. timer. This takes advantage of the fact that TimerSet() with a timeout
  322. argument 0 behaves like TimerCanel().
  323. Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink).
  324. Create missing links for backward compatibility to XFree86 (Stefan Dirsch).
  325. Changed comment to mention xorg.
  326. Changed cursor for the 'kill' action from XC_draped_box to XC_Pirate. If
  327. you don't like it we can change it back (original author unkown).
  328. Added 'pic' to the man page rendering command pipeline (Werner Fink).
  329. Added missing return value (Stefan Dirsch, Roland Mainz)
  330. commit eeb395a1c14d34528d6258fda49cb7b17611fbe8
  331. Author: Egbert Eich <eich@suse.de>
  332. Date: Fri Apr 23 19:54:57 2004 +0000
  333. Merging XORG-CURRENT into trunk
  334. commit 9ea36ca654dd6c59fe6749516f3649bba1e91b0d
  335. Author: Egbert Eich <eich@suse.de>
  336. Date: Sun Mar 14 08:35:37 2004 +0000
  337. Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
  338. commit 3d936cb388194961e869882512eb508920bc3220
  339. Author: Egbert Eich <eich@suse.de>
  340. Date: Wed Mar 3 12:13:14 2004 +0000
  341. Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
  342. commit 4b99583185e38d2e0f6fd01cea2ecd89583c8f90
  343. Author: Egbert Eich <eich@suse.de>
  344. Date: Thu Feb 26 13:36:26 2004 +0000
  345. readding XFree86's cvs IDs
  346. commit dac9075c3192d32a78df4b5f097eca200d05cbb7
  347. Author: Egbert Eich <eich@suse.de>
  348. Date: Thu Feb 26 09:24:14 2004 +0000
  349. Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
  350. commit ab181027bfe9d5a3f53d96c6dc29fc9c47e33558
  351. Author: Kaleb Keithley <kaleb@freedesktop.org>
  352. Date: Tue Nov 25 19:29:14 2003 +0000
  353. XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
  354. commit 955b24e6872aba60a6337b21cbfe346f99706c40
  355. Author: Kaleb Keithley <kaleb@freedesktop.org>
  356. Date: Fri Nov 14 16:49:23 2003 +0000
  357. XFree86 4.3.0.1
  358. commit 856b88d175fe3399a0fd34a4531931061eb8a309
  359. Author: Kaleb Keithley <kaleb@freedesktop.org>
  360. Date: Fri Nov 14 15:54:54 2003 +0000
  361. R6.6 is the Xorg base-line