diff options
Diffstat (limited to 'app/xwininfo/ChangeLog')
-rw-r--r-- | app/xwininfo/ChangeLog | 486 |
1 files changed, 445 insertions, 41 deletions
diff --git a/app/xwininfo/ChangeLog b/app/xwininfo/ChangeLog index 13e7a3c85..6ac85ee29 100644 --- a/app/xwininfo/ChangeLog +++ b/app/xwininfo/ChangeLog @@ -1,12 +1,416 @@ +commit 98d5614d4688013e2fe7447eab723e0a43ee27b8 +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sat Oct 30 11:58:33 2010 -0700 + + xwininfo 1.1.1 + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit ca6412a29ec5b7b646b8a48bac940af2762ed54d +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sat Oct 30 11:53:28 2010 -0700 + + config: Remove unnecessary calls from configure.ac + + AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit 3a3003dcd0737c721e8f35953a5871a50209b5d4 +Author: Julien Cristau <jcristau@debian.org> +Date: Thu Oct 21 12:59:11 2010 +0200 + + Work around xcb_translate_coordinates sign bug + + xcb_translate_coordinates_reply_t has unsigned dst_{x,y}, so explicitly + cast them to int16_t to get the right values. + Reported on irc by frostwork. + + xcb-proto was fixed in commit 661fe8dd. + + Signed-off-by: Julien Cristau <jcristau@debian.org> + Acked-by: Peter Hutterer <peter.hutterer@who-t.net> + +commit 4ec65f24a0abaaf6ec1a0c930fc79b3fc5e1baf6 +Author: Tomas Chvatal <scarabeus@gentoo.org> +Date: Mon Sep 27 14:56:14 2010 +0200 + + Fix build error when building --with-xcb-icccm + + xwininfo.c:633:34: error: incompatible types when assigning to type xcb_get_property_cookie_t from type int + + Signed-off-by: Tomas Chvatal <scarabeus@gentoo.org> + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit aac89e8e81faca5d6eb830cd65591619a26ec17a +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Sep 26 18:35:40 2010 -0700 + + xwininfo 1.1.0 + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit abcf5e76c7dfc951832fda6845ace426b9ddebce +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Sep 26 18:30:08 2010 -0700 + + config: upgrade to util-macros 1.8 for additional man page support + + Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS + The value of MAN_SUBST is the same for all X.Org packages. + + Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS + Enables use of platform appropriate version of sed. + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit b6c84ba0aab5b95883a4f5759ec100b387314ec5 +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Tue Jul 20 18:45:18 2010 -0400 + + config: update AC_PREREQ statement to 2.60 + + Unrelated to the previous patches, the new value simply reflects + the reality that the minimum level for autoconf to configure + all x.org modules is 2.60 dated June 2006. + + ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz + + Signed-off-by: Gaetan Nadon <memsize@videotron.ca> + +commit 8263f19cf9002c7b5f2967a2bde7af4ed117c1e5 +Author: Jeremy Huddleston <jeremyhu@apple.com> +Date: Sat Jul 10 10:19:14 2010 -0700 + + strnlen: Fix building on systems without strnlen(3) + + Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> + +commit 3fa31068bcae6a5bee7fbd41788e13d6d56da8c0 +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Wed Jun 30 18:38:57 2010 -0700 + + Make iconv() usage optional + + Allows building without iconv, though character set conversion will not + be supported in that case. + + Handles UTF8_STRING validation and output for UTF-8 locales without iconv + (using is_valid_utf8() function copied from X.Org's app/xprop/xprop.c) + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + Reviewed-by: James Cloos <cloos@jhcloos.com> + +commit 6a4f77d4ac1737dd49f3462d98e0f7e41e50ab18 +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Tue Jun 29 22:51:38 2010 -0700 + + Add some EWMH hints to the -wm output + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + Reviewed-by: James Cloos <cloos@jhcloos.com> + +commit baf759d33b4b360fef2b2c61094ef109bec708fa +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Tue Jun 29 17:56:07 2010 -0700 + + Handle non-latin-1 window names + + Uses _NET_WM_NAME to get UTF-8 encoding, iconv to convert to current locale + Warns that COMPOUND_TEXT WM_NAMEs aren't supported if _NET_WM_NAME isn't set + Adds local atom caching code to dsimple.c and uses it in all three *.c + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + Reviewed-by: James Cloos <cloos@jhcloos.com> + +commit 6ec3573d7876fa62d2a81057ce0d16ed328fad1f +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Fri Jun 25 21:41:21 2010 -0700 + + Make xcb-icccm dependency be optional and off-by-default + + Changes to the xcb-icccm API/ABI are under discussion, so for now default + to using local property handling code modeled after the current API, with + a --with-xcb-icccm to enable use of the API for testing/development. + + Once the API/ABI is stable & released, this set of changes should be + removed and the xcb-icccm API just used directly. + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + Reviewed-by: James Cloos <cloos@jhcloos.com> + +commit 96f19bade9ce4940642d580f4c52e2bc0e3539ab +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Jun 13 12:42:34 2010 -0700 + + Convert from Xlib to xcb + + Testing was done with a simple GNOME 2.28 session with a number of + applications open (gnome-terminal, VirtualBox, Firefox). + + Primary test case was xwininfo -root -all, which listed 114 children of + the root window. Output was identical to Xlib version (after applying + the fix to libxcb_icccm for always null-terminating wm_class properties). + + Over a local connection on the same machine: + + Xlib: 0.00u 0.01s 0:00.05 20.0% + xcb: 0.00u 0.00s 0:00.02 0.0% + + (i.e. barely measurable difference - I had more variation between + repeated runs of the command) + + Introducing latency by running over ssh -X from California to Beijing + and back: + + Xlib: 0.03u 0.02s 8:19.12 0.0% + xcb: 0.00u 0.00s 0:45.26 0.0% + + Memory size when exit() is called: + + Xlib: + Address Kbytes RSS Anon Locked Mode Mapped File + 08043000 20 20 20 - rw--- [ stack ] + 08400000 144 144 144 - rw--- [ heap ] + total Kb 8972 8640 316 - + + xcb: + Address Kbytes RSS Anon Locked Mode Mapped File + 08045000 12 12 12 - rwx-- [ stack ] + 0806C000 100 100 100 - rwx-- [ heap ] + total Kb 7980 7692 288 - + + Bytes sent & received (counted by proxying via xscope): + + Xlib: Client --> Server: 21380 bytes Client <-- Server: 54124 bytes + xcb: Client --> Server: 21114 bytes Client <-- Server: 53160 bytes + + (The Xlib code didn't save any replies, so re-requested a couple of things + when running with -all - I fixed that while porting to xcb, but the same + could be done with Xlib easily too.) + + Not yet handled: WM_NAME properties that need to be converted from another + character encoding. + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + Reviewed-by: James Cloos <cloos@jhcloos.com> + +commit 123ff05c2e2bbdb9d7d6d958d9f096cf854b8360 +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Mon Jun 7 01:00:33 2010 -0700 + + Delay generating unknown code string until we know we need it + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit 369c37a62cdd2841a3e8778674029841231f45ad +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Jun 6 16:57:22 2010 -0700 + + Use _X_NORETURN from xproto 7.0.17 + + Also throw in _X_ATTRIBUTE_PRINTF while we're here. + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit c72551c9e8805d44ee76f6723cada6843657031b +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Jun 6 16:06:07 2010 -0700 + + Make spacing more consistent + + Different functions had 2, 4, 6, or 8 spaces per indent level, + standardized on 4 spaces. Also more consistenly put spaces before parens. + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit 6001e8721f232aa1f8b584d903edcea148b0ebc5 +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Jun 6 14:16:39 2010 -0700 + + Remove #ifdef NO_I18N code branches + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit 44a6d871e2baec9724f131778887c834133a4dc5 +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Jun 6 14:12:24 2010 -0700 + + Remove RCS/CVS id tags + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit 98bb85ea5fd3e2b5e077d89c6bf6e16b8829481a +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Jun 6 14:11:13 2010 -0700 + + mark window_id_format as a const string + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit 725c5bbb58e6fb2c8775512d194367e3d677ee43 +Author: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Sun Jun 6 14:05:53 2010 -0700 + + Collapse some series of multiline printfs into single strings/calls + + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit 969b179b3bfe2dd11f3426fc30cab3ac337b84d5 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Jan 15 13:10:39 2010 -0800 + + Update Sun license notices to current X.Org standard form + + Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> + +commit b0c1a61df072c92db646257b1048798df0f1c64d +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Thu Nov 26 09:19:55 2009 -0500 + + Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES + + Now that the INSTALL file is generated. + Allows running make maintainer-clean. + +commit 414b61fcc45836ea0739b32abd0eff8c4a863f8d +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Wed Oct 28 14:09:09 2009 -0400 + + INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 + + Add missing INSTALL file. Use standard GNU file on building tarball + README may have been updated + Remove AUTHORS file as it is empty and no content available yet. + Remove NEWS file as it is empty and no content available yet. + +commit 458d8ae3b990c64630b0ca56f88a2955c9470681 +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Mon Oct 26 22:08:39 2009 -0400 + + Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 + + ChangeLog filename is known to Automake and requires no further + coding in the makefile. + +commit dd4df8d8ec6a4cb34af8ddfd65277ae602d6cdc8 +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Thu Oct 22 12:34:16 2009 -0400 + + .gitignore: use common defaults with custom section # 24239 + + Using common defaults will reduce errors and maintenance. + Only the very small or inexistent custom section need periodic maintenance + when the structure of the component changes. Do not edit defaults. + +commit d245ffee6e947b275b21a7a47716410c41154d4a +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sun Sep 27 15:41:05 2009 -0400 + + Makefile.am: do not include autogen.sh in distribution #24183 + + This is a private build script that should not be distributed + +commit a61af405625b9a284497d7b4e56ef9719d3ae14f +Author: Jeremy Huddleston <jeremyhu@freedesktop.org> +Date: Wed Oct 21 12:47:22 2009 -0700 + + This is not a GNU project, so declare it foreign. + + On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: + > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: + > > I noticed an INSTALL file in xlsclients and libXvMC today, and it + > > was quite annoying to work around since 'autoreconf -fvi' replaces + > > it and git wants to commit it. Should these files even be in git? + > > Can I nuke them for the betterment of humanity and since they get + > > created by autoreconf anyways? + > + > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 + + As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with + AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation + of the INSTALL file. It is also part of the 24206 solution. + + Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> + +commit 1569f4d692443bf0658dbe12902f995693b13dcf +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Mon Oct 12 16:08:57 2009 -0700 + + xwininfo 1.0.5 + + Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> + +commit 28b34ed17506540a793a85e03c01a7b4d9aa3588 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Mon Oct 12 16:06:55 2009 -0700 + + Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS + + Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> + +commit b6837aadf7a2c30fb8c2c811d45c48047e0769e8 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Mon Oct 12 15:58:09 2009 -0700 + + Fill in COPYING file + + Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> + +commit 98ac096e2edae243ce2119fb70112c3c6b2bb688 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Thu Oct 1 14:54:32 2009 -0700 + + Add README with pointers to mailing lists, bugzilla, & git + + Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> + +commit 347ba641db84c66cd332f398423e87a882580575 +Author: Yann Droneaud <ydroneaud@mandriva.com> +Date: Fri Mar 27 16:41:00 2009 +0100 + + Update manpage for visual id + + Signed-off-by: James Cloos <cloos@jhcloos.com> + +commit ee03cf70e9e92d0e9adebaddc6b065de496cc561 +Author: Yann Droneaud <ydroneaud@mandriva.com> +Date: Fri Mar 27 16:35:14 2009 +0100 + + Report visual id along visual class for -stat switch + + Signed-off-by: James Cloos <cloos@jhcloos.com> + +commit a42690b24d828ec4cfae1bf40cac08f07c6202af +Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> +Date: Thu Jan 15 14:27:14 2009 -0200 + + Ansification and compile warning fixes. + + This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects + make distcheck and most gcc 4.3 and sparse warnings. + +commit 67a74f540cdbb7ded7aa44c751f5f0c8833c688f +Author: Branden Robinson <branden@debian.org> +Date: Fri Feb 11 02:14:27 2005 -0500 + + Do not spew usage on connection error + + General philosophy: + + The user should only be shown a usage message when: + * it is asked for with a --help option or the like. + * the command line is syntactically invalid. + commit b8115ee0e43c6c03025cad72219481e3fdb119d4 Author: James Cloos <cloos@jhcloos.com> -Date: Sun Jun 29 10:49:10 2008 -0400 +Date: Sun Jun 29 10:49:33 2008 -0400 xwininfo 1.0.4 commit c229611bcb7ee94bea5c075f5e15447e14c0f6ce Author: Kim Woelders <kim@woelders.dk> -Date: Sun Jun 22 01:11:50 2008 -0400 +Date: Sun Jun 22 01:12:13 2008 -0400 Fix window selection by pointer. @@ -16,37 +420,37 @@ Date: Sun Jun 22 01:11:50 2008 -0400 commit b7e88cd9d28a3d3e467b769f3efe87f7c2f4c0a5 Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Mon Aug 27 14:20:12 2007 -0700 +Date: Mon Aug 27 14:20:35 2007 -0700 Version bump: 1.0.3 commit 56f0b5dfb1486e262eb514fac44c73cea4bb4471 Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Mon Aug 27 14:19:39 2007 -0700 +Date: Mon Aug 27 14:20:02 2007 -0700 Replace static ChangeLog with dist-hook to generate from git log commit c8d205c30547ca526404a0b257c3cc5d40970be6 Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Tue Aug 7 15:49:50 2007 -0700 +Date: Tue Aug 7 15:50:13 2007 -0700 Add static & const qualifiers to xwininfo.c commit 77d50c0bf824f847bd9ede30c21618845258de76 Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Tue Aug 7 15:38:00 2007 -0700 +Date: Tue Aug 7 15:38:23 2007 -0700 Replace sprintf's with snprintf & strlcat commit 118bd50a9bbc10cab7846fb6ac1a0d25ba4c3422 Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Mon Aug 6 19:51:50 2007 -0700 +Date: Mon Aug 6 19:52:13 2007 -0700 dsimple.c: ANSIfy function declarations commit e093e4be56bb2be385a972962cf89f234e987ab4 Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Mon Aug 6 19:44:01 2007 -0700 +Date: Mon Aug 6 19:44:24 2007 -0700 Purge unused code from dsimple.c @@ -56,7 +460,7 @@ Date: Mon Aug 6 19:44:01 2007 -0700 commit 59bbe12a40fdb3d39429d0d0ce809ad28116e7ed Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Mon Aug 6 19:18:34 2007 -0700 +Date: Mon Aug 6 19:18:57 2007 -0700 Rename xwininfo_CFLAGS to AM_CFLAGS to make automake-1.10 happier @@ -64,19 +468,19 @@ Date: Mon Aug 6 19:18:34 2007 -0700 commit 5a251886c0f158f4c8a342b6fbdeebf3dbd1c0fd Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Thu May 24 18:19:48 2007 -0700 +Date: Thu May 24 18:20:11 2007 -0700 Man page formatting: make -geometry bold like other options commit 07459b14b36f15cfdfc6384019aaf020c7920cd4 Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Thu May 24 18:17:05 2007 -0700 +Date: Thu May 24 18:17:28 2007 -0700 renamed: .cvsignore -> .gitignore commit 24fc2a569df9eaa776bcdddbb26bf4ea97b69d13 Author: Alan Coopersmith <alan.coopersmith@sun.com> -Date: Thu May 24 18:16:30 2007 -0700 +Date: Thu May 24 18:16:53 2007 -0700 X.Org bug #10616: Add all the X info commands to See Also in man page @@ -86,75 +490,75 @@ Date: Thu May 24 18:16:30 2007 -0700 commit 412a3232373131634072df0d0b4843abf360def4 Author: Adam Jackson <ajax@nwnk.net> -Date: Sun Apr 2 01:19:30 2006 +0000 +Date: Sun Apr 2 01:19:53 2006 +0000 Bump to 1.0.2. commit 8d62050702532be39688d468663466199492510b Author: Alan Coopersmith <Alan.Coopersmith@sun.com> -Date: Fri Mar 10 02:36:55 2006 +0000 +Date: Fri Mar 10 02:37:18 2006 +0000 Clear two tiny memory leaks. (Coverity ids #900 & 901) commit 609828be5a05bc71fffaf8fc129a0cae8082fd57 Author: Kevin E Martin <kem@kem.org> -Date: Wed Dec 21 02:29:33 2005 +0000 +Date: Wed Dec 21 02:29:55 2005 +0000 Update package version for X11R7 release. commit a4169ffa7eb6eb9a28fd64a0686a813da975736c Author: Adam Jackson <ajax@nwnk.net> -Date: Mon Dec 19 16:22:26 2005 +0000 +Date: Mon Dec 19 16:22:48 2005 +0000 Stub COPYING files commit b9403df95678e568a326fe3f37bf29285a6a211e Author: Kevin E Martin <kem@kem.org> -Date: Thu Dec 15 00:23:50 2005 +0000 +Date: Thu Dec 15 00:24:12 2005 +0000 Update package version number for final X11R7 release candidate. commit 6f9523999cc4eb34accfe0bcc2c7a74bae9259ef Author: Kevin E Martin <kem@kem.org> -Date: Tue Dec 6 22:48:05 2005 +0000 +Date: Tue Dec 6 22:48:27 2005 +0000 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. commit 28c0455ea50bdf37f1d9d53c6756beebed429f0e Author: Kevin E Martin <kem@kem.org> -Date: Sat Dec 3 05:49:07 2005 +0000 +Date: Sat Dec 3 05:49:29 2005 +0000 Update package version number for X11R7 RC3 release. commit 988471c67e10a5ca309b90146b37a6037f5b2efc Author: Alan Coopersmith <Alan.Coopersmith@sun.com> -Date: Mon Nov 28 22:01:26 2005 +0000 +Date: Mon Nov 28 22:01:48 2005 +0000 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) commit 4496e95380b2f0ad7e9bdca02ec192dbb6d5e2e5 Author: Eric Anholt <anholt@freebsd.org> -Date: Mon Nov 21 10:34:47 2005 +0000 +Date: Mon Nov 21 10:35:09 2005 +0000 Another pass at .cvsignores for apps. commit 296d8e6ab8a86e5653529d0497ca5751d89f23b5 Author: Alan Coopersmith <Alan.Coopersmith@sun.com> -Date: Mon Nov 21 03:13:55 2005 +0000 +Date: Mon Nov 21 03:14:17 2005 +0000 Change dependency from xmu to xmuu since the full xmu (with all its baggage like Xt) is not needed here. commit 27898506332f1a4e698cbd65aecc47fdbc6d0a7b Author: Eric Anholt <anholt@freebsd.org> -Date: Sun Nov 20 22:08:34 2005 +0000 +Date: Sun Nov 20 22:08:56 2005 +0000 Add/improve .cvsignore files for apps. commit ee7bf4989434ba5f30451c3f07e4a6e01e6532d4 Author: Kevin E Martin <kem@kem.org> -Date: Sat Nov 19 07:15:16 2005 +0000 +Date: Sat Nov 19 07:15:38 2005 +0000 Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work @@ -162,33 +566,33 @@ Date: Sat Nov 19 07:15:16 2005 +0000 commit 4e58b0e12d46503c5f75ead9a859694aafd5b9b7 Author: Kevin E Martin <kem@kem.org> -Date: Wed Oct 19 02:47:36 2005 +0000 +Date: Wed Oct 19 02:47:58 2005 +0000 Update package version number for RC1 release. commit fc097904a8d7ded9a60df35fd58b9f5b5e226e17 Author: Alan Coopersmith <Alan.Coopersmith@sun.com> -Date: Mon Oct 17 23:56:03 2005 +0000 +Date: Mon Oct 17 23:56:25 2005 +0000 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to work better with BSD make commit 22feb546d5bf499ec0bc726c60a6c46f2e2cbd1c Author: Alan Coopersmith <Alan.Coopersmith@sun.com> -Date: Fri Oct 14 00:25:26 2005 +0000 +Date: Fri Oct 14 00:25:48 2005 +0000 Use sed to fill in variables in man page commit 9b1a4cbaf609bb102adec047934ad4c1b05f01ab Author: Alan Coopersmith <Alan.Coopersmith@sun.com> -Date: Mon Aug 1 20:25:11 2005 +0000 +Date: Mon Aug 1 20:25:33 2005 +0000 Install man pages to section 1 instead of section m (Patch from Donnie Berkholz) commit 70ed22f5e63d5759a0b7c6574a92d124c0777562 Author: Kevin E Martin <kem@kem.org> -Date: Fri Jul 29 21:22:17 2005 +0000 +Date: Fri Jul 29 21:22:39 2005 +0000 Various changes preparing packages for RC0: - Verify and update package version numbers as needed @@ -202,20 +606,20 @@ Date: Fri Jul 29 21:22:17 2005 +0000 commit 270145dc0f3ad5c7ad7d6086da19c0a25ea853a9 Author: Adam Jackson <ajax@nwnk.net> -Date: Wed Jul 20 19:31:43 2005 +0000 +Date: Wed Jul 20 19:32:05 2005 +0000 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global configure cache, you cache it, and the cached value is probably wrong. commit 97aa768841e147fde3cf16ba9a4c852358085d27 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> -Date: Fri Jul 8 21:00:24 2005 +0000 +Date: Fri Jul 8 21:00:46 2005 +0000 Build system for xwininfo commit 5cd08344c43c739c9a6837f1a60ae7c42e5afabe Author: Roland Mainz <roland.mainz@nrubsig.org> -Date: Wed Oct 6 19:29:37 2004 +0000 +Date: Wed Oct 6 19:29:59 2004 +0000 Fix for https://freedesktop.org/bugzilla/show_bug.cgi?id=1518 - Add filter support to "xlsfonts" that it can filter builtin-, glyph- and/or other @@ -224,54 +628,54 @@ Date: Wed Oct 6 19:29:37 2004 +0000 commit ac7cc196b722ee4653326aee459f40ad16a260c1 Author: Egbert Eich <eich@suse.de> -Date: Fri Apr 23 19:54:47 2004 +0000 +Date: Fri Apr 23 19:55:09 2004 +0000 Merging XORG-CURRENT into trunk commit 43e099d499d4dbabb32ca0410175e0e1b814cd94 Author: Egbert Eich <eich@suse.de> -Date: Sun Mar 14 08:35:32 2004 +0000 +Date: Sun Mar 14 08:35:54 2004 +0000 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 commit cd710399eb415673c180f65080d685ee8d149361 Author: Egbert Eich <eich@suse.de> -Date: Wed Mar 3 12:12:58 2004 +0000 +Date: Wed Mar 3 12:13:20 2004 +0000 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 commit 436a7ecb4b764394abcdd06fd99d6232c633cad1 Author: Egbert Eich <eich@suse.de> -Date: Thu Feb 26 13:36:10 2004 +0000 +Date: Thu Feb 26 13:36:32 2004 +0000 readding XFree86's cvs IDs commit 6dfbd3f819f10e4d04653df2074526860007968e Author: Egbert Eich <eich@suse.de> -Date: Thu Feb 26 09:23:56 2004 +0000 +Date: Thu Feb 26 09:24:18 2004 +0000 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 commit a2fa980ce0e98c2bbc503d1d9fe51ab539b7ea46 Author: Egbert Eich <eich@suse.de> -Date: Thu Jan 29 08:08:59 2004 +0000 +Date: Thu Jan 29 08:09:21 2004 +0000 Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004 commit 429530ba6f7699436d6f789a17550ec1a691c675 Author: Kaleb Keithley <kaleb@freedesktop.org> -Date: Tue Nov 25 19:29:01 2003 +0000 +Date: Tue Nov 25 19:29:23 2003 +0000 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks commit be0f398fee08e03ab73ec0d580df688cc989fbaa Author: Kaleb Keithley <kaleb@freedesktop.org> -Date: Fri Nov 14 16:49:02 2003 +0000 +Date: Fri Nov 14 16:49:24 2003 +0000 XFree86 4.3.0.1 commit 5e5a590668dc3ebe7e2cb568aad4c9c14021f2a2 Author: Kaleb Keithley <kaleb@freedesktop.org> -Date: Fri Nov 14 15:54:33 2003 +0000 +Date: Fri Nov 14 15:54:55 2003 +0000 R6.6 is the Xorg base-line |