ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. commit 5eaa2f649cf594f55bae32a46ae6e65a68656bf8
  2. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  3. Date: Sun Feb 10 15:55:57 2013 -0800
  4. xsm 1.0.3
  5. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  6. commit 4d5fed98f350f3acb2ad53602f452a33ab5e0669
  7. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  8. Date: Sun Jan 13 12:11:02 2013 -0800
  9. unifdef ISC
  10. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  11. commit fe021a25285e3438b97355d1e7270190cf91646f
  12. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  13. Date: Sun Jan 13 11:53:33 2013 -0800
  14. Use mode_t, not int, for umask return/argument value
  15. Fixes clang warnings:
  16. auth.c:144:22: warning: implicit conversion changes signedness: 'mode_t' (aka 'unsigned int') to 'int' [-Wsign-conversion]
  17. original_umask = umask (0077); /* disallow non-owner access */
  18. ~ ^~~~~~~~~~~~
  19. auth.c:214:12: warning: implicit conversion changes signedness: 'int' to 'mode_t' (aka 'unsigned int') [-Wsign-conversion]
  20. umask (original_umask);
  21. ~~~~~ ^~~~~~~~~~~~~~
  22. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  23. commit 5a273c9fab6a4fe3ab0c729e78f3a86d3e5a69ed
  24. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  25. Date: Sun Jan 13 11:24:56 2013 -0800
  26. Use standard autoconf defines for mkstemp & putenv instead of imake leftovers
  27. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  28. commit 79a24ac258f66014af066df0707058b971c31988
  29. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  30. Date: Sun Jan 13 11:19:37 2013 -0800
  31. config: Add missing AC_CONFIG_SRCDIR
  32. Regroup AC statements under the Autoconf initialization section.
  33. Regroup AM statements under the Automake initialization section.
  34. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  35. commit ce8aac0657d0e1b0e6c1ca148456d48b87cafd4f
  36. Author: Egbert Eich <eich@freedesktop.org>
  37. Date: Thu May 19 09:47:25 2011 +0200
  38. install: Use sysconfdir instead of libdir for config files.
  39. Most X packages today install their config files in sysconfigdir,
  40. only a few are left which still put their configuration in libdir.
  41. Signed-off-by: Egbert Eich <eich@freedesktop.org>
  42. Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  43. commit 29818ff0b7af752639c203237de6c3a4d84da2c2
  44. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  45. Date: Fri Jan 4 17:38:53 2013 -0800
  46. unifdef -U__UNIXOS2__
  47. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  48. commit c358556c1badee4d8b75e23f1cd84abff393b6ac
  49. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  50. Date: Tue Nov 22 22:58:52 2011 -0800
  51. Add size limit to scanf string specifier
  52. While it's tempting to just switch to fgets(), that would require
  53. implementing our own whitespace stripping to match the current
  54. scanf behavior.
  55. Fixes parfait static analysis warning:
  56. Error: Buffer overrun
  57. Buffer overflow (CWE 120): Use of fscanf(%s), with buffer 'buf'
  58. at line 135 of app/xsm/lock.c in function 'GetLockId'.
  59. [ This bug was found by the Parfait 0.3.7 bug checking tool.
  60. For more information see http://labs.oracle.com/projects/parfait/ ]
  61. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  62. Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
  63. commit 24d38c420d5d60c988f07dd25f7fa81171dac64f
  64. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  65. Date: Sat Nov 19 11:29:03 2011 -0800
  66. Fix some gcc -Wwrite-strings warnings
  67. Many are unfixable at the moment due to the libXt API
  68. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  69. commit e17c2f59266528dce1cfb71798dc6075b74839a3
  70. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  71. Date: Sat Nov 19 10:54:38 2011 -0800
  72. Terminate execl() arguments with NULL instead of 0
  73. Makes sure that a full 64-bits of 0 is passed in 64-bit builds, and
  74. clears gcc warning of:
  75. misc.c: In function ‘System’:
  76. misc.c:114:2: warning: missing sentinel in function call
  77. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  78. commit 7940a487162c5acb55417f0abafe70043bcc679e
  79. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  80. Date: Thu Jan 13 00:11:52 2011 -0800
  81. Convert a couple last sprintf calls to snprintf
  82. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  83. commit d5d409ac7b5792f3962dbe8a7f392d09ce797266
  84. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  85. Date: Thu Jan 13 00:04:32 2011 -0800
  86. Convert XtMalloc + sprintf to XtAsprintf
  87. Depends on libXt > 1.0.99 to ensure XtAsprintf is available.
  88. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  89. commit 00c7550444aa1254ca43ba32d4d4e59d02bda56d
  90. Author: Gaetan Nadon <memsize@videotron.ca>
  91. Date: Wed Jan 19 10:06:57 2011 -0500
  92. config: move man pages into their own directory
  93. Use services provided by XORG_MANPAGE_SECTIONS.
  94. Use standard Makefile for man pages.
  95. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  96. commit 00ba0d9e527c18b7fe9dda3b17411993bac98c2f
  97. Author: Gaetan Nadon <memsize@videotron.ca>
  98. Date: Thu Jan 13 17:15:37 2011 -0500
  99. man: replace hard coded man page section with substitution strings
  100. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  101. commit 95029ee2a46c5a89e4dcf1158dc5dfb8026c2685
  102. Author: Gaetan Nadon <memsize@videotron.ca>
  103. Date: Thu Jan 13 11:15:48 2011 -0500
  104. man: remove trailing spaces and tabs
  105. Using s/[ \t]*$//
  106. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  107. commit 771866f04e80eabe7e1e6d01fd839fd7a38854b2
  108. Author: Gaetan Nadon <memsize@videotron.ca>
  109. Date: Wed Jan 12 16:28:02 2011 -0500
  110. config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  111. This silences an Autoconf warning
  112. commit e46e5149893397f04fe4ad558ead53b52ae561e7
  113. Author: Gaetan Nadon <memsize@videotron.ca>
  114. Date: Wed Jan 12 15:29:50 2011 -0500
  115. config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
  116. This silences an Automake warning.
  117. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  118. commit 7a580ac13fce90353ccbef53c559bbf1ba778831
  119. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  120. Date: Fri Dec 10 00:04:32 2010 -0800
  121. Make System() prototype for Solaris in xsm.h actually a prototype
  122. Fixes gcc warning:
  123. xsm.h:217: warning: function declaration isn't a prototype
  124. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  125. commit cf08b277a983a97a3db1ee39eeeb6bf953d084db
  126. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  127. Date: Sun Sep 26 17:00:05 2010 -0700
  128. xsm 1.0.2
  129. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  130. commit 88ae324056c2a6be1efd5aa96c4bbd3e0ad4274b
  131. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  132. Date: Sun Sep 26 16:54:04 2010 -0700
  133. config: Remove unnecessary calls from configure.ac
  134. AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
  135. PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
  136. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  137. commit 7089b5ad09474f51bbb04db0f12667605f16b8ed
  138. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  139. Date: Sun Sep 26 16:51:35 2010 -0700
  140. config: upgrade to util-macros 1.8 for additional man page support
  141. Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
  142. The value of MAN_SUBST is the same for all X.Org packages.
  143. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
  144. The existing statement can now be removed from the configuration file.
  145. Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED)
  146. Enables silent rule and use platform appropriate version of sed.
  147. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  148. commit 8a89975a139dd6b5ecd5f82f2c3a872dc64cf4df
  149. Author: Gaetan Nadon <memsize@videotron.ca>
  150. Date: Tue Jul 20 18:45:18 2010 -0400
  151. config: update AC_PREREQ statement to 2.60
  152. Unrelated to the previous patches, the new value simply reflects
  153. the reality that the minimum level for autoconf to configure
  154. all x.org modules is 2.60 dated June 2006.
  155. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
  156. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  157. commit 4f56a25154eb876f33a46d29eed4be46bba814f2
  158. Author: Gaetan Nadon <memsize@videotron.ca>
  159. Date: Thu Feb 11 10:08:07 2010 -0500
  160. config: move CWARNFLAGS from configure.ac to Makefile.am
  161. Compiler warning flags should be explicitly set in the makefile
  162. rather than being merged with other packages compiler flags.
  163. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  164. commit 547b489f70df72524f210cca990d1373cf80eb34
  165. Author: Gaetan Nadon <memsize@videotron.ca>
  166. Date: Sat Dec 19 20:48:48 2009 -0500
  167. configure.ac: use backticks rather than $() for cmd subs
  168. Use "$PKG_CONFIG" rather than hard coded "pkg-config"
  169. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  170. commit 47a6e14ea0f65a1fceedb3f8611e05255f7333d3
  171. Author: Gaetan Nadon <memsize@videotron.ca>
  172. Date: Thu Nov 26 09:19:55 2009 -0500
  173. Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
  174. Now that the INSTALL file is generated.
  175. Allows running make maintainer-clean.
  176. commit 5b1760932cfba4d1e921b4e9e0adfb584e1e365c
  177. Author: Gaetan Nadon <memsize@videotron.ca>
  178. Date: Wed Oct 28 14:09:09 2009 -0400
  179. INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  180. Add missing INSTALL file. Use standard GNU file on building tarball
  181. README may have been updated
  182. Remove AUTHORS file as it is empty and no content available yet.
  183. Remove NEWS file as it is empty and no content available yet.
  184. commit feda4dcbfcf7102297109101ba310a5c50ed6483
  185. Author: Gaetan Nadon <memsize@videotron.ca>
  186. Date: Tue Oct 27 15:07:25 2009 -0400
  187. Deploy the new XORG_DEFAULT_OPTIONS #24242
  188. This macro aggregate a number of existing macros that sets commmon
  189. X.Org components configuration options. It shields the configuration file from
  190. future changes.
  191. commit 24dd7a8ef6d9edc1145855eba880b7c3b5bb2284
  192. Author: Gaetan Nadon <memsize@videotron.ca>
  193. Date: Mon Oct 26 22:08:39 2009 -0400
  194. Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
  195. ChangeLog filename is known to Automake and requires no further
  196. coding in the makefile.
  197. commit 12b82f86995178b572a91c377938311acb1e03df
  198. Author: Gaetan Nadon <memsize@videotron.ca>
  199. Date: Thu Oct 22 12:34:16 2009 -0400
  200. .gitignore: use common defaults with custom section # 24239
  201. Using common defaults will reduce errors and maintenance.
  202. Only the very small or inexistent custom section need periodic maintenance
  203. when the structure of the component changes. Do not edit defaults.
  204. commit 396f6dbb94447d2314a064f3384bae4c9f3dca01
  205. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  206. Date: Mon Jan 26 19:12:30 2009 -0200
  207. Correct make distcheck and gcc/sparse warnings.
  208. commit e06eddafd5f72f6f0782e37e9617c2e874021038
  209. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  210. Date: Sun Mar 16 16:25:42 2008 -0300
  211. Compile warning fixes.
  212. Include header with prototypes for signals.c, and change prototypes and
  213. definitions to match. This should not have any side effects as function
  214. arguments are ignored.
  215. Ansify some functions with K&R definitions.
  216. printhex.c:fprintfhex() could be changed to a "sane" implementation, but
  217. only change was "ansification".
  218. commit f1a527497c9621428cdb78dd9d37cb846ec10544
  219. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  220. Date: Fri Nov 28 03:38:37 2008 -0200
  221. enable VPATH build, reorganize app default files
  222. Minor changes to http://bugs.freedesktop.org/attachment.cgi?id=20212.
  223. commit 463bc71d330d357babb4981c933e6b615621c262
  224. Author: Matthieu Herrb <matthieu@deville.herrb.net>
  225. Date: Sat Nov 22 15:11:29 2008 +0100
  226. Fix build in separate directory.
  227. commit 9959f4e34227dc40f43326ed1a2240d4932f99d9
  228. Author: Julien Cristau <jcristau@debian.org>
  229. Date: Sun Nov 16 21:53:59 2008 +0100
  230. Don't override the RSH variable before checking if it's set
  231. This allows setting RSH on the configure command line or environment,
  232. and lifts the build dependency on an rsh client.
  233. commit 7dee380747bbd0a07c64d8cdb2a229485403847a
  234. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  235. Date: Wed Oct 22 09:28:56 2008 -0700
  236. Use realloc to resize buffer, not malloc+strcpy+free
  237. commit 01ac0b14bea486a626d8565dec8c8e546bb3d82f
  238. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  239. Date: Wed Oct 22 08:37:59 2008 -0700
  240. Constify lock.c
  241. commit 6f1ebee7cba16f31c6201d6654d0c4ff9502ec12
  242. Author: James Cloos <cloos@jhcloos.com>
  243. Date: Wed Aug 20 10:32:53 2008 -0400
  244. xaw8 is gone, use xaw7
  245. commit 814b1bd0952299d1864c586f005904101206219b
  246. Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
  247. Date: Thu Mar 27 20:07:55 2008 -0700
  248. Build fix for file systems that are not case sensitive
  249. commit cfb89d84fa8ea3f42b130d676125a530bd0e1e94
  250. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  251. Date: Thu Feb 21 08:51:42 2008 -0800
  252. Add PKG_CHECK_MODULES entries for the libraries xsm calls directly
  253. commit 281158a840b5669dcea426fee4bdf4439f4e41c5
  254. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  255. Date: Thu Feb 21 08:38:17 2008 -0800
  256. Change xsm_CFLAGS to AM_CFLAGS to make automake-1.10 happier
  257. Makefile.am:32: compiling `auth.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
  258. commit 1dee63fcbe0e3915a4b74578d71dab673c6e313d
  259. Author: James Cloos <cloos@jhcloos.com>
  260. Date: Thu Dec 6 16:37:30 2007 -0500
  261. Replace static ChangeLog with dist-hook to generate from git log
  262. commit adf6777c5c34ca156d77f31af3ab3dec744c109f
  263. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  264. Date: Mon Nov 26 13:48:44 2007 -0800
  265. Remove instructions on monolithic build system from README
  266. commit 6f4560e2ad81736127d2d3544415a05d41e8a2a7
  267. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  268. Date: Mon Nov 26 13:21:18 2007 -0800
  269. Use snprintf, strdup & remove instead of sprintf, malloc/strcpy & unlink
  270. commit fab9dcb15024996ac3a4f94d65ba73f484820534
  271. Author: James Cloos <cloos@jhcloos.com>
  272. Date: Mon Sep 3 05:51:49 2007 -0400
  273. Add *~ to .gitignore to skip patch/emacs droppings
  274. commit 43612da3a7dfc4cf301c414e5c4c4a2c526eff0c
  275. Author: James Cloos <cloos@jhcloos.com>
  276. Date: Thu Aug 23 19:25:13 2007 -0400
  277. Rename .cvsignore to .gitignore
  278. commit 6d14861388ba520387e9f3690985c8c15823e60c
  279. Author: Kevin E Martin <kem@kem.org>
  280. Date: Wed Dec 21 02:29:54 2005 +0000
  281. Update package version for X11R7 release.
  282. commit 37399858c165d769777b5ad912cca6a28c1e9174
  283. Author: Adam Jackson <ajax@nwnk.net>
  284. Date: Mon Dec 19 16:22:47 2005 +0000
  285. Stub COPYING files
  286. commit 8af442aee53b6519402edc31f7aaec9cff15d24a
  287. Author: Kevin E Martin <kem@kem.org>
  288. Date: Thu Dec 15 00:24:11 2005 +0000
  289. Update package version number for final X11R7 release candidate.
  290. commit 436bf72ac6491cd999eef34686a105cc3009aa03
  291. Author: Kevin E Martin <kem@kem.org>
  292. Date: Wed Dec 7 16:18:01 2005 +0000
  293. Change to use the app-defaults default dir configured in libXt.
  294. commit 5c26c0c24b419e91e2d0ee33659f24bcde8f5fe0
  295. Author: Kevin E Martin <kem@kem.org>
  296. Date: Tue Dec 6 22:48:26 2005 +0000
  297. Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
  298. commit b1d7496da8b7ece105553626f2041eb37a4545de
  299. Author: Kevin E Martin <kem@kem.org>
  300. Date: Sat Dec 3 05:49:28 2005 +0000
  301. Update package version number for X11R7 RC3 release.
  302. commit 01337278c805f4dcb5472cea320271ff98043e00
  303. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  304. Date: Mon Nov 28 22:01:47 2005 +0000
  305. Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
  306. update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
  307. commit 6761550f844f7dcc9120aeb47f1e6200541132f4
  308. Author: Eric Anholt <anholt@freebsd.org>
  309. Date: Mon Nov 21 10:35:08 2005 +0000
  310. Another pass at .cvsignores for apps.
  311. commit 6eae89f042d8d6a9481f2cb04c5d0be0a8a86ea2
  312. Author: Eric Anholt <anholt@freebsd.org>
  313. Date: Sun Nov 20 22:08:56 2005 +0000
  314. Add/improve .cvsignore files for apps.
  315. commit bf766423665374deae5ba0ec1691c22d2edc6474
  316. Author: Kevin E Martin <kem@kem.org>
  317. Date: Wed Nov 9 21:09:22 2005 +0000
  318. Update package version number for X11R7 RC2 release.
  319. commit ea22303c5ede79f9b0f70f6e9119a45b0f08ed92
  320. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  321. Date: Sun Oct 23 16:58:38 2005 +0000
  322. Fix typo. (Tobias Stoeckmann)
  323. commit 032612fecc97aebc57db04f76f7ea4ce69fe3c4c
  324. Author: Kevin E Martin <kem@kem.org>
  325. Date: Wed Oct 19 02:47:58 2005 +0000
  326. Update package version number for RC1 release.
  327. commit b64cb46692739f59bb648753a6c16d80c032b46b
  328. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  329. Date: Tue Oct 18 00:32:54 2005 +0000
  330. Change default install dir for app-default files from
  331. $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match
  332. the monolith & allow localization
  333. commit c7d2af3102968f14f5d4a5db2c968beca4c701c9
  334. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  335. Date: Mon Oct 17 23:56:25 2005 +0000
  336. Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
  337. work better with BSD make
  338. commit 98e21bcf2e08115841d53c67a3c1fe66eac04105
  339. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  340. Date: Fri Oct 14 00:25:48 2005 +0000
  341. Use sed to fill in variables in man page
  342. commit 0e8270f8cb2ff73eda71589a1e23ce434f03bcf3
  343. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  344. Date: Mon Aug 1 20:25:32 2005 +0000
  345. Install man pages to section 1 instead of section m (Patch from Donnie
  346. Berkholz)
  347. commit 71fc4c55831ec988b0a902eaa4408d66c7fd1ea0
  348. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  349. Date: Sat Jul 30 21:07:26 2005 +0000
  350. Add prototypes of Xalloc/free functions.
  351. Export ImUtil.h to match modular tree install.
  352. Define SVR4 to 1 to avoid warning about redefining to different values.
  353. Include missing headers to clear more compiler warnings.
  354. commit a0d7e5f72a1a6b4222ec05b368935d2d84c76e2c
  355. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  356. Date: Sat Jul 30 20:33:15 2005 +0000
  357. Add check for putenv() for xsm's misc.c
  358. commit 660867c1e6639382a389db391db468e214fce235
  359. Author: Kevin E Martin <kem@kem.org>
  360. Date: Fri Jul 29 21:22:38 2005 +0000
  361. Various changes preparing packages for RC0:
  362. - Verify and update package version numbers as needed
  363. - Implement versioning scheme
  364. - Change bug address to point to bugzilla bug entry form
  365. - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
  366. reenable it)
  367. - Fix makedepend to use pkgconfig and pass distcheck
  368. - Update build script to build macros first
  369. - Update modular Xorg version
  370. commit d52d32f6fb738c87759e84ed65095675a4445270
  371. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  372. Date: Tue Jul 26 15:44:03 2005 +0000
  373. Replace more GNU make-ism's with more portable macros
  374. commit ae806b5d11971407cc06f22ff1ce81c86fbae672
  375. Author: Adam Jackson <ajax@nwnk.net>
  376. Date: Wed Jul 20 19:32:04 2005 +0000
  377. Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
  378. configure cache, you cache it, and the cached value is probably wrong.
  379. commit 2357729733356dde5bf4fad434cfc6a3c9bd7f44
  380. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  381. Date: Sat Jul 16 22:07:13 2005 +0000
  382. Add #ifdef HAVE_CONFIG_H/#include "config.h" to files that need it to get
  383. HAS_MKSTEMP defined in modular builds.
  384. commit 6fc73059455d756c2bc5c2780b0fc8a444dd9039
  385. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  386. Date: Sat Jul 16 22:00:11 2005 +0000
  387. Convert more app-defaults rules to work with non-GNU make
  388. commit e2191eda39bb8021d36d86750b9eb6b33702fa95
  389. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  390. Date: Sat Jul 16 21:59:14 2005 +0000
  391. Define HAS_MKSTEMP if mkstemp() is present (needed for improved protection
  392. against tempfile race conditions in many places)
  393. commit 2f07c342e877fde5d3f64041ca6ff365a643ddc8
  394. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  395. Date: Fri Jul 1 20:09:07 2005 +0000
  396. xtrap.pc.in: s/Xfixes/XTrap/ xi.pc.in: s/Xt/Xi/ Xv/src/Makefile.am: remove
  397. whitespace after backslash modularizeapp.sh: s/destkop/desktop/
  398. modular/symlink.sh: Add bitmaps for xeyes, system.xsm for xsm, and
  399. Xvidtune.cpp for xvidtune. Also comment out non-existing mga_bios.h
  400. Check in buildsystems for xsetroot, xsm, xstdcmap, xtrap, and xvinfo
  401. commit b2fec4bfd950c450c774543b3336e1beb0bd9aa1
  402. Author: Egbert Eich <eich@suse.de>
  403. Date: Fri Apr 23 19:55:06 2004 +0000
  404. Merging XORG-CURRENT into trunk
  405. commit 1233b543cac3b9c1a6155042c4ff73a4b0b73293
  406. Author: Egbert Eich <eich@suse.de>
  407. Date: Sun Mar 14 08:35:46 2004 +0000
  408. Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
  409. commit ba8059df1be266090f17a4877a2fe28818ee511a
  410. Author: Egbert Eich <eich@suse.de>
  411. Date: Wed Mar 3 12:13:18 2004 +0000
  412. Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
  413. commit 034f5e9e912b8315e2cdb5ca8c3dfed078733a03
  414. Author: Egbert Eich <eich@suse.de>
  415. Date: Thu Feb 26 13:36:27 2004 +0000
  416. readding XFree86's cvs IDs
  417. commit b24c3eb3e0f657d599c8a4edbd2abdfc8c4130ec
  418. Author: Egbert Eich <eich@suse.de>
  419. Date: Thu Feb 26 09:24:17 2004 +0000
  420. Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
  421. commit d0721af92ab08fc526c7c432ecc6273717cecae0
  422. Author: Kaleb Keithley <kaleb@freedesktop.org>
  423. Date: Tue Nov 25 19:29:18 2003 +0000
  424. XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
  425. commit ac8c3cf394fb9d0eb57332ea7b2d12fb3c4a396d
  426. Author: Kaleb Keithley <kaleb@freedesktop.org>
  427. Date: Fri Nov 14 16:49:23 2003 +0000
  428. XFree86 4.3.0.1
  429. commit c8ddd5d82a72167de6e0a544b55f9b03ab93053e
  430. Author: Kaleb Keithley <kaleb@freedesktop.org>
  431. Date: Fri Nov 14 15:54:55 2003 +0000
  432. R6.6 is the Xorg base-line