ChangeLog 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. commit 42f3a39c3085afd9ef904ae39102fd49bbc2e4a5
  2. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  3. Date: Thu Apr 30 21:39:51 2015 -0700
  4. libfontenc 1.1.3
  5. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  6. commit de1843aaf76015c9d99416f3122d169fe331b849
  7. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  8. Date: Sat Jan 17 19:37:28 2015 -0800
  9. Initialize aliases array in parseEncodingFile()
  10. The static analyzer insisted there were code paths that entries in this
  11. array could be read without them being initialized. While I couldn't
  12. see any way that would happen, this makes sure it can't and makes the
  13. analyzer quiet.
  14. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  15. commit c377d91157601df90936e49167ce28a548c9b740
  16. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  17. Date: Sat Jan 17 19:18:41 2015 -0800
  18. Reformat code to X.Org standard style
  19. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  20. commit 8eefb5a18de41b693c00767458ee51f034201ebf
  21. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  22. Date: Sat Jan 17 18:46:49 2015 -0800
  23. Replace strcpy+strcat calls with snprintf calls
  24. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  25. commit a5221fc11307eb1230ae2643c6e423b0f7867fde
  26. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  27. Date: Sat Jan 17 18:36:07 2015 -0800
  28. Replace sprintf call with snprintf
  29. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  30. commit 0037a42107b952c9d903719615747e760e4e7247
  31. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  32. Date: Thu Dec 26 09:40:00 2013 -0800
  33. Initialize both value1 & value2, not value1 twice
  34. Flagged by cppcheck 1.62:
  35. [src/encparse.c:303] -> [src/encparse.c:303]: (performance, inconclusive)
  36. Variable 'value1' is reassigned a value before the old one has been used
  37. if variable is no semaphore variable.
  38. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  39. commit 3acba630d8b57084f7e92c15732408711ed5137a
  40. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  41. Date: Thu Apr 25 20:52:11 2013 -0700
  42. libfontenc 1.1.2
  43. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  44. commit 624508365ec3279bc74ce523d024533e062629e1
  45. Author: Nickolai Zeldovich <nickolai@csail.mit.edu>
  46. Date: Sun Mar 3 23:57:34 2013 -0500
  47. libfontenc: setCode(): fix realloc invocation
  48. This patch fixes two bugs in the realloc invocation in setCode(), which
  49. most likely cause memory corruption when realloc is triggered:
  50. 1. Pass *enc to realloc (which is the dynamically-allocated buffer),
  51. instead of enc (which stores a pointer to the dynamically-allocated
  52. buffer).
  53. 2. Allocate enough memory for (*encsize) shorts, instead of (*encsize)
  54. bytes; see the call to malloc just above the realloc call.
  55. Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
  56. Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
  57. Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  58. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  59. commit f5d1208172e965fdd7fae8927bd3e29b3cc3a975
  60. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  61. Date: Sat Jan 19 08:23:09 2013 -0800
  62. Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS
  63. Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
  64. - Support for the long-deprecated INCLUDES variable will be removed
  65. altogether in Automake 1.14. The AM_CPPFLAGS variable should be
  66. used instead.
  67. This variable was deprecated in Automake releases prior to 1.10, which is
  68. the current minimum level required to build X.
  69. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  70. commit 0c3518df24192f18f15ce91c2868560a5973a3dc
  71. Author: Colin Walters <walters@verbum.org>
  72. Date: Wed Jan 4 17:37:06 2012 -0500
  73. autogen.sh: Implement GNOME Build API
  74. http://people.gnome.org/~walters/docs/build-api.txt
  75. Signed-off-by: Adam Jackson <ajax@redhat.com>
  76. commit edd325236d39b6ad130c82d90b04dcc3b153d8b2
  77. Author: Adam Jackson <ajax@redhat.com>
  78. Date: Tue Jan 15 14:28:48 2013 -0500
  79. configure: Remove AM_MAINTAINER_MODE
  80. Signed-off-by: Adam Jackson <ajax@redhat.com>
  81. commit 7de846ed190b2564b0642de79918dd3804083b4e
  82. Author: James Cloos <cloos@jhcloos.com>
  83. Date: Tue Apr 24 16:01:35 2012 -0400
  84. Fix ISO-8859-7 → ISO-10646 mapping.
  85. ISO-8859-7 code point 0xD2 is unassigned.
  86. ISO-10646 code point U+03A2, to which 0xD2 was mapping, also is unassigned.
  87. Reported by Norm Pierce.
  88. Signed-off-by: James Cloos <cloos@jhcloos.com>
  89. commit f7682533fa6de77d8bd6fa6480a0f5188e0e56d7
  90. Author: James Cloos <cloos@jhcloos.com>
  91. Date: Tue Apr 24 15:55:59 2012 -0400
  92. Fix ISO-8859-6 → ISO-10646 mapping.
  93. ISO-8859-6 code point 0xC0 is unassigned.
  94. ISO-10646 code point U+0620, to which 0xC0 was mapping, has since been
  95. assigned an unrelated character.
  96. Reported by Norm Pierce.
  97. Signed-off-by: James Cloos <cloos@jhcloos.com>
  98. commit 6012075d945e527866ef31b8796e04d6581071db
  99. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  100. Date: Fri Mar 2 17:51:30 2012 -0800
  101. libfontenc 1.1.1
  102. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  103. commit 381c9efec4c066d984514d226b61b3360741aea2
  104. Author: Jeremy Huddleston <jeremyhu@apple.com>
  105. Date: Fri Nov 11 10:22:52 2011 -0800
  106. Include strings.h for strcasecmp
  107. Our minimum requirement for X11 is currently Unix98. Unix98 provides
  108. strcasecmp in <strings.h>. This commit fixes implicit declarations
  109. of this function on systems that closely adhere to the standard.
  110. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
  111. commit 1da600011b7e89981592308843ce7230fa5f87f1
  112. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  113. Date: Fri Sep 16 22:07:14 2011 -0700
  114. Strip trailing whitespace
  115. Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
  116. git diff -w & git diff -b show no diffs from this change
  117. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  118. commit 272b776fbd8598ff447585b8105e622d8244db7c
  119. Author: Jeremy Huddleston <jeremyhu@apple.com>
  120. Date: Mon May 9 09:43:24 2011 -0700
  121. Dead code removal
  122. encparse.c:750:9: warning: Value stored to 'namsize' is never read
  123. namsize = 0;
  124. ^ ~
  125. Found-by: clang static analyzer
  126. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
  127. commit 39800e873e8a57ee904aaf3e39315f5250bcd26f
  128. Author: Gaetan Nadon <memsize@videotron.ca>
  129. Date: Thu Feb 3 17:37:36 2011 -0500
  130. config: comment, minor upgrade, quote and layout configure.ac
  131. Group statements per section as per Autoconf standard layout
  132. Quote statements where appropriate.
  133. Autoconf recommends not using dnl instead of # for comments
  134. Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
  135. Add AC_CONFIG_SRCDIR([Makefile.am])
  136. Update X.Org util-macros to version 1.8
  137. This helps automated maintenance and release activities.
  138. Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
  139. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  140. commit bd845a08f03afc4065cf418647d27129044fe96f
  141. Author: Gaetan Nadon <memsize@videotron.ca>
  142. Date: Fri Jan 28 19:41:37 2011 -0500
  143. config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  144. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  145. commit 8acc384499a31bd41a7b62e8f6977d67182e5f06
  146. Author: Gaetan Nadon <memsize@videotron.ca>
  147. Date: Thu Jan 27 18:50:14 2011 -0500
  148. config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
  149. XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
  150. AC_PROG_C_C99. This sets gcc with -std=gnu99.
  151. If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
  152. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  153. commit 0e3929c939d3f6c2ca79defcad8d2cceb3dba5df
  154. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  155. Date: Fri Nov 19 22:03:22 2010 -0800
  156. Fail configure if zlib.h & -lz not found
  157. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=31595
  158. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  159. Reviewed-by: Julien Cristau <jcristau@debian.org>
  160. Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
  161. commit a52174d1a7562a656559f9bb728a80982b814043
  162. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  163. Date: Wed Oct 20 22:35:18 2010 -0700
  164. libfontenc 1.1.0
  165. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  166. commit af4a0a752c169b2c003978c550d57602af3fbe01
  167. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  168. Date: Fri May 14 20:15:18 2010 -0700
  169. Don't need to check if pointer is NULL before calling free()
  170. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  171. Reviewed-by: Jamey Sharp <jamey@minilop.net>
  172. commit 2218195ebb18b620f9e8e0adbea6f7c87ace33ce
  173. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  174. Date: Fri May 14 20:09:21 2010 -0700
  175. Replace malloc(strlen()) + strcpy() with strdup()
  176. Now that we use malloc directly instead of xalloc, we can use
  177. strdup directly too.
  178. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  179. Reviewed-by: Jamey Sharp <jamey@minilop.net>
  180. commit 4af0cf6ef7309df18c81a1fd109a168c767d9f3d
  181. Author: Mikhail Gusarov <dottedmag@dottedmag.net>
  182. Date: Mon May 10 22:52:42 2010 +0700
  183. Nuke unnecessary casts
  184. Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
  185. Reviewed-by: Jamey Sharp <jamey@minilop.net>
  186. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  187. commit cfc89d09f1bf0ecbe602578fc80dcf6fe46b1c54
  188. Author: Mikhail Gusarov <dottedmag@dottedmag.net>
  189. Date: Mon May 10 22:52:41 2010 +0700
  190. Expand xalloc/xrealloc/xfree macros
  191. Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
  192. Reviewed-by: Jamey Sharp <jamey@minilop.net>
  193. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  194. commit 3db0064e4b6108716767b136ba5867c4cdf57f99
  195. Author: Mikhail Gusarov <dottedmag@dottedmag.net>
  196. Date: Mon May 10 22:52:40 2010 +0700
  197. unifdef FONTENC_NO_LIBFONT
  198. This symbol was unconditionally defined in Makefile
  199. Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
  200. Reviewed-by: Jamey Sharp <jamey@minilop.net>
  201. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  202. commit 8029fc07fc28e427979c81dd50087083e441d65d
  203. Author: Mikhail Gusarov <dottedmag@dottedmag.net>
  204. Date: Mon May 10 22:52:39 2010 +0700
  205. Nuke RCS tags
  206. Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
  207. Reviewed-by: Jamey Sharp <jamey@minilop.net>
  208. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  209. commit 3e00a8c322ea5fd8ea21f83f5861c59aa91ce341
  210. Author: Gaetan Nadon <memsize@videotron.ca>
  211. Date: Mon Mar 29 16:50:34 2010 -0400
  212. config: update AC_PREREQ statement to 2.60
  213. Unrelated to the previous patches, the new value simply reflects
  214. the reality that the minimum level for autoconf to configure
  215. all x.org modules is 2.60 dated June 2006.
  216. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
  217. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  218. commit 0191826dd2f0fc54dfce72ce729d142ddecbabcf
  219. Author: Gaetan Nadon <memsize@videotron.ca>
  220. Date: Mon Mar 29 14:53:49 2010 -0400
  221. config: remove the pkgconfig pc.in file from EXTRA_DIST
  222. Automake always includes it in the tarball.
  223. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  224. commit d2d6e4d88b62aa84e2cc9d229adf32ede81cbf5c
  225. Author: Gaetan Nadon <memsize@videotron.ca>
  226. Date: Tue Feb 16 10:37:21 2010 -0500
  227. config: move CWARNFLAGS from configure.ac to Makefile.am
  228. Compiler warning flags should be explicitly set in the makefile
  229. rather than being merged with other packages compiler flags.
  230. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  231. commit b3807dccab5aee5455137654647c9c083addb31e
  232. Author: Gaetan Nadon <memsize@videotron.ca>
  233. Date: Fri Nov 27 20:56:05 2009 -0500
  234. Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
  235. Now that the INSTALL file is generated.
  236. Allows running make maintainer-clean.
  237. commit 79c70fcf676778192e1d7bb0a194d75cb7227506
  238. Author: Gaetan Nadon <memsize@videotron.ca>
  239. Date: Wed Oct 28 14:09:10 2009 -0400
  240. INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  241. Add missing INSTALL file. Use standard GNU file on building tarball
  242. README may have been updated
  243. Remove AUTHORS file as it is empty and no content available yet.
  244. Remove NEWS file as it is empty and no content available yet.
  245. commit e7337c1598b8f258122a1f1307b3c83ab6c74a9c
  246. Author: Gaetan Nadon <memsize@videotron.ca>
  247. Date: Tue Oct 27 15:07:25 2009 -0400
  248. Deploy the new XORG_DEFAULT_OPTIONS #24242
  249. This macro aggregate a number of existing macros that sets commmon
  250. X.Org components configuration options. It shields the configuration file from
  251. future changes.
  252. commit e3bd17c452be528f773bc976636ecc0c71bdba99
  253. Author: Gaetan Nadon <memsize@videotron.ca>
  254. Date: Mon Oct 26 22:08:43 2009 -0400
  255. Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
  256. ChangeLog filename is known to Automake and requires no further
  257. coding in the makefile.
  258. commit e6631b8352ff83ee69c1076846b4500304d978eb
  259. Author: Gaetan Nadon <memsize@videotron.ca>
  260. Date: Thu Oct 22 12:34:20 2009 -0400
  261. .gitignore: use common defaults with custom section # 24239
  262. Using common defaults will reduce errors and maintenance.
  263. Only the very small or inexistent custom section need periodic maintenance
  264. when the structure of the component changes. Do not edit defaults.
  265. commit 6210f1d458fa765699412b404fb88e40aeebf9e0
  266. Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
  267. Date: Wed Oct 21 12:47:27 2009 -0700
  268. This is not a GNU project, so declare it foreign.
  269. On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
  270. > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
  271. > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
  272. > > was quite annoying to work around since 'autoreconf -fvi' replaces
  273. > > it and git wants to commit it. Should these files even be in git?
  274. > > Can I nuke them for the betterment of humanity and since they get
  275. > > created by autoreconf anyways?
  276. >
  277. > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
  278. As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
  279. AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
  280. of the INSTALL file. It is also part of the 24206 solution.
  281. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
  282. commit eb4dbb8aac0858e1ee7169b2e0b90d5e3223de59
  283. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  284. Date: Tue Oct 13 18:37:00 2009 -0700
  285. Use font-utils 1.1 macros to find encodings path
  286. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  287. commit e609e939f8b2573ac50bdd317733a2fef194965a
  288. Author: Peter Hutterer <peter.hutterer@who-t.net>
  289. Date: Fri Aug 28 14:14:11 2009 +1000
  290. libfontenc 1.0.5
  291. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
  292. commit 8a0bd244c5da5baae73c51e45b075b1412682e43
  293. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  294. Date: Mon Feb 2 20:34:38 2009 -0800
  295. Add README with pointers to mailing list, bugzilla & git repos
  296. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  297. commit f160a71e9501a9d650fd99e9a080970bfd520abb
  298. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  299. Date: Wed Jan 28 16:25:32 2009 -0200
  300. Janitor: Correct make distcheck and compiler warnings.
  301. commit 90f2dfbc40d6fa72213f508b0dd85f00965b6194
  302. Author: James Cloos <cloos@jhcloos.com>
  303. Date: Thu Dec 6 15:51:21 2007 -0500
  304. Add missing PHONY line for automatic ChangeLog generation
  305. commit 1b4ca41a58016053220047b9f77a2eec812c03a0
  306. Author: Daniel Stone <daniel@fooishbar.org>
  307. Date: Sat Dec 16 01:19:45 2006 +0200
  308. bump to 1.0.4
  309. commit 38855c00c9efe88af97a5f8208c2e6aef0e9e93f
  310. Author: Daniel Stone <daniel@fooishbar.org>
  311. Date: Wed Dec 6 18:57:29 2006 +0200
  312. Makefile.am: make ChangeLog hook safer
  313. Make ChangeLog hook as safe as possible.
  314. commit 111a9501c2c01d4b4f00ed221035953bfb256898
  315. Author: Adam Jackson <ajax@benzedrine.nwnk.net>
  316. Date: Fri Oct 13 15:20:48 2006 -0400
  317. Bump to 1.0.3
  318. commit fc19e19275c213f5122b120e7b45f63c302916a1
  319. Author: Adam Jackson <ajax@benzedrine.nwnk.net>
  320. Date: Thu Oct 12 18:35:04 2006 -0400
  321. Fix ChangeLog hook to distcheck.
  322. commit 2de626b53827fa1365c149c3fd2e1e280f8691e2
  323. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  324. Date: Wed Oct 4 19:31:23 2006 -0700
  325. Mark character mapping data tables as const
  326. commit 2daccee698507b27113e89b07af371905aa2bcd4
  327. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  328. Date: Wed Oct 4 19:13:17 2006 -0700
  329. Clear sparse warnings: Using plain integer as NULL pointer
  330. commit b00dcc90e490454fdd983b4bf6d0fa92ab91d0be
  331. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  332. Date: Wed Oct 4 18:50:44 2006 -0700
  333. Add XORG_WITH_LINT support for checking source code with lint/sparse/etc.
  334. commit 5d18f978c9085c3c9d9a44c90e73055125e11a68
  335. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  336. Date: Wed Oct 4 18:50:07 2006 -0700
  337. Clear sparse warning: non-ANSI function declaration of function 'FontEncDirectory'
  338. commit 1dc8867f53a81d6e1c413d393039747668d27bd4
  339. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  340. Date: Wed Oct 4 18:34:20 2006 -0700
  341. Replace static ChangeLog with dist-hook to generate from git log
  342. commit 81b27280717dc7e06a9ebbd196fae03a9e719db3
  343. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  344. Date: Wed Oct 4 18:32:38 2006 -0700
  345. Add *~ to .gitignore to skip over emacs droppings
  346. commit 187ec5a0cd96c3b6b13b9ccae51e2828db7c6d3e
  347. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  348. Date: Wed Oct 4 18:32:07 2006 -0700
  349. Copy copyright notice/license from source to COPYING
  350. commit 1a9f5d7cb1aba4d65b28b5cdcaa7b68053b733ee
  351. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  352. Date: Thu Jul 13 14:59:16 2006 -0700
  353. renamed: .cvsignore -> .gitignore
  354. commit 2c2f63d0f17106964c808f8f0ec5bb58f35b4fe5
  355. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  356. Date: Sat Jun 3 06:33:40 2006 +0000
  357. Coverity #1523: Dereferencing freed pointer "mapping"
  358. commit f991560c0f599d82b23380de4a681b0d218f5cef
  359. Author: Adam Jackson <ajax@nwnk.net>
  360. Date: Wed Apr 26 23:55:31 2006 +0000
  361. Bump to 1.0.2
  362. commit a9604c242f7f53a8cd26a2764c1a96e25ea2e1a7
  363. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  364. Date: Mon Apr 10 16:15:12 2006 +0000
  365. Fix another file descriptor leak (related to previous Coverity #544)
  366. commit d86b38b96854bc60d4a2c4595e73cf53aa36d85c
  367. Author: Adam Jackson <ajax@nwnk.net>
  368. Date: Fri Apr 7 00:35:36 2006 +0000
  369. Coverity #544: File a file descriptor leak.
  370. commit 78f355698128454370590040699c2141ae69d7d9
  371. Author: Kevin E Martin <kem@kem.org>
  372. Date: Wed Dec 21 02:30:06 2005 +0000
  373. Update package version for X11R7 release.
  374. commit c7a14086fbe226169f7ea5df80c4d885082fb732
  375. Author: Adam Jackson <ajax@nwnk.net>
  376. Date: Mon Dec 19 16:28:28 2005 +0000
  377. Stub COPYING files
  378. commit 55035bfbae0ca22399623d78411cc50bfdee2705
  379. Author: Kevin E Martin <kem@kem.org>
  380. Date: Thu Dec 15 00:24:36 2005 +0000
  381. Update package version number for final X11R7 release candidate.
  382. commit d146b3a17228204ce0fe3bcca72de53cedebf5fb
  383. Author: Kevin E Martin <kem@kem.org>
  384. Date: Fri Dec 9 06:07:14 2005 +0000
  385. Bug #5175: Make encodingsdir configurable (David Coulthart and Kevin E.
  386. Martin)
  387. commit acb0d67e5f0293f960a923cda6eb359a82f7036e
  388. Author: Kevin E Martin <kem@kem.org>
  389. Date: Sat Dec 3 05:49:46 2005 +0000
  390. Update package version number for X11R7 RC3 release.
  391. commit c2e139f8726cde5bbae609865b609f087b3f651b
  392. Author: Kevin E Martin <kem@kem.org>
  393. Date: Sat Nov 19 07:15:44 2005 +0000
  394. Update pkgconfig files to separate library build-time dependencies from
  395. application build-time dependencies, and update package deps to work
  396. with separate build roots.
  397. commit 21b115927640683b90fc1304f7b921da51aabf64
  398. Author: Kevin E Martin <kem@kem.org>
  399. Date: Wed Nov 9 21:19:14 2005 +0000
  400. Update package version number for X11R7 RC2 release.
  401. commit d9ece44e76f0c2dcfacb5ff00e59cae2741e3c96
  402. Author: Kean Johnson <kean@armory.com>
  403. Date: Tue Nov 8 06:33:26 2005 +0000
  404. See ChangeLog entry 2005-11-07 for details.
  405. commit 632f53206e104b372db255c5171c3479d87b683b
  406. Author: Kevin E Martin <kem@kem.org>
  407. Date: Wed Oct 19 02:48:12 2005 +0000
  408. Update package version number for RC1 release.
  409. commit 49e4c36c1bf2ccc3af576c489abf76bea4bf64b1
  410. Author: Adam Jackson <ajax@nwnk.net>
  411. Date: Wed Aug 3 03:28:03 2005 +0000
  412. Do PKG_CHECK_MODULES on a unique token instead of on "DEP", so builds with
  413. a global configure cache don't get confused.
  414. commit 8a6fb4344eb5c13198125996e43a0898a19818f8
  415. Author: Kevin E Martin <kem@kem.org>
  416. Date: Fri Jul 29 21:22:54 2005 +0000
  417. Various changes preparing packages for RC0:
  418. - Verify and update package version numbers as needed
  419. - Implement versioning scheme
  420. - Change bug address to point to bugzilla bug entry form
  421. - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
  422. reenable it)
  423. - Fix makedepend to use pkgconfig and pass distcheck
  424. - Update build script to build macros first
  425. - Update modular Xorg version
  426. commit 9e8be492f61095813f5e9b01c8d54ffb1550f339
  427. Author: Daniel Stone <daniel@fooishbar.org>
  428. Date: Sat Jul 16 07:51:05 2005 +0000
  429. Set soversion to 1.0 using -version-number.
  430. commit 11b206733618d73946a8c298d2d5f2183075657f
  431. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  432. Date: Wed Jul 13 16:51:34 2005 +0000
  433. Update INCLUDES to find <X11/fonts/fontenc.h>
  434. commit 85094af610ba990c6bc2377eff1f6f31dffd48e2
  435. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  436. Date: Tue Jul 12 21:05:28 2005 +0000
  437. Remove encodings build system from libfontenc
  438. commit 8deaa94831b1a5926db928a68a6acbbe3ee9a904
  439. Author: Keith Packard <keithp@keithp.com>
  440. Date: Sat Jul 9 23:31:40 2005 +0000
  441. Switch from monolithic configuration symbols to modular ones, add backward
  442. compatibility for monolithic symbols
  443. commit ec602c9639e4eedb36a570943999fea0a07b5f8c
  444. Author: Keith Packard <keithp@keithp.com>
  445. Date: Sat Jul 9 21:15:50 2005 +0000
  446. Add .cvsignore files
  447. Depend on xproto, not x11 so we do not link against -X11
  448. commit 0767d4880359983cbe83a4ea396d81efb5d6882b
  449. Author: Daniel Stone <daniel@fooishbar.org>
  450. Date: Sun Jul 3 07:01:00 2005 +0000
  451. Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
  452. Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
  453. Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
  454. source files in the xserver/xorg tree, predicated on defines of
  455. HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
  456. <X11/fonts/foo.h>.
  457. commit f6c6acf593686015fa639e3583f70cc6d5f5d7b3
  458. Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
  459. Date: Thu Jun 30 13:21:11 2005 +0000
  460. Check for zlib
  461. commit 092271385632708fb5dd53dca3dcfc3ead06ef6c
  462. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  463. Date: Tue Jun 28 15:40:27 2005 +0000
  464. modularizeapp.sh: initialize LAST to "" symlink.sh: Add bitmaps for oclock,
  465. and an extra textfile for pclcomp
  466. commit 21e552451c095c5668a57765c2eb941750e00ecd
  467. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  468. Date: Tue Jun 28 14:48:02 2005 +0000
  469. Add generation of encodings.dir
  470. commit a18d9ec0c4bfa36460d5e3eba1c5fb8a90086500
  471. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  472. Date: Tue Jun 28 14:17:12 2005 +0000
  473. Add encodings to fontenc build system, plus various fixes to make it
  474. distcheck.
  475. commit bcdcaebcd2127f4e7e1c368f341a781b4cf8af6b
  476. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  477. Date: Mon Jun 27 16:09:14 2005 +0000
  478. - Remove fontenc from Xfont
  479. - Add a dependency from Xfont on libfontenc
  480. - Add build system for lib/fontenc
  481. - xc/lib/font: Change #include "fontenc.h" to #include
  482. <X11/fonts/fontenc.h> in some places.
  483. - Remove dpsinfo and dpsexec from the app section of symlink.sh
  484. - Fix xp.pc.in to add XPRINT_LIBS/CFLAGS instead of X_LIBS/CFLAGS
  485. commit e80fd1617092d128d54a9400a4974ffafbb3083e
  486. Author: Egbert Eich <eich@suse.de>
  487. Date: Fri Apr 23 18:44:23 2004 +0000
  488. Merging XORG-CURRENT into trunk
  489. commit 072f90aeb09035953b966233059139d161d3a5f0
  490. Author: Egbert Eich <eich@suse.de>
  491. Date: Sun Mar 14 08:32:36 2004 +0000
  492. Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
  493. commit 7fb87aa305856f07d7a57b3296ade04b1f012f1a
  494. Author: Egbert Eich <eich@suse.de>
  495. Date: Wed Mar 3 12:11:43 2004 +0000
  496. Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
  497. commit 993a15d0255a72bdfbc6c2c43e9c164f0919e682
  498. Author: Egbert Eich <eich@suse.de>
  499. Date: Thu Feb 26 13:35:35 2004 +0000
  500. readding XFree86's cvs IDs
  501. commit eec99218eac07b50f0d25c2789abb5dfcc8f6c9d
  502. Author: Egbert Eich <eich@suse.de>
  503. Date: Thu Feb 26 09:22:53 2004 +0000
  504. Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
  505. commit faa2a922a0dbd16844055f83a159dab92a383376
  506. Author: Kaleb Keithley <kaleb@freedesktop.org>
  507. Date: Mon Feb 23 20:34:43 2004 +0000
  508. Import most of XFree86 4.4RC3. This import excludes files which have the
  509. new license. If we want to, later we can import 4.4RC3 again and pick
  510. up the files that have the new license, but for now the vendor branch
  511. is "pure."
  512. commit 7ea6ca71ac6825b9a28510f23c35d8b480752c41
  513. Author: Kaleb Keithley <kaleb@freedesktop.org>
  514. Date: Fri Dec 19 20:54:44 2003 +0000
  515. XFree86 4.3.99.902 (RC 2)
  516. commit f431cd8bc5d7fb3a385609c9ac99deabb79ab023
  517. Author: Kaleb Keithley <kaleb@freedesktop.org>
  518. Date: Fri Nov 14 16:48:50 2003 +0000
  519. XFree86 4.3.0.1
  520. commit f1b010ee7ae89b23af8fe4c92103db775ae35aed
  521. Author: Kaleb Keithley <kaleb@freedesktop.org>
  522. Date: Fri Nov 14 16:48:50 2003 +0000
  523. Initial revision