ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  1. commit facf56074567094349d9050e99a659d8e3a1b0ce
  2. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  3. Date: Thu Apr 16 23:41:38 2015 -0700
  4. xkbprint 1.0.4
  5. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  6. commit e4c1258143bf09de5453faafe2c6f0bc107a1523
  7. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  8. Date: Sat May 31 21:39:32 2014 -0700
  9. autogen.sh: Honor NOCONFIGURE=1
  10. See http://people.gnome.org/~walters/docs/build-api.txt
  11. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  12. commit 4b12d476447952ab0a5a7a30d35d43de6f7418f8
  13. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  14. Date: Sat May 31 21:38:41 2014 -0700
  15. configure: Drop AM_MAINTAINER_MODE
  16. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  17. commit 59d82dc7c5dd4a6ca2098ba51fb9683fb03720ab
  18. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  19. Date: Sat May 31 21:33:34 2014 -0700
  20. Remove old CVS id tags
  21. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  22. commit 545db04829433b7d30de75ea03dc4495a91a8ab6
  23. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  24. Date: Sat May 31 20:16:42 2014 -0700
  25. Add -version option to print program version
  26. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  27. commit 8e86b50311c3b926d2bb1e00fb5343f3e76d55b3
  28. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  29. Date: Sat May 31 19:51:00 2014 -0700
  30. Fix some sign/size conversion warnings from clang
  31. psgeom.c:1320:17: warning: implicit conversion changes signedness:
  32. 'int' to 'unsigned long' [-Wsign-conversion]
  33. if ((sym & (~0xff)) == 0x700) {
  34. ~ ^~~~~
  35. psgeom.c:1666:31: warning: implicit conversion changes signedness:
  36. 'int' to 'unsigned long' [-Wsign-conversion]
  37. else if (((sym & (~0xff)) == 0) && isprint(sym) && (!isspace(sym))) {
  38. ~ ^~~~~
  39. psgeom.c:1860:27: warning: implicit conversion loses integer precision:
  40. 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
  41. int len = strlen(top->label[i]);
  42. ~~~ ^~~~~~~~~~~~~~~~~~~~~
  43. xkbprint.c:460:19: warning: implicit conversion loses integer precision:
  44. 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
  45. int len = strlen(inputFile);
  46. ~~~ ^~~~~~~~~~~~~~~~~
  47. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  48. commit 641a71f594688d870540be47ddff339d746a4fa0
  49. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  50. Date: Sat May 31 19:40:34 2014 -0700
  51. Remove unused INPUT_* definitions
  52. Flagged by clang:
  53. xkbprint.c:62:9: warning: macro is not used [-Wunused-macros]
  54. ^
  55. xkbprint.c:61:9: warning: macro is not used [-Wunused-macros]
  56. ^
  57. xkbprint.c:60:9: warning: macro is not used [-Wunused-macros]
  58. ^
  59. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  60. commit 4bbc62129724cdc61f601e4f1c98490bca403619
  61. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  62. Date: Sat May 31 19:18:08 2014 -0700
  63. Move some local variables to the scope in which they live
  64. Helps both human readers and static code analyzers realize they're not
  65. used outside these scopes.
  66. Flagged by cppcheck 1.64:
  67. [psgeom.c:1761]: (style) The scope of the variable 'keycode' can be reduced.
  68. [psgeom.c:1858]: (style) The scope of the variable 'len' can be reduced.
  69. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  70. commit 7d186165440c5a370af7551f5958baae2f0b3725
  71. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  72. Date: Sat May 31 19:00:09 2014 -0700
  73. Combine IsoKeyCaps array of strings into a single string
  74. Packs more efficiently in binary, reduces number of calls to output,
  75. gets rid of ~4k array of pointers to each string in data segment to
  76. initialize on program load.
  77. "xkbprint -if IsoKeyCaps" generates identical IsoKeyCaps.pfa files
  78. before & after this change.
  79. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  80. commit bac53a94fec22563294cb57413e8d394df06c70a
  81. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  82. Date: Tue May 27 21:51:01 2014 -0700
  83. Replace calls to index() with calls to strchr()
  84. Both were in use in different functions, adopt the ANSI C standard
  85. function for all calls.
  86. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  87. commit 5ee01f266fd315e5bee624ec9d54357ffa593dfc
  88. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  89. Date: Tue May 27 21:50:29 2014 -0700
  90. Combine repeated sequences of fprintf() calls into single calls
  91. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  92. commit e7aa5ea85d57b90c1ee3244facd2dfd4d3ff1cd5
  93. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  94. Date: Tue May 27 21:04:05 2014 -0700
  95. Replace remaining sprintf calls with snprintf()
  96. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  97. commit bfb6044479e8e974e848f47969f75b84865fea13
  98. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  99. Date: Tue May 27 20:55:33 2014 -0700
  100. Replace several malloc+sprintf pairs with asprintf() calls
  101. Includes fallback uAsprintf() for systems without asprintf yet
  102. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  103. commit 7848ba1d292f55553058c1f17596baa1094cdae5
  104. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  105. Date: Tue May 27 20:39:48 2014 -0700
  106. Add printf & noreturn attributes recommended by gcc
  107. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  108. commit 8a7b707f6f841655498c753701ee38f12ba630cf
  109. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  110. Date: Tue May 27 20:35:49 2014 -0700
  111. Replace uStrCaseCmp() with direct calls to strcasecmp()
  112. strcasecmp is available in Unix98 and later, so part of the X.Org base
  113. platform requirements.
  114. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  115. commit e144ec9018cabd1d9904fb6d04382d2cf06ec3dc
  116. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  117. Date: Tue May 27 20:32:42 2014 -0700
  118. Replace uStringDup() with direct calls to strdup()
  119. strdup is available in Unix98 and later, so part of the X.Org base
  120. platform requirements.
  121. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  122. commit cefec39d93846c2d034be9a89f48466831eddde6
  123. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  124. Date: Tue May 27 20:30:20 2014 -0700
  125. Replace custom uAlloc/uCalloc with plain malloc/calloc
  126. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  127. commit ab92831be0e862622105f015fe8c390715d2aae9
  128. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  129. Date: Mon May 26 16:15:00 2014 -0700
  130. Replace sole call to uFree() with direct call to free()
  131. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  132. commit 4ae1b3d5f5330a8f7bd8880860a204000081095c
  133. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  134. Date: Mon May 26 16:13:23 2014 -0700
  135. Remove unused uTmpAlloc & uTmpFree fallbacks for alloca
  136. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  137. commit e9a66d6ba4d0edd2d2d12cd0271aaecc43b6067d
  138. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  139. Date: Mon May 26 16:12:05 2014 -0700
  140. Remove unused uRealloc & uRecalloc functions
  141. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  142. commit dbbc677985e3a853f2e52b8a9d09660d3fa6d983
  143. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  144. Date: Mon May 26 16:10:33 2014 -0700
  145. Remove unused uStrCasePrefix fallback for strncasecmp
  146. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  147. commit 7ca2572623fee8db916eff668ef3c852f2ce124a
  148. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  149. Date: Mon May 26 16:09:29 2014 -0700
  150. Remove unused debugging & function tracing frameworks
  151. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  152. commit b883af48e9624e2215d1e790ca0da4969480ce13
  153. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  154. Date: Mon May 26 16:06:05 2014 -0700
  155. Remove unused uASSERT macro
  156. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  157. commit 5256304812e89c1c02bed093d11f96d97216bdbe
  158. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  159. Date: Mon May 26 16:03:30 2014 -0700
  160. Fix many const char * warnings
  161. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  162. commit e1b1ecd2e9858dca67ed1da90799f1ea34fc9b71
  163. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  164. Date: Mon May 26 10:17:12 2014 -0700
  165. unifdef -Unotyet -UNOTYET
  166. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  167. commit 9456437718d78b942333bdf74124c027ba35039f
  168. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  169. Date: Mon May 26 10:13:31 2014 -0700
  170. Convert sources to X.Org standard coding style
  171. Via util/modular/x-indent-all.sh
  172. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  173. commit 7ebdc6c2ed2917dd48687aa16c6909186a575e2d
  174. Author: Gaetan Nadon <memsize@videotron.ca>
  175. Date: Wed Jan 19 10:06:56 2011 -0500
  176. config: move man pages into their own directory
  177. Use services provided by XORG_MANPAGE_SECTIONS.
  178. Use standard Makefile for man pages.
  179. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  180. commit d762e97a2c6745017912b19fe443ed814d557a51
  181. Author: Gaetan Nadon <memsize@videotron.ca>
  182. Date: Thu Jan 13 17:15:36 2011 -0500
  183. man: replace hard coded man page section with substitution strings
  184. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  185. commit a65ad77d80a1037889d4ba8aa061d109a0d15c2c
  186. Author: Gaetan Nadon <memsize@videotron.ca>
  187. Date: Thu Jan 13 11:15:47 2011 -0500
  188. man: remove trailing spaces and tabs
  189. Using s/[ \t]*$//
  190. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  191. commit 93479193971679781c302dcfda3f653ea67fb452
  192. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  193. Date: Fri Jan 7 19:09:37 2011 -0800
  194. xkbprint 1.0.3
  195. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  196. commit c6cb1b17600e2c2937751a712c7eadd411eb6da9
  197. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  198. Date: Wed Jan 5 17:03:30 2011 -0800
  199. config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  200. Regroup AC statements under the Autoconf initialization section.
  201. Regroup AM statements under the Automake initialization section.
  202. Add missing AC_CONFIG_SRCDIR
  203. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  204. commit 5d321bc363ce5ef67a1297e24ed184a28eed4e9d
  205. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  206. Date: Wed Jan 5 17:00:42 2011 -0800
  207. config: upgrade to util-macros 1.8 for additional man page support
  208. Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
  209. The value of MAN_SUBST is the same for all X.Org packages.
  210. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
  211. Enables use of platform appropriate version of sed.
  212. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  213. commit 16c0b77e78ce2ce750b690469850294f5e69ab97
  214. Author: Gaetan Nadon <memsize@videotron.ca>
  215. Date: Wed Jan 5 16:58:47 2011 -0800
  216. config: update AC_PREREQ statement to 2.60
  217. Unrelated to the previous patches, the new value simply reflects
  218. the reality that the minimum level for autoconf to configure
  219. all x.org modules is 2.60 dated June 2006.
  220. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
  221. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  222. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  223. commit 6b8537579db562937af77ca5a4b0e19893a7bbee
  224. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  225. Date: Wed Jan 5 16:58:25 2011 -0800
  226. config: Remove unnecessary calls from configure.ac
  227. AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
  228. PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
  229. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  230. commit f15a69148c2ed5cf1717a0ad942ecdfcf037104d
  231. Author: Gaetan Nadon <memsize@videotron.ca>
  232. Date: Thu Nov 26 09:19:54 2009 -0500
  233. Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
  234. Now that the INSTALL file is generated.
  235. Allows running make maintainer-clean.
  236. commit 90d54a9a94ac30ac6ee7fa78ea8e6a898490afe6
  237. Author: Gaetan Nadon <memsize@videotron.ca>
  238. Date: Wed Oct 28 14:09:08 2009 -0400
  239. INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  240. Add missing INSTALL file. Use standard GNU file on building tarball
  241. README may have been updated
  242. Remove AUTHORS file as it is empty and no content available yet.
  243. Remove NEWS file as it is empty and no content available yet.
  244. commit 8d49899afe456a93c2bb7477b963fd31dbad5942
  245. Author: Gaetan Nadon <memsize@videotron.ca>
  246. Date: Tue Oct 27 15:07:25 2009 -0400
  247. Deploy the new XORG_DEFAULT_OPTIONS #24242
  248. This macro aggregate a number of existing macros that sets commmon
  249. X.Org components configuration options. It shields the configuration file from
  250. future changes.
  251. commit d2d7a487230ebc281aa2d1a88038befb69e63b7d
  252. Author: Gaetan Nadon <memsize@videotron.ca>
  253. Date: Mon Oct 26 22:08:39 2009 -0400
  254. Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
  255. ChangeLog filename is known to Automake and requires no further
  256. coding in the makefile.
  257. commit 2683cf26ec97c49fac6145227d9f4cae3fa8a1bd
  258. Author: Gaetan Nadon <memsize@videotron.ca>
  259. Date: Thu Oct 22 12:34:15 2009 -0400
  260. .gitignore: use common defaults with custom section # 24239
  261. Using common defaults will reduce errors and maintenance.
  262. Only the very small or inexistent custom section need periodic maintenance
  263. when the structure of the component changes. Do not edit defaults.
  264. commit 31b7584cd60accc2d7dbaf5797d34495e321b793
  265. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  266. Date: Tue Nov 10 23:39:43 2009 -0800
  267. xkbprint 1.0.2
  268. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  269. commit ec17f1a60b1c9d9871213eae475740640fe6312d
  270. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  271. Date: Tue Nov 10 23:38:29 2009 -0800
  272. Fill in COPYING with notices from code
  273. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  274. commit 4ecf1e50d97afde8c5e343d6c25e5a1eb940e02c
  275. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  276. Date: Tue Nov 10 23:34:48 2009 -0800
  277. Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
  278. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  279. commit bcf318755e452925e6cc06ea564f63e846cabf38
  280. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  281. Date: Thu Oct 1 14:54:25 2009 -0700
  282. Add README with pointers to mailing lists, bugzilla, & git
  283. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  284. commit d67733133b7a1062628e6c5e7512adf998026b6a
  285. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  286. Date: Thu Jan 22 14:53:41 2009 -0200
  287. Correct make distcheck and sparse warnings.
  288. commit 077871dce17f78ffa94e8bc2de21461fd8a4960d
  289. Author: Peter Breitenlohner <peb@mppmu.mpg.de>
  290. Date: Fri Nov 14 13:37:05 2008 +0100
  291. build fixes
  292. use AM_CFLAGS instead of xkbprint_CFLAGS to avoid need for AM_PROG_CC_C_O
  293. replace 'git-log' by 'git log' as required by git-1.6.x
  294. commit 58d940fbb303cc16549f913e33429362760132de
  295. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  296. Date: Sun Mar 16 19:02:31 2008 -0300
  297. Compile warning fixes.
  298. Use constant octals instead of constant characters in switch case values
  299. to avoid warnings/problems if constant characters are signed.
  300. Ansify some functions in utils.c.
  301. Signed-off-by: Peter Breitenlohner <peb@mppmu.mpg.de>
  302. commit 885f2712b0d5137d5349c3debbcea0db0f39e92f
  303. Author: Pavel Kurashov <pavell@mail.ru>
  304. Date: Fri Nov 14 13:50:20 2008 +0100
  305. correct outline with cornerRadius
  306. http://bugs.freedesktop.org/show_bug.cgi?id=12790
  307. https://bugs.freedesktop.org/attachment.cgi?id=12008
  308. Signed-off-by: Peter Breitenlohner <peb@mppmu.mpg.de>
  309. commit 6bd5defc38d2e1868d9303026b38487d6bffc7ab
  310. Author: Niveditha Rau <Niveditha.Rau@Sun.COM>
  311. Date: Thu Jun 12 16:52:05 2008 -0700
  312. Fix typo in xkbprint man page
  313. commit 6e1a5562d22f2f7cdc9478be1e3c809dfa509573
  314. Author: James Cloos <cloos@jhcloos.com>
  315. Date: Thu Dec 6 16:37:19 2007 -0500
  316. Replace static ChangeLog with dist-hook to generate from git log
  317. commit a912837d96da29022c0a2a75212ac381aec1dcfe
  318. Author: James Cloos <cloos@jhcloos.com>
  319. Date: Mon Sep 3 05:51:27 2007 -0400
  320. Add *~ to .gitignore to skip patch/emacs droppings
  321. commit 4063d540920f603f334dc3bb8f478db23cdaa9e0
  322. Author: James Cloos <cloos@jhcloos.com>
  323. Date: Thu Aug 23 19:24:53 2007 -0400
  324. Rename .cvsignore to .gitignore
  325. commit 696b7234c93e3e9a6b8302640e625868699567ab
  326. Author: Kevin E Martin <kem@kem.org>
  327. Date: Wed Dec 21 02:29:51 2005 +0000
  328. Update package version for X11R7 release.
  329. commit 5e62ccda04eb02c3db07896a34253211ae749581
  330. Author: Adam Jackson <ajax@nwnk.net>
  331. Date: Mon Dec 19 16:22:45 2005 +0000
  332. Stub COPYING files
  333. commit e0e4e20547bf3f04f683e318862290b3fbaa0b37
  334. Author: Kevin E Martin <kem@kem.org>
  335. Date: Thu Dec 15 00:24:08 2005 +0000
  336. Update package version number for final X11R7 release candidate.
  337. commit 0a4cd3760ebc41fa95fea45ba0cc5579beebba4a
  338. Author: Kevin E Martin <kem@kem.org>
  339. Date: Tue Dec 6 22:48:23 2005 +0000
  340. Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
  341. commit f64993bf8cc357a05ee11ce28e0c60322cec98d2
  342. Author: Kevin E Martin <kem@kem.org>
  343. Date: Sat Dec 3 05:49:24 2005 +0000
  344. Update package version number for X11R7 RC3 release.
  345. commit 6dbafe93cd59e599bebf5d0fae7ecb87a42da8e1
  346. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  347. Date: Mon Nov 28 22:01:43 2005 +0000
  348. Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
  349. update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
  350. commit a7fca74540833d1d1cf02e6455cd33a91951e6e1
  351. Author: Eric Anholt <anholt@freebsd.org>
  352. Date: Mon Nov 21 10:35:02 2005 +0000
  353. Another pass at .cvsignores for apps.
  354. commit 1c9055c2dbdb68f1f419ffac0596130c3bda61e8
  355. Author: Eric Anholt <anholt@freebsd.org>
  356. Date: Sun Nov 20 22:08:53 2005 +0000
  357. Add/improve .cvsignore files for apps.
  358. commit 1739444b40ef1e07e9bd6e0d9fe1f1e6e254809a
  359. Author: Kevin E Martin <kem@kem.org>
  360. Date: Sat Nov 19 07:15:37 2005 +0000
  361. Update pkgconfig files to separate library build-time dependencies from
  362. application build-time dependencies, and update package deps to work
  363. with separate build roots.
  364. commit 3eb0b0085955c8213c869a8b14e8ec00f3514b7b
  365. Author: Kevin E Martin <kem@kem.org>
  366. Date: Wed Oct 19 02:47:55 2005 +0000
  367. Update package version number for RC1 release.
  368. commit a59499ec60ad710155a8ff27158945551270d6b8
  369. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  370. Date: Mon Oct 17 23:56:23 2005 +0000
  371. Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
  372. work better with BSD make
  373. commit 3e3050ac678f225dfd9a2f50778b603a3e7f5da4
  374. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  375. Date: Fri Oct 14 00:25:46 2005 +0000
  376. Use sed to fill in variables in man page
  377. commit a3be5e6602ee8614401d62d8b37ae0f2bed0f631
  378. Author: Kevin E Martin <kem@kem.org>
  379. Date: Fri Jul 29 21:22:35 2005 +0000
  380. Various changes preparing packages for RC0:
  381. - Verify and update package version numbers as needed
  382. - Implement versioning scheme
  383. - Change bug address to point to bugzilla bug entry form
  384. - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
  385. reenable it)
  386. - Fix makedepend to use pkgconfig and pass distcheck
  387. - Update build script to build macros first
  388. - Update modular Xorg version
  389. commit 10e946b8da2718e6657e8a1a880fd46acc6c5ce8
  390. Author: Daniel Stone <daniel@fooishbar.org>
  391. Date: Wed Jul 27 01:54:18 2005 +0000
  392. Move manpages to section 1 instead of section m.
  393. commit 95191a911fce864af7349df2377363885e4c920f
  394. Author: Adam Jackson <ajax@nwnk.net>
  395. Date: Wed Jul 20 19:31:57 2005 +0000
  396. Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
  397. configure cache, you cache it, and the cached value is probably wrong.
  398. commit c4b22b69df1162dab5db3691053ac0b6fb4c4503
  399. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  400. Date: Wed Jul 6 20:42:02 2005 +0000
  401. Build system for xkbprint
  402. commit 15c4274c3da2c63bd83b14ef4d35727222d62ed2
  403. Author: Egbert Eich <eich@suse.de>
  404. Date: Fri Apr 23 19:54:57 2004 +0000
  405. Merging XORG-CURRENT into trunk
  406. commit e4848d45534f7ff28304397ca9ff0aa2de6cfe97
  407. Author: Egbert Eich <eich@suse.de>
  408. Date: Sun Mar 14 08:35:37 2004 +0000
  409. Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
  410. commit ca0576c0a0b21eb60562995318594a2958a76e9d
  411. Author: Egbert Eich <eich@suse.de>
  412. Date: Wed Mar 3 12:13:14 2004 +0000
  413. Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
  414. commit 31c64747c1c70a36a916921519d004f22263964f
  415. Author: Egbert Eich <eich@suse.de>
  416. Date: Thu Feb 26 13:36:26 2004 +0000
  417. readding XFree86's cvs IDs
  418. commit 17de96585abae92ffab5e61b9890fb3170c202cd
  419. Author: Egbert Eich <eich@suse.de>
  420. Date: Thu Feb 26 09:24:13 2004 +0000
  421. Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
  422. commit 53c425e61c058fa586040dda56728906025989e8
  423. Author: Kaleb Keithley <kaleb@freedesktop.org>
  424. Date: Tue Nov 25 19:29:14 2003 +0000
  425. XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
  426. commit 1952210eda8c22ca34704894290e9a39ee96ecb4
  427. Author: Kaleb Keithley <kaleb@freedesktop.org>
  428. Date: Fri Nov 14 16:49:23 2003 +0000
  429. XFree86 4.3.0.1
  430. commit e621300441be997039c5f1abadd92fc3bab733f8
  431. Author: Kaleb Keithley <kaleb@freedesktop.org>
  432. Date: Fri Nov 14 15:54:54 2003 +0000
  433. R6.6 is the Xorg base-line