ChangeLog 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988
  1. commit 122dfb8dbff5238f5272781f940c5a6f24086137
  2. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  3. Date: Thu Apr 16 23:00:15 2015 -0700
  4. xdpyinfo 1.3.2
  5. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  6. commit 86c2e6f13b5c77b193762ff7e0628d7957e6bf0b
  7. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  8. Date: Tue Feb 17 23:06:01 2015 -0800
  9. Delete unused NULLSTR macro
  10. Spotted by clang:
  11. xdpyinfo.c:145:9: warning: macro is not used [-Wunused-macros]
  12. ^
  13. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  14. commit 5ea2adab785079f7b87a459654696d2fff248a52
  15. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  16. Date: Tue Feb 17 23:00:56 2015 -0800
  17. Mark required arguments to Xlib error handler as unused
  18. Quiets clang warnings:
  19. xdpyinfo.c:151:24: warning: unused parameter 'dpy' [-Wunused-parameter]
  20. silent_errors(Display *dpy, XErrorEvent *ev)
  21. ^
  22. xdpyinfo.c:151:42: warning: unused parameter 'ev' [-Wunused-parameter]
  23. silent_errors(Display *dpy, XErrorEvent *ev)
  24. ^
  25. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  26. commit bec84d9dd1b6d5f3fcee4cccd704759c5c18544a
  27. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  28. Date: Mon Jun 2 22:27:58 2014 -0700
  29. autogen.sh: Honor NOCONFIGURE=1
  30. See http://people.gnome.org/~walters/docs/build-api.txt
  31. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  32. commit d236a8cdd4b8c3b8dd49c04d2d9d6dcbd4e6bb53
  33. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  34. Date: Mon Jun 2 22:27:58 2014 -0700
  35. configure: Drop AM_MAINTAINER_MODE
  36. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  37. commit 38ee48cebce6343c65bde078cea883373fb78b75
  38. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  39. Date: Mon Jun 2 22:27:54 2014 -0700
  40. config: Add missing AC_CONFIG_SRCDIR
  41. Regroup AC statements under the Autoconf initialization section.
  42. Regroup AM statements under the Automake initialization section.
  43. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  44. commit 73cd9d89408ef08b7bbe4f3fb0ae94517441b045
  45. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  46. Date: Tue Nov 26 22:31:41 2013 -0800
  47. Sprinkle consts in StrCmp to quiet cast warnings
  48. Makes gcc stop saying:
  49. xdpyinfo.c: In function ‘StrCmp’:
  50. xdpyinfo.c:162:20: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual]
  51. xdpyinfo.c:162:39: warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual]
  52. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  53. commit ca6adf351b4fc317c4dfc4c8e723b84fd676d4e2
  54. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  55. Date: Tue Nov 26 22:30:18 2013 -0800
  56. Print which option was in error along with usage message
  57. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  58. commit b980cacaa342cbbaa3012f06ffc2c9a9c21d33ee
  59. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  60. Date: Mon May 20 18:48:42 2013 -0700
  61. xdpyinfo 1.3.1
  62. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  63. commit fa36071570461e73b57583e490d794334b038f48
  64. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  65. Date: Sun Feb 10 19:50:21 2013 -0800
  66. Mark num_known_extensions as a const, since the size is fixed at compile time
  67. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  68. commit 57a45f3b7bb745a082e459d965bee2b11e3bd7b6
  69. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  70. Date: Sun Feb 10 19:29:05 2013 -0800
  71. Convert sprintf calls to snprintf
  72. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  73. commit f08b3613b2fd6995da264ea0a39c6d48dd28bf97
  74. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  75. Date: Sun Feb 10 19:10:57 2013 -0800
  76. Rename i & count in inner loop to avoid shadowing same named vars in outer loop
  77. xdpyinfo.c: In function `print_dmx_info':
  78. xdpyinfo.c:1282: warning: declaration of 'count' shadows a previous local
  79. xdpyinfo.c:1231: warning: shadowed declaration is here
  80. xdpyinfo.c:1282: warning: declaration of 'i' shadows a previous local
  81. xdpyinfo.c:1232: warning: shadowed declaration is here
  82. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  83. commit 97db6f80f06b753c84de0276db093205ee34b0b0
  84. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  85. Date: Mon Jan 21 23:15:04 2013 -0800
  86. Add xrandr to SEE ALSO section of man page
  87. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  88. commit 1b9a3d5459f61abf6285df81e4a75cb472e2a40c
  89. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  90. Date: Mon Jan 21 23:13:03 2013 -0800
  91. Add -version option to print version number
  92. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  93. commit 27c57ec56abbd175c7a3ea7c50d85e91e1940c87
  94. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  95. Date: Mon Jan 21 23:08:43 2013 -0800
  96. Combine usage messages into a single string
  97. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  98. commit f407231c855bc0349d0f8543a9dfe9dff4b2508b
  99. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  100. Date: Mon Jan 21 23:03:48 2013 -0800
  101. Declare 'len' as size_t to avoid unneccessary back-and-forth conversions
  102. Fixes clang warnings:
  103. xdpyinfo.c:1463:12: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
  104. int len = strlen(arg);
  105. ~~~ ^~~~~~~~~~~
  106. xdpyinfo.c:1465:32: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
  107. if (!strncmp("-display", arg, len)) {
  108. ~~~~~~~ ^~~
  109. xdpyinfo.c:1468:47: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
  110. } else if (!strncmp("-queryExtensions", arg, len)) {
  111. ~~~~~~~ ^~~
  112. xdpyinfo.c:1470:35: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
  113. } else if (!strncmp("-ext", arg, len)) {
  114. ~~~~~~~ ^~~
  115. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  116. commit ee596f7f67b203d04974fce16deadfcd122d0441
  117. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  118. Date: Mon Jan 21 23:02:57 2013 -0800
  119. Mark usage() as _X_NORETURN
  120. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  121. commit 5509502647a997959ec056fec23d471b73eddb5f
  122. Author: Jon TURNEY <jon.turney@dronecode.org.uk>
  123. Date: Wed Jan 4 18:21:51 2012 +0000
  124. Include Xwindows.h on WIN32 to avoid type clashes
  125. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
  126. Reviewed-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
  127. commit 02376118fb58c05067054be3f2e469f461f81757
  128. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  129. Date: Fri Oct 21 21:34:32 2011 -0700
  130. xdpyinfo 1.3.0
  131. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  132. commit 0b97213aa640aa6a05b9cb298349e45403bf7958
  133. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  134. Date: Wed Sep 28 20:52:30 2011 -0700
  135. Silence gcc complaint about being unable to check printf format string
  136. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  137. commit 1ac4dd6c7abe6fe185c0dafb3bb592720128a737
  138. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  139. Date: Wed Sep 28 20:50:02 2011 -0700
  140. Remove unused function hasExtension
  141. Leftover from the Xprint code removed in commit 889264a52a6cf988
  142. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  143. commit 24c9341f0e7b0fb7aee326a72982e59e535055e1
  144. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  145. Date: Wed Sep 28 20:48:58 2011 -0700
  146. Add const attributes to fix gcc -Wwrite-strings warnings
  147. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  148. commit 794e32074cbf13434375afe62b86b57f266a749f
  149. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  150. Date: Wed Sep 28 20:41:57 2011 -0700
  151. Strip trailing whitespace
  152. Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
  153. git diff -w & git diff -b show no diffs from this change
  154. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  155. commit c80c86499b3e47bcba68960bcba1bd33d9394fc5
  156. Author: Gaetan Nadon <memsize@videotron.ca>
  157. Date: Wed Jan 19 10:06:56 2011 -0500
  158. config: move man pages into their own directory
  159. Use services provided by XORG_MANPAGE_SECTIONS.
  160. Use standard Makefile for man pages.
  161. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  162. commit 9ea60417e477a333ff0fb6074032e8e7006c7f5b
  163. Author: Gaetan Nadon <memsize@videotron.ca>
  164. Date: Thu Jan 13 11:15:47 2011 -0500
  165. man: remove trailing spaces and tabs
  166. Using s/[ \t]*$//
  167. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  168. commit 7cccede7fbe736b40c7de56d1e3304cad61489a3
  169. Author: Gaetan Nadon <memsize@videotron.ca>
  170. Date: Wed Jan 12 16:28:02 2011 -0500
  171. config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  172. This silences an Autoconf warning
  173. commit e95f61e453354b0f31d18cc873a4be8b1911b098
  174. Author: Gaetan Nadon <memsize@videotron.ca>
  175. Date: Wed Jan 12 15:29:50 2011 -0500
  176. config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
  177. This silences an Automake warning.
  178. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  179. commit 7807192aa448d57ad8d903c445a7ba91c917b8d6
  180. Author: Jesse Adkins <jesserayadkins@gmail.com>
  181. Date: Tue Sep 28 13:29:49 2010 -0700
  182. Purge cvs tags.
  183. Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
  184. commit 072fc46b2af370e78fa53426626ca3c33b74bdf2
  185. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  186. Date: Sun Oct 3 11:47:07 2010 -0700
  187. Use xcb for -queryExt instead of a round-trip per extension
  188. On a system with 30 extensions listed by xdpyinfo, truss -c
  189. reports this saves quite a few system calls by batching the
  190. QueryExtension requests instead of a round-trip for each one:
  191. Xlib xcb
  192. writev 40 11
  193. poll 80 22
  194. recv 117 29
  195. total (*) 464 296
  196. (*) total includes all system calls, including many not shown since
  197. their count did not change significantly. There was one additional
  198. set of open/mmap/close etc. for loading the added libX11-xcb library.
  199. Over a tcp connection, this reduced both the number of packets,
  200. and due to tcp packet header overhead, the overall amount of data:
  201. Xlib xcb
  202. TCP packets 93 35
  203. TCP bytes 11554 7726
  204. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  205. Reviewed-by: Jamey Sharp <jamey@minilop.net>
  206. commit 30bc4b0ada659809c64f6a8292cbde3166267e8d
  207. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  208. Date: Sun Oct 3 10:51:09 2010 -0700
  209. xdpyinfo 1.2.0
  210. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  211. commit 8f12197ace824fb47fe72725e46ff5f9ba44c39e
  212. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  213. Date: Sun Oct 3 10:45:43 2010 -0700
  214. Remove DPY_XPRINT_* from Makefile.am
  215. The definitions were removed from configure.ac by commit e4541a92f7faead53
  216. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  217. commit 6932cb0e96de5e17fb637794575a9b89b65db276
  218. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  219. Date: Thu Sep 23 20:06:19 2010 -0700
  220. config: Remove unnecessary calls from configure.ac
  221. AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
  222. PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
  223. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  224. commit b9263245f854ef292ce2e60a324ba1d056c3222d
  225. Author: Alan Coopersmith <alan.coopersmith@oracle.com>
  226. Date: Thu Sep 23 20:04:53 2010 -0700
  227. config: upgrade to util-macros 1.8 for additional man page support
  228. Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
  229. The value of MAN_SUBST is the same for all X.Org packages.
  230. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
  231. The existing statement can now be removed from the configuration file.
  232. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
  233. commit b54bc557a3a3ba87d32e330517b17fb3bbd6cd70
  234. Author: Gaetan Nadon <memsize@videotron.ca>
  235. Date: Tue Jul 20 18:45:18 2010 -0400
  236. config: update AC_PREREQ statement to 2.60
  237. Unrelated to the previous patches, the new value simply reflects
  238. the reality that the minimum level for autoconf to configure
  239. all x.org modules is 2.60 dated June 2006.
  240. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
  241. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  242. commit d3487b3fd52c1361e689d28fd8fb6f6d7140825b
  243. Author: Gaetan Nadon <memsize@videotron.ca>
  244. Date: Fri Mar 26 19:23:35 2010 -0400
  245. xprint: remove isPrintScreen code
  246. The if (isPrintScreen) always evaluate to false
  247. Reviewed-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
  248. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  249. commit 889264a52a6cf9882b010de55d555c877dd216f3
  250. Author: Gaetan Nadon <memsize@videotron.ca>
  251. Date: Fri Mar 26 19:20:56 2010 -0400
  252. xprint: remove conditional code regarding xprint feature
  253. xprint has been removed from X Window System
  254. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  255. commit e4541a92f7faead53fe855e5be5d8318b636827b
  256. Author: Gaetan Nadon <memsize@videotron.ca>
  257. Date: Fri Mar 26 19:20:10 2010 -0400
  258. config: remove xprint feature which is obsolete
  259. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  260. commit f0b2eed8b9447038d6cf9d0d33be902398da2ca2
  261. Author: Gaetan Nadon <memsize@videotron.ca>
  262. Date: Thu Jan 7 21:38:31 2010 -0500
  263. COPYING: replace stub with actual copyright notice
  264. Refer to xdpyinfo.c
  265. Copyright 1988, 1998 The Open Group
  266. Copyright 2005 Hitachi, Ltd.
  267. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
  268. commit 4e3962ab551368c1c959ecf78b3c6cfd03cd0763
  269. Author: Gaetan Nadon <memsize@videotron.ca>
  270. Date: Thu Nov 26 09:19:53 2009 -0500
  271. Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
  272. Now that the INSTALL file is generated.
  273. Allows running make maintainer-clean.
  274. commit c4367264ce11abfbe64e92ab6b0807b6213ff56f
  275. Author: Gaetan Nadon <memsize@videotron.ca>
  276. Date: Wed Oct 28 14:09:08 2009 -0400
  277. INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
  278. Add missing INSTALL file. Use standard GNU file on building tarball
  279. README may have been updated
  280. Remove AUTHORS file as it is empty and no content available yet.
  281. Remove NEWS file as it is empty and no content available yet.
  282. commit c2fbd90b15cf45e2b0c5649bc575d04d09ce6f30
  283. Author: Gaetan Nadon <memsize@videotron.ca>
  284. Date: Tue Oct 27 15:07:24 2009 -0400
  285. Deploy the new XORG_DEFAULT_OPTIONS #24242
  286. This macro aggregate a number of existing macros that sets commmon
  287. X.Org components configuration options. It shields the configuration file from
  288. future changes.
  289. commit 6510da8afa850a92666a5377aa2642646c6ab4f1
  290. Author: Gaetan Nadon <memsize@videotron.ca>
  291. Date: Mon Oct 26 22:08:38 2009 -0400
  292. Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
  293. ChangeLog filename is known to Automake and requires no further
  294. coding in the makefile.
  295. commit 92f55dcd3aa216ecd861b91c22c617972aaeb4de
  296. Author: Gaetan Nadon <memsize@videotron.ca>
  297. Date: Thu Oct 22 12:34:15 2009 -0400
  298. .gitignore: use common defaults with custom section # 24239
  299. Using common defaults will reduce errors and maintenance.
  300. Only the very small or inexistent custom section need periodic maintenance
  301. when the structure of the component changes. Do not edit defaults.
  302. commit c991ae4f86a1abb99f3f0c38b10c922a0d5b63e8
  303. Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
  304. Date: Wed Oct 21 12:47:20 2009 -0700
  305. This is not a GNU project, so declare it foreign.
  306. On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
  307. > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
  308. > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
  309. > > was quite annoying to work around since 'autoreconf -fvi' replaces
  310. > > it and git wants to commit it. Should these files even be in git?
  311. > > Can I nuke them for the betterment of humanity and since they get
  312. > > created by autoreconf anyways?
  313. >
  314. > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
  315. As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
  316. AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
  317. of the INSTALL file. It is also part of the 24206 solution.
  318. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
  319. commit a02c4aad3cbe284630de60f6de9c1bfc3dd6a853
  320. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  321. Date: Fri Oct 16 16:07:10 2009 -0700
  322. xdpyinfo 1.1.0
  323. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  324. commit a2f989d387ec8f6002240be53fa24e264392b693
  325. Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
  326. Date: Tue Oct 13 11:34:11 2009 -0700
  327. Added --without-{xf86misc,xprint} configure time options
  328. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
  329. commit 5d44998f53644954200f3e6adbfbef068b5755e6
  330. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  331. Date: Mon Oct 12 18:01:22 2009 -0700
  332. Use $(AM_V_GEN) to silence man page creation too
  333. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  334. commit 9ca9d19206114788da85c81a5aba2525baef80cb
  335. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  336. Date: Mon Oct 12 18:00:15 2009 -0700
  337. Use Xxf86dga.h & xf86dgaproto.h if present, to avoid warnings from old headers
  338. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  339. commit 26b3ee9b9fd5a58ef7812ecabebd78bd10d57878
  340. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  341. Date: Fri Oct 2 17:00:45 2009 -0700
  342. Remove empty INSTALL so automake installs a real one
  343. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  344. commit 22e3bfdb5d700c9f767366db39ec1dec72785929
  345. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  346. Date: Thu Oct 1 14:54:22 2009 -0700
  347. Add README with pointers to mailing lists, bugzilla, & git
  348. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  349. commit f9eaeadea17cb96ab85ee6cc0b5aa3867a832bcc
  350. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  351. Date: Mon Sep 21 16:27:55 2009 -0700
  352. Use xf86vmproto.h instead of xf86vmstr.h if it is installed
  353. Clears warnings when built with xf86vidmodeproto 2.2.99.1 & later
  354. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  355. Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
  356. commit bd89c302aa44c5a7a6e5f5d6e6f131e04b8e61c1
  357. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  358. Date: Mon Sep 21 16:22:30 2009 -0700
  359. Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
  360. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  361. commit 5e33ed3a2852a84fbbeb4fb4172928053cf677bf
  362. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  363. Date: Tue Sep 1 21:54:11 2009 -0700
  364. Move CWARNFLAGS addition to CFLAGS from configure.ac to Makefile.am
  365. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  366. commit f1974e686a9622fa526268697d29ceab83edf0d0
  367. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  368. Date: Tue Sep 1 20:50:51 2009 -0700
  369. Improved XF86-VidModeExtension printing
  370. - Combine common modeline printing code into single function
  371. - Don't return 0 unless extension isn't supported, since that
  372. makes xdpyinfo report the extension isn't supported.
  373. - Don't exit immediately if some information is not available,
  374. since other info may be present.
  375. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  376. commit ffa604b5e6b60c5a98cc18819e70786b26b0b07c
  377. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  378. Date: Tue Sep 1 07:22:17 2009 -0700
  379. Bug 3438: xdpyinfo reporting wrong information on xf86vidmode extension
  380. https://bugs.freedesktop.org/show_bug.cgi?id=3438
  381. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  382. commit bb7e3c9ac00d5b3933b69470e03fadfe1800f7ae
  383. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  384. Date: Wed Feb 4 13:43:34 2009 -0800
  385. Print Composite extension version for "-ext Composite"
  386. The only other information I could see to query in the Composite 0.4
  387. protocol spec is the Composite Overlay Window XID, but the request to
  388. get that ID has the side effect of mapping the overlay window, and
  389. xdpyinfo shouldn't have side effects like that.
  390. Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
  391. commit 3a041bbccdee28b628ce5243e77d7d3125a186d4
  392. Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
  393. Date: Tue Jan 13 20:10:23 2009 -0200
  394. Ansification and compile warning fixes.
  395. This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, and corrects
  396. make distcheck.
  397. commit 0fbda267334eb531b7153c3b9035fe7470302e13
  398. Author: Matthieu Herrb <matthieu.herrb@laas.fr>
  399. Date: Fri Jun 13 12:23:03 2008 -0600
  400. Don't print '(null)' when XF86VidModeGetMonitor() returns NULL fields.
  401. commit 53743925d1067b830dd80f9193444f5799f55e28
  402. Author: Adam Jackson <ajax@redhat.com>
  403. Date: Wed May 21 14:19:52 2008 -0400
  404. xdpyinfo 1.0.3
  405. commit f70bd6335967fb3992399411d33e015b0d4d8f1d
  406. Author: Adam Jackson <ajax@redhat.com>
  407. Date: Wed May 21 14:18:57 2008 -0400
  408. Ignore errors from xf86misc rather than crashing out.
  409. commit 2c094e502060be530a306fe7f8feed6eddf9266f
  410. Author: Julien Cristau <jcristau@debian.org>
  411. Date: Wed Apr 30 14:37:03 2008 +0200
  412. Handle XExtension{Keyboard,Pointer}, added in inputproto 1.4
  413. commit bbf726ad95e75c844046968a00e1340cbbe6bd8a
  414. Author: James Cloos <cloos@jhcloos.com>
  415. Date: Thu Dec 6 15:51:05 2007 -0500
  416. Add missing PHONY line for automatic ChangeLog generation
  417. commit 66611f2fdca348c619afb4509e860919088c6fbf
  418. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  419. Date: Thu May 24 18:24:29 2007 -0700
  420. X.Org bug #10616: Add all the X info commands to See Also in man page
  421. X.Org Bugzilla #10616: <https://bugs.freedesktop.org/show_bug.cgi?id=10616>
  422. Reported upstream from
  423. Debian bug #350313 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=350313>
  424. commit 704cb5aad217a1818c05e3cd5334c484020150e6
  425. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  426. Date: Tue Mar 20 14:08:17 2007 -0700
  427. Version bump: 1.0.2
  428. commit e7c95f92cb17eb971462074cfcc9b952bb466362
  429. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  430. Date: Tue Mar 20 13:34:30 2007 -0700
  431. Clear a couple more memory leaks found by Sun Studio dbx check -leaks
  432. commit e411de3d660a5382e7cb8d31fa2fa1bc35823931
  433. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  434. Date: Tue Mar 20 13:25:06 2007 -0700
  435. Coverity #748: IsPrintScreen: Returned without freeing storage "pscreens"
  436. commit ce6709132a322e82e915b761c0ced1bc418095ea
  437. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  438. Date: Tue Mar 20 13:21:56 2007 -0700
  439. Coverity #749: print_XF86VidMode_info: Returned without freeing storage "modelines"
  440. commit f4001e881a9f5d57dd99326d4f501737a0ded6e6
  441. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  442. Date: Tue Mar 20 13:16:18 2007 -0700
  443. Coverity #750: print_xinput_info() returned without freeing storage "ext"
  444. commit c896552ee94cf50f8acfccc49096e5ec564e5356
  445. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  446. Date: Tue Mar 20 13:10:33 2007 -0700
  447. Coverity #752: XListDepths return leaked in print_xrender_info()
  448. commit ea8455a0932c21ef29e97d469b492dadc85dabdc
  449. Author: Ingo Bormuth <ibormuth@efil.de>
  450. Date: Thu May 25 03:13:00 2006 -0800
  451. Bug 7027: Add configure options --without-dmx --without-dga --without-xinerama
  452. X.Org Bug 7027: <https://bugs.freedesktop.org/show_bug.cgi?id=7027>
  453. Patch #5735: <https://bugs.freedesktop.org/attachment.cgi?id=5735>
  454. From gentoo bug 132502: <http://bugs.gentoo.org/show_bug.cgi?id=132502>
  455. commit 2fe59be76e3a341b601838c3729d0045d49946d3
  456. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  457. Date: Tue Mar 20 10:39:36 2007 -0700
  458. Fix line wrapping of extensions list in usage message
  459. commit 91f465babd46f1b39c6f5665e38e4aab58fc921b
  460. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  461. Date: Mon Mar 19 19:23:33 2007 -0700
  462. Clear sparse warning: Using plain integer as NULL pointer
  463. commit 6a26c41570f1b91f14508cf3d44f4ed3c51127bd
  464. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  465. Date: Mon Mar 19 19:15:18 2007 -0700
  466. Fix typos in comments
  467. commit 752b793aa03b67eeff6b01c7f0bdb729f00bd49b
  468. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  469. Date: Mon Mar 19 19:09:27 2007 -0700
  470. Add support for checking sources with sparse/lint/etc.
  471. commit d66b154dce42319f73f4b0773e44c59c9cf9d7a6
  472. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  473. Date: Mon Mar 19 18:53:38 2007 -0700
  474. renamed: .cvsignore -> .gitignore
  475. commit 767fdebc77faf1b7322e7068a420a7fc2bf4a376
  476. Author: Alan Coopersmith <alan.coopersmith@sun.com>
  477. Date: Mon Mar 19 18:53:02 2007 -0700
  478. Replace static ChangeLog with dist-hook to generate from git log
  479. commit 421eee53c9153cfa6bb5ea27e8b8df5f186451a3
  480. Author: Kevin E Martin <kem@kem.org>
  481. Date: Wed Dec 21 02:29:49 2005 +0000
  482. Update package version for X11R7 release.
  483. commit 263521ee094a1b63fd5ffdd2f81bd4c511fdb479
  484. Author: Adam Jackson <ajax@nwnk.net>
  485. Date: Mon Dec 19 16:22:43 2005 +0000
  486. Stub COPYING files
  487. commit 74da6a6fdc7b90a779fab59811a162fe0571992c
  488. Author: Kevin E Martin <kem@kem.org>
  489. Date: Thu Dec 15 00:24:06 2005 +0000
  490. Update package version number for final X11R7 release candidate.
  491. commit 58e6b96a84164845b49112bf6d76def97e909ef1
  492. Author: Kevin E Martin <kem@kem.org>
  493. Date: Tue Dec 6 22:48:21 2005 +0000
  494. Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
  495. commit d4cf291eff395b272590ba1415cdc5744dc39694
  496. Author: Kevin E Martin <kem@kem.org>
  497. Date: Sat Dec 3 05:49:19 2005 +0000
  498. Update package version number for X11R7 RC3 release.
  499. commit bdf02be37894b3e1b87437a8a0186fbd57f80e38
  500. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  501. Date: Mon Nov 28 22:01:41 2005 +0000
  502. Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
  503. update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
  504. commit 3a79f7e287e091102d56df996a19631709d99737
  505. Author: Eric Anholt <anholt@freebsd.org>
  506. Date: Mon Nov 21 10:34:59 2005 +0000
  507. Another pass at .cvsignores for apps.
  508. commit 1b28a57af4956be9a8e7d64dd5f0096ae43b3f6d
  509. Author: Eric Anholt <anholt@freebsd.org>
  510. Date: Sun Nov 20 22:08:51 2005 +0000
  511. Add/improve .cvsignore files for apps.
  512. commit d91a0552a4b3c4f40e4b2ec10936c3f212a5d3bc
  513. Author: Kevin E Martin <kem@kem.org>
  514. Date: Sat Nov 19 07:15:36 2005 +0000
  515. Update pkgconfig files to separate library build-time dependencies from
  516. application build-time dependencies, and update package deps to work
  517. with separate build roots.
  518. commit eddecbe72843f358cf902a3a2081634745e52298
  519. Author: Kevin E Martin <kem@kem.org>
  520. Date: Wed Oct 19 02:47:53 2005 +0000
  521. Update package version number for RC1 release.
  522. commit 4689eb41b6329fec24a7da63a203576b72b937da
  523. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  524. Date: Mon Oct 17 23:56:21 2005 +0000
  525. Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
  526. work better with BSD make
  527. commit 72bc207e91d9d770d17f8330cbba71a83b21d13d
  528. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  529. Date: Fri Oct 14 00:25:44 2005 +0000
  530. Use sed to fill in variables in man page
  531. commit 0df7213be00f90d227be44efbb60c8f2fdd712ff
  532. Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
  533. Date: Fri Aug 19 00:13:45 2005 +0000
  534. More updates for Panoramix -> Xinerama rename
  535. commit 87e9acd02968882740bfbf51b68a1ef19584f371
  536. Author: Adam Jackson <ajax@nwnk.net>
  537. Date: Wed Aug 3 04:30:26 2005 +0000
  538. More unique tokens for PKG_CHECK_MODULES
  539. commit 4fb83e624716886c60474f3bb443ffd730786889
  540. Author: Kevin E Martin <kem@kem.org>
  541. Date: Fri Jul 29 21:22:32 2005 +0000
  542. Various changes preparing packages for RC0:
  543. - Verify and update package version numbers as needed
  544. - Implement versioning scheme
  545. - Change bug address to point to bugzilla bug entry form
  546. - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
  547. reenable it)
  548. - Fix makedepend to use pkgconfig and pass distcheck
  549. - Update build script to build macros first
  550. - Update modular Xorg version
  551. commit ed783e6948cf7cd937f0570e9578162e35495d45
  552. Author: Adam Jackson <ajax@nwnk.net>
  553. Date: Wed Jul 20 19:31:52 2005 +0000
  554. Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
  555. configure cache, you cache it, and the cached value is probably wrong.
  556. commit bcc095561f040a8a0cd19ed94bc800d128e9c0b1
  557. Author: Daniel Stone <daniel@fooishbar.org>
  558. Date: Mon Jul 18 08:24:50 2005 +0000
  559. Fail gracefully when extensions not present.
  560. commit 3b4cbb4fe34ff4de91ba6524d7750a2b55f5d67a
  561. Author: Keith Packard <keithp@keithp.com>
  562. Date: Sat Jul 9 23:36:22 2005 +0000
  563. Add .cvsignore files
  564. commit 1e169a60adf7d9759d3b4a4dfb381043814e121a
  565. Author: Keith Packard <keithp@keithp.com>
  566. Date: Fri Jul 8 04:54:31 2005 +0000
  567. Autodetect extension support. Install manual as xdpyinfo.1 Note that
  568. autodetection requires changes to xdpyinfo.c as well, which currently
  569. lives in the monolithic tree. These changes don't have any effect on
  570. monolithic builds.
  571. commit d89449b6eacd919005fdad3b378e64fe46591728
  572. Author: Keith Packard <keithp@keithp.com>
  573. Date: Fri Jul 8 04:54:09 2005 +0000
  574. Add support for modular extension autodetection (ignored in monolithic
  575. build)
  576. commit d99fbcde4c892e8d84e02b40ed3f5862a731e9c2
  577. Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
  578. Date: Wed Jul 6 19:56:47 2005 +0000
  579. Add buildsystem for xdpyinfo
  580. commit 1b09e416dcaed59d319b295b933506a6f54fe918
  581. Author: Roland Mainz <roland.mainz@nrubsig.org>
  582. Date: Tue Apr 26 05:33:10 2005 +0000
  583. //bugs.freedesktop.org/show_bug.cgi?id=2705) attachment #2555
  584. (https://bugs.freedesktop.org/attachment.cgi?id=2555) bug 2705 part II:
  585. Fix build to work with |#define BuildXprint NO| Patch by Kevin E.
  586. Martin <kem@freedesktop.org>.
  587. commit 5adf5a253e5434c2b0c2276ce3733cbb05282980
  588. Author: Roland Mainz <roland.mainz@nrubsig.org>
  589. Date: Fri Mar 11 21:18:12 2005 +0000
  590. xc/programs/twm/Imakefile
  591. xc/programs/twm/twm.c
  592. //bugs.freedesktop.org/show_bug.cgi?id=2705) attachment #2087
  593. (https://bugs.freedesktop.org/attachment.cgi?id=2087) Make twm ignore
  594. print screens to avoid that users accidentally warp on a non-video
  595. screen (which are not visible on any monitor) when the Xserver has both
  596. video and print screens. (This includes also a small cleanup of
  597. xdpyinfo where parts of the print screen test code comes from) Patch by
  598. Julien Lafon <julien.lafon@gmail.com> (MIT/X.org license).
  599. commit 4d275dcc29658972a3d7c2e72b812140819a10c3
  600. Author: Kevin E Martin <kem@kem.org>
  601. Date: Thu Sep 2 05:50:38 2004 +0000
  602. Clean up defines for Xprint support and fix BuildServersOnly build for
  603. libXaw.
  604. commit a667763d5b733f5ae2d8a3ca7e1e99d3deed2830
  605. Author: Kristian Høgsberg <krh@redhat.com>
  606. Date: Mon Aug 16 16:36:15 2004 +0000
  607. As discussed and agreed on on the release-wranglers meeting of August 16,
  608. I'm committing the patch from bug #1060 to back out unconditional
  609. Xprint functionality.
  610. Back out Xprint changes.
  611. Revert xman to CVS of June 5, revert xlogo to CVS of May 8, revert xedit to
  612. CVS of April 25, to back out unconditional Xprint support.
  613. Fix up Xprint config logic to be like the rest of the extensions:
  614. BuildXprint is a one-stop option for disabling everything Xprint
  615. related. XprtServer controls building Xprt, BuildXprintLib controls
  616. building Xprint libs and BuildXprintClients controls building clients
  617. related to Xprint. BuiltXprint defaults to YES and the other options
  618. respects relevant settings, i.e. BuildServer and BuildServersOnly.
  619. Build Xaw regardless of BuildXprintLib setting.
  620. Only build xphelloworld, xplsprinters and xprehashprinterlist when
  621. BuildXprintClients it YES. Disable building xmore, it has always
  622. supported XawPrintShell.
  623. Make Xprint support depend on BuildXprintLib.
  624. commit f5e06cb6bc7ddb2b81a819f4ef1ba41f7c66ba20
  625. Author: Kevin E Martin <kem@kem.org>
  626. Date: Wed Jun 30 20:06:56 2004 +0000
  627. Add Distributed Multihead X (DMX) support
  628. commit ec6b1eb0128635b465ba46761b5d9ba3377db0e8
  629. Author: Roland Mainz <roland.mainz@nrubsig.org>
  630. Date: Tue May 25 02:07:18 2004 +0000
  631. Fix for http://freedesktop.org/bugzilla/show_bug.cgi?id=672 - RFE: xdpyinfo
  632. should print information about print screens
  633. commit 4933a7a9f75fc80afba004f0c55959d35d7ffe41
  634. Author: Roland Mainz <roland.mainz@nrubsig.org>
  635. Date: Sun May 16 21:52:44 2004 +0000
  636. Fix for http://pdx.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=623 -
  637. RFE: "xdpyinfo" should have support for XpExtension.
  638. commit 0f274e479e7825d535ab04aeadd475d47e1769a5
  639. Author: Egbert Eich <eich@suse.de>
  640. Date: Fri Apr 23 19:54:43 2004 +0000
  641. Merging XORG-CURRENT into trunk
  642. commit cccbebfe7ee498cd8beae22831b50d570d623a94
  643. Author: Egbert Eich <eich@suse.de>
  644. Date: Sun Mar 14 08:35:14 2004 +0000
  645. Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
  646. commit 26e6d0a4c391ee1e7ec6c3ca89f0955ca9423f09
  647. Author: Egbert Eich <eich@suse.de>
  648. Date: Wed Mar 3 12:13:00 2004 +0000
  649. Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
  650. commit 4d33162b89fb90f764ce9bc9eed73b1c60ba631c
  651. Author: Egbert Eich <eich@suse.de>
  652. Date: Thu Feb 26 13:36:17 2004 +0000
  653. readding XFree86's cvs IDs
  654. commit d3552b39fa600adbf6229fad2e3f651d18889178
  655. Author: Egbert Eich <eich@suse.de>
  656. Date: Thu Feb 26 09:24:04 2004 +0000
  657. Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
  658. commit 8dad0c498789e5feb268b70daae210751b98eb24
  659. Author: Kaleb Keithley <kaleb@freedesktop.org>
  660. Date: Tue Nov 25 19:29:12 2003 +0000
  661. XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
  662. commit c9f38bd47df33b0681bdf2cfce02c1b78cb1a038
  663. Author: Kaleb Keithley <kaleb@freedesktop.org>
  664. Date: Fri Nov 14 16:49:22 2003 +0000
  665. XFree86 4.3.0.1
  666. commit 212617e163d792b20d025502f4138b6bdb7829a0
  667. Author: Kaleb Keithley <kaleb@freedesktop.org>
  668. Date: Fri Nov 14 15:54:53 2003 +0000
  669. R6.6 is the Xorg base-line