ChangeLog 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. commit 34efe0c4ec0d0e93e044448baabbdaa6d46e7415
  2. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  3. Date: Sun Feb 10 15:46:54 2013 -0800
  4. xkbutils 1.0.4
  5. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  6. commit ff8ee7eeee694476140fe51fc0a47f9c694c5541
  7. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  8. Date: Sat Jan 12 22:06:03 2013 -0800
  9. Declare bit to shift as unsigned to clear compiler warning
  10. "xkbvleds.c", line 343: warning: integer overflow detected: op "<<"
  11. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  12. commit 10105c373b973ef73b8ab19ee62fc152b7230da2
  13. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  14. Date: Sat Jan 12 22:00:30 2013 -0800
  15. Add -version flags to all three commands
  16. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  17. commit 5a4bb361aa2247c552f807f162a9fd0e60305ec4
  18. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  19. Date: Sat Jan 12 21:33:23 2013 -0800
  20. Combine usage message strings/calls
  21. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  22. commit 7a588b73582cb178acdb6c6b578d87f98cebfec9
  23. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  24. Date: Sat Jan 12 21:11:08 2013 -0800
  25. Delete more unused macros from utils.h
  26. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  27. commit 9fbe47e349fb261a3845c3c74f8832dbadfdbe8d
  28. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  29. Date: Sat Jan 12 21:02:39 2013 -0800
  30. Remove unused u*alloc functions from utils.c
  31. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  32. commit c968ddd21a83f64c5bbe26b1b3adbfcfd3d04ff7
  33. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  34. Date: Sat Jan 12 20:45:14 2013 -0800
  35. Remove unused uStringDup function
  36. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  37. commit eeb4cc1251c01fe9d8097224a780c18a3b35b5d0
  38. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  39. Date: Sat Jan 12 20:41:30 2013 -0800
  40. Make configure actually check for strcasecmp
  41. utils.h & utils.c had #ifdefs to check for it, and only define their
  42. fallback if HAVE_STRCASECMP was not defined, but we never defined it.
  43. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  44. commit 2c4d682b6afcfbddb70690efd7536afb98f9a97e
  45. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  46. Date: Sat Jan 12 19:42:23 2013 -0800
  47. Remove unused debug & function tracing infrastructure from utils.c
  48. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  49. commit 4c516e1b0ad66586e3f770d988de775481482e1a
  50. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  51. Date: Sat Jan 12 19:36:43 2013 -0800
  52. Mark uFatalError as _X_NORETURN
  53. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  54. commit b33ad85fe9190d2ddbddb3422cc06a5a36c0cde6
  55. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  56. Date: Sat Jan 12 19:33:36 2013 -0800
  57. Add printf attributes to utils.c printing functions
  58. Doesn't find any problems, but clears -Wmissing-format-attribute warnings
  59. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  60. commit b93888eb689485d9899cbf7c224b20d68968e857
  61. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  62. Date: Sat Jan 12 19:28:11 2013 -0800
  63. Declare utils.c functions as taking const char * arguments
  64. Clears dozens of const string warnings from gcc.
  65. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  66. commit 0ba7294e8e5ca61b03ef7c76da7d381e93eaf937
  67. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  68. Date: Sat Jan 12 19:13:28 2013 -0800
  69. config: Add missing AC_CONFIG_SRCDIR
  70. Regroup AC statements under the Autoconf initialization section.
  71. Regroup AM statements under the Automake initialization section.
  72. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  73. commit 50a779c50b1303baa6bcea91d00da176a77431f5
  74. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  75. Date: Sat Jan 12 19:11:25 2013 -0800
  76. unifdef CRAY
  77. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  78. commit 1c18ce20a45f5cf66ace8d0ade1fa76c032c0f9f
  79. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  80. Date: Sat Jan 12 19:06:49 2013 -0800
  81. Remove unused streq() macro
  82. LED.c:37:9: warning: macro is not used [-Wunused-macros]
  83. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  84. commit 4b3f2f1b71188344fe2e313de6a53a702ab37bb1
  85. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  86. Date: Sat Jan 12 18:56:20 2013 -0800
  87. Remove unused #ifdef notyet typedef
  88. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  89. commit 8d68ee228a0031f367cd3edef9d6f9dace984cc6
  90. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  91. Date: Sat Jan 12 18:55:16 2013 -0800
  92. Remove CVS version tags
  93. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  94. commit fdbff6587f29048c85772f21d3647797f96d527f
  95. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  96. Date: Sat Jan 12 18:53:47 2013 -0800
  97. Convert to X.Org standard coding style
  98. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  99. commit e3092ad9d9742630aa34044c7a37802ccfc6ee61
  100. Author: Jeremy Huddleston <jeremyhu@apple.com>
  101. Date: Sat May 7 21:41:13 2011 -0700
  102. Fix typo in SetValues which could fail to detect a change if only width/height changed
  103. LED.c:249:25: warning: Both operands to '!=' always have the same value
  104. || curlw->core.height != curlw->core.height) {
  105. ~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~
  106. LED.c:248:24: warning: Both operands to '!=' always have the same value
  107. || curlw->core.width != curlw->core.width
  108. ~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~
  109. Found-by: clang static analyzer
  110. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
  111. commit 01ee88f0c5e66bde5fed99c520e3bdc679740b96
  112. Author: Gaetan Nadon <memsize@videotron.ca>
  113. Date: Wed Jan 19 10:06:56 2011 -0500
  114. config: move man pages into their own directory
  115. Use services provided by XORG_MANPAGE_SECTIONS.
  116. Use standard Makefile for man pages.
  117. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  118. commit 3e4ab9da78e921bcad36ca2e96cffaafa0866472
  119. Author: Gaetan Nadon <memsize@videotron.ca>
  120. Date: Thu Jan 13 11:15:47 2011 -0500
  121. man: remove trailing spaces and tabs
  122. Using s/[ \t]*$//
  123. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  124. commit a178a34f95c5ce7986a129df48a698f5545c6d01
  125. Author: Gaetan Nadon <memsize@videotron.ca>
  126. Date: Wed Jan 12 16:28:02 2011 -0500
  127. config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  128. This silences an Autoconf warning
  129. commit 820d9be7cf4e501c931c4e31b38ddd2d55209ce2
  130. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  131. Date: Sat Oct 30 10:14:38 2010 -0700
  132. xkbutils 1.0.3
  133. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  134. commit 19b8c1dfc637245e306b34a3aef69370cfe8059b
  135. Author: Gaetan Nadon <memsize@videotron.ca>
  136. Date: Fri Oct 1 17:36:33 2010 -0400
  137. config: update direct dependencies for xkbvleds and xkbwatch
  138. Depends on xproto through the inclusion of X.h.
  139. Depends on x11 through the inclusion of Xlib.h.
  140. Depends on Xaw through the inclusion of XawInit.h
  141. Depends on Xt through the inclusion of IntrinsicP.h
  142. Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  143. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  144. commit 73401c0d6679ff6a1c06d732c192a69cf70a27fc
  145. Author: Gaetan Nadon <memsize@videotron.ca>
  146. Date: Fri Oct 1 17:34:53 2010 -0400
  147. config: update direct dependencies for xkbbell
  148. Depends on xproto through the inclusion of Xproto.h.
  149. Depends on inputproto through the inclusion of XI.h
  150. Depends on x11 through the inclusion of Xlib.h.
  151. Does not depend on xkbfile for headers or libs.
  152. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  153. commit 5778996d90d7ddee169e1dbf48a11896ee2fd34c
  154. Author: Gaetan Nadon <memsize@videotron.ca>
  155. Date: Sun Aug 8 10:55:06 2010 -0400
  156. LED.c: remove unrequired X11/Xmu includes
  157. This removes a direct dependencies which was not reflected
  158. in configure.ac.
  159. Xaw privatly requires Xmu.
  160. Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  161. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  162. commit 1f08410c81e7b9bb1fc5ac9e40e37c26906bfd0c
  163. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  164. Date: Thu Sep 23 20:46:12 2010 -0700
  165. config: Remove unnecessary calls from configure.ac
  166. AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
  167. PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
  168. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  169. commit b7de2aa690fbf033e74427d1d37ffa49cbfd031a
  170. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  171. Date: Thu Sep 23 20:10:43 2010 -0700
  172. config: upgrade to util-macros 1.8 for additional man page support
  173. Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
  174. The value of MAN_SUBST is the same for all X.Org packages.
  175. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
  176. Enables use of platform appropriate version of sed.
  177. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  178. commit 03459ea3c60c19703c958b1f7199021168c49cdd
  179. Author: Gaetan Nadon <memsize@videotron.ca>
  180. Date: Tue Jul 20 18:45:18 2010 -0400
  181. config: update AC_PREREQ statement to 2.60
  182. Unrelated to the previous patches, the new value simply reflects
  183. the reality that the minimum level for autoconf to configure
  184. all x.org modules is 2.60 dated June 2006.
  185. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
  186. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  187. commit 5b5542b8a581754a87ba0d466e403e1f47e17103
  188. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  189. Date: Fri Aug 6 09:19:28 2010 -0700
  190. Sun copyrights are now owned by Oracle
  191. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  192. commit 7aa41989a5aede80b97a1306bd782842baf35bce
  193. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  194. Date: Fri Aug 6 09:17:10 2010 -0700
  195. Add DEC notice from utils.c to COPYING
  196. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  197. commit bd94930d9082095886f469965264dc352f0bbbb2
  198. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  199. Date: Thu Jan 14 22:46:10 2010 -0800
  200. Add missing notices to COPYING file
  201. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  202. commit 5bed941fa0064823bfbe21c37729df02a5aa9b97
  203. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  204. Date: Thu Jan 14 22:18:41 2010 -0800
  205. Update Sun license notices to current X.Org standard form
  206. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  207. commit d2d6d39c60fa224752066b9d0791306c5fd4efad
  208. Author: Gaetan Nadon <memsize@videotron.ca>
  209. Date: Thu Jan 7 21:58:57 2010 -0500
  210. COPYING: replace stub with actual copyright notice
  211. Refer to xkbwatch.c
  212. Copyright (c) 1995 by Silicon Graphics Computer Systems, Inc.
  213. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  214. commit a8b01ac9a898ba8a5f273f1a0b50485b4ff61e2a
  215. Author: Gaetan Nadon <memsize@videotron.ca>
  216. Date: Thu Nov 26 09:19:54 2009 -0500
  217. Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
  218. Now that the INSTALL file is generated.
  219. Allows running make maintainer-clean.
  220. commit 81f74707c1d2638c911067ba81356696f73c6d0c
  221. Author: Gaetan Nadon <memsize@videotron.ca>
  222. Date: Wed Oct 28 14:09:08 2009 -0400
  223. INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  224. Add missing INSTALL file. Use standard GNU file on building tarball
  225. README may have been updated
  226. Remove AUTHORS file as it is empty and no content available yet.
  227. Remove NEWS file as it is empty and no content available yet.
  228. commit 5786d1deeab8fe6c6ed0481220e487e9ec5cfdf4
  229. Author: Gaetan Nadon <memsize@videotron.ca>
  230. Date: Tue Oct 27 15:07:25 2009 -0400
  231. Deploy the new XORG_DEFAULT_OPTIONS #24242
  232. This macro aggregate a number of existing macros that sets commmon
  233. X.Org components configuration options. It shields the configuration file from
  234. future changes.
  235. commit fac7fddbd5df94789d78cd0847dcd8684486d668
  236. Author: Gaetan Nadon <memsize@videotron.ca>
  237. Date: Mon Oct 26 22:08:39 2009 -0400
  238. Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
  239. ChangeLog filename is known to Automake and requires no further
  240. coding in the makefile.
  241. commit 2ad523460c93e29d24a531894a7719b3b0b87e90
  242. Author: Gaetan Nadon <memsize@videotron.ca>
  243. Date: Thu Oct 22 12:34:15 2009 -0400
  244. .gitignore: use common defaults with custom section # 24239
  245. Using common defaults will reduce errors and maintenance.
  246. Only the very small or inexistent custom section need periodic maintenance
  247. when the structure of the component changes. Do not edit defaults.
  248. commit 33383dca28dc60473f677a302962413d504fc4f3
  249. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  250. Date: Fri Oct 16 18:46:53 2009 -0700
  251. xkbutils 1.0.2
  252. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  253. commit 864b472e096a8c6ca8f86f78615da023adeb60fd
  254. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  255. Date: Fri Oct 16 18:46:24 2009 -0700
  256. Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
  257. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  258. commit 917138713d60631c6d2e03afae88e7425caa7afd
  259. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  260. Date: Thu Oct 1 14:54:25 2009 -0700
  261. Add README with pointers to mailing lists, bugzilla, & git
  262. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  263. commit 0c3b1ab2daa3a48d33da55f016d6771b8faaef7b
  264. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  265. Date: Thu Jan 22 15:06:47 2009 -0200
  266. Correct make distcheck and sparse warnings.
  267. commit 98b7afc0d1d53a766ea60175e9fc5f031051f057
  268. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  269. Date: Sun Mar 16 18:51:53 2008 -0300
  270. Compile warning fixes.
  271. Ansify some functions in LED.c and utils.c.
  272. commit f4db3aa38240038496d99b1368f5b6fb412f53a9
  273. Author: James Cloos <cloos@jhcloos.com>
  274. Date: Wed Aug 20 10:32:51 2008 -0400
  275. xaw8 is gone, use xaw7
  276. commit 67322880f26c3e4818b9b36b18487951769372a7
  277. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  278. Date: Mon Aug 18 15:53:46 2008 -0700
  279. Add AM_PROG_CC_C_O to placate automake-1.10
  280. Makefile.am:33: compiling `xkbbell.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
  281. commit 7fa628b28be06ba387faae712c616ebcd5306e57
  282. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  283. Date: Mon Aug 18 15:52:15 2008 -0700
  284. Add rudimentary man pages for xkbbell, xkbvleds, xkbwatch
  285. We've been shipping these in Solaris for years, but they still need
  286. work - it's a starting point though.
  287. commit d3f4c454ac17f3d18d1c5cae8ee00e69ffb29358
  288. Author: Eric Anholt <eric@anholt.net>
  289. Date: Fri Mar 14 09:07:36 2008 -0700
  290. Add missing dependency on inputproto.
  291. commit 69bcf4324926d9903979e62ed2f337898a6fe17d
  292. Author: James Cloos <cloos@jhcloos.com>
  293. Date: Fri Dec 7 20:54:53 2007 -0500
  294. Fix commit 7a0686b98d54fe77b10c52d7c4cc9e84a4df4479
  295. commit 7a0686b98d54fe77b10c52d7c4cc9e84a4df4479
  296. Author: James Cloos <cloos@jhcloos.com>
  297. Date: Thu Dec 6 16:37:19 2007 -0500
  298. Replace static ChangeLog with dist-hook to generate from git log
  299. commit 95878b55dd4f6cbba6c2d2c1e9e5d25d44b8f5e6
  300. Author: James Cloos <cloos@jhcloos.com>
  301. Date: Mon Sep 3 05:51:27 2007 -0400
  302. Add *~ to .gitignore to skip patch/emacs droppings
  303. commit 164ce22b4217a55a388bc5d61ed960c3b0ae91a4
  304. Author: James Cloos <cloos@jhcloos.com>
  305. Date: Thu Aug 23 19:24:54 2007 -0400
  306. Rename .cvsignore to .gitignore
  307. commit 481219d69d95ea4dccfae7b3a003c155879f3d18
  308. Author: Kevin E Martin <kem@kem.org>
  309. Date: Wed Dec 21 02:29:51 2005 +0000
  310. Update package version for X11R7 release.
  311. commit b8b8b84c9a5b85fed20ce23e71b01657d8231cc5
  312. Author: Adam Jackson <ajax@nwnk.net>
  313. Date: Mon Dec 19 16:22:45 2005 +0000
  314. Stub COPYING files
  315. commit dd7473e2087e366fc5c4c016026c22770b7413af
  316. Author: Kevin E Martin <kem@kem.org>
  317. Date: Thu Dec 15 00:24:08 2005 +0000
  318. Update package version number for final X11R7 release candidate.
  319. commit b828cb9a371404e62d833031a2b1d0312b776ad9
  320. Author: Kevin E Martin <kem@kem.org>
  321. Date: Sat Dec 3 05:49:24 2005 +0000
  322. Update package version number for X11R7 RC3 release.
  323. commit c91b322ed192a54144e56ce7e2564c94d228f2ad
  324. Author: Eric Anholt <anholt@freebsd.org>
  325. Date: Sun Nov 20 22:08:53 2005 +0000
  326. Add/improve .cvsignore files for apps.
  327. commit 3b715538c80f0b145d9ec36d17acbb72e9e7bdcb
  328. Author: Kevin E Martin <kem@kem.org>
  329. Date: Sat Nov 19 07:15:37 2005 +0000
  330. Update pkgconfig files to separate library build-time dependencies from
  331. application build-time dependencies, and update package deps to work
  332. with separate build roots.
  333. commit 1cad9a1624d9af4cee9b3a4dbc36258a09ac0c3f
  334. Author: Kevin E Martin <kem@kem.org>
  335. Date: Wed Nov 9 21:09:21 2005 +0000
  336. Update package version number for X11R7 RC2 release.
  337. commit eeb9f2e7ea53b54c3ccf7593a0873410b547ff46
  338. Author: Kevin E Martin <kem@kem.org>
  339. Date: Tue Nov 1 15:05:19 2005 +0000
  340. Update pkgcheck depedencies to work with separate build roots.
  341. commit d77bf077c620d9bbec866d6a49212bca4848b11e
  342. Author: Kevin E Martin <kem@kem.org>
  343. Date: Fri Jul 29 21:22:35 2005 +0000
  344. Various changes preparing packages for RC0:
  345. - Verify and update package version numbers as needed
  346. - Implement versioning scheme
  347. - Change bug address to point to bugzilla bug entry form
  348. - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
  349. reenable it)
  350. - Fix makedepend to use pkgconfig and pass distcheck
  351. - Update build script to build macros first
  352. - Update modular Xorg version
  353. commit 13e10bbd6f54b3d8b6cb4aa370c06863fb29d349
  354. Author: Daniel Stone <daniel@fooishbar.org>
  355. Date: Fri Jul 22 15:02:12 2005 +0000
  356. Add utils.h as source so it lands in distdir.
  357. commit 3423f5d91ecd66a2a967ccf6ed9ddfd2940d12ba
  358. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  359. Date: Wed Jul 6 20:54:51 2005 +0000
  360. Build system for xkbutils
  361. commit 5986b948e9821790f9c21f2556a11ca8f8a2d29e
  362. Author: Egbert Eich <eich@suse.de>
  363. Date: Fri Apr 23 19:54:57 2004 +0000
  364. Merging XORG-CURRENT into trunk
  365. commit 80512e7091a09313043adbb6bca84424a5b3909b
  366. Author: Egbert Eich <eich@suse.de>
  367. Date: Sun Mar 14 08:35:37 2004 +0000
  368. Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
  369. commit ec5d08d47d138e3f1ceca5ccd06c845cee5f758d
  370. Author: Egbert Eich <eich@suse.de>
  371. Date: Wed Mar 3 12:13:14 2004 +0000
  372. Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
  373. commit 02899a72c801eeb2b6b57bff82ae98d02ad9794e
  374. Author: Egbert Eich <eich@suse.de>
  375. Date: Thu Feb 26 13:36:26 2004 +0000
  376. readding XFree86's cvs IDs
  377. commit 4821635c8a3d82a52df7191996f455fc0b463347
  378. Author: Egbert Eich <eich@suse.de>
  379. Date: Thu Feb 26 09:24:13 2004 +0000
  380. Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
  381. commit d1c3c6175a74baf089122f4fc2136b96919577bf
  382. Author: Kaleb Keithley <kaleb@freedesktop.org>
  383. Date: Tue Nov 25 19:29:14 2003 +0000
  384. XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
  385. commit b8a964643bded3b8b835a93c3fbdae248e90e021
  386. Author: Kaleb Keithley <kaleb@freedesktop.org>
  387. Date: Fri Nov 14 16:49:23 2003 +0000
  388. XFree86 4.3.0.1
  389. commit 53c921965d341cfa3f14fedf862d9db666c16002
  390. Author: Kaleb Keithley <kaleb@freedesktop.org>
  391. Date: Fri Nov 14 15:54:54 2003 +0000
  392. R6.6 is the Xorg base-line