diff options
Diffstat (limited to 'libXfont/ChangeLog')
-rw-r--r-- | libXfont/ChangeLog | 1218 |
1 files changed, 1218 insertions, 0 deletions
diff --git a/libXfont/ChangeLog b/libXfont/ChangeLog new file mode 100644 index 000000000..578ba5e6a --- /dev/null +++ b/libXfont/ChangeLog @@ -0,0 +1,1218 @@ +commit 282ac4226195d58e3818e7ac97093e396aa78086 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Dec 19 15:07:21 2008 -0800 + + Version bump: 1.3.4 + +commit 5c631ad798fcdea4f2b7d0b012ac94182fad4184 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Dec 19 14:01:28 2008 -0800 + + miscutil.c:108: warning: old-style parameter declaration + +commit d21d6c5b23a23f120f32b483ec6b86cf88cb3a98 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Dec 19 13:47:48 2008 -0800 + + Add simple README with pointers to bugzilla/git/mailing list + +commit d3be1261d29b7d8eda124add3497a93ebe34712c +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Dec 19 13:47:27 2008 -0800 + + Update COPYING file with additional copyrights/licenses + +commit b5cc4a10c0fe365b40be19613777f192a1ada0db +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Dec 19 13:05:32 2008 -0800 + + Use XORG_CWARNFLAGS & XORG_CHANGELOG macros from xorg-macros 1.2 + +commit 377584bb71ccb2cc380c3a8f71f0acd7e755ad33 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Thu Dec 18 21:22:31 2008 -0800 + + Always scan catalogue dirs at startup, even if their mtime < 0 + + Works around bug in VMWare that caused the Solaris kernel to fail to read + the time-of-day chip on boot, and start with a time < 0 (i.e. back to the + 1960's) - when the system was then installed from this mode, Xorg wouldn't + start after reboot, since the mtime would be < 0 and the catalogue dir was + then skipped as not changed since reading at the 0 initially set in the + cat->mtime. + + Fixes OpenSolaris bug #4780 + <http://defect.opensolaris.org/bz/show_bug.cgi?id=4780> + +commit 9ad7f24fafe876851b89190732034da6fb640788 +Author: Benjamin Close <Benjamin.Close@clearchain.com> +Date: Thu Dec 11 15:26:13 2008 +1030 + + Make sure font names/font alias names are null terminated + + This fixes a crash upon server restart where the saved fonts were + being restored however strlen(font_name) was incorrect hence memory + was being clobbered. + +commit d93cc906d4a2f42d11629e245fb13a2d08cf2a61 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Thu Dec 4 16:56:56 2008 -0800 + + Pad CreateAC packets with 0 auths to workaround xfs bug + + Versions of xfs before commit 3fe28a31a2974287acc182c7c9bfd68d94ea6292 + will reject CreateAC packets with 0 auths unless they claim to have at + least 4 bytes of authentication data that isn't actually read. + +commit f859a76b0f325b07952ad1c5c818318307c589b0 +Author: Julien Cristau <jcristau@debian.org> +Date: Tue Nov 4 19:24:29 2008 +0100 + + Don't clobber CFLAGS in configure + + This lets the user set CFLAGS when running make. + +commit 6bf52de1fb84d61b227daf7a7077af9ea3ec27a3 +Author: Peter Breitenlohner <peb@mppmu.mpg.de> +Date: Mon Oct 20 19:32:23 2008 -0700 + + X.Org Bug 17945: avoid gcc warnings for libXfont + + <http://bugs.freedesktop.org/show_bug.cgi?id=17945> + + Avoid two gcc warnings + src/fontfile/ffcheck.c:150: warning: initialization discards qualifiers from pointer target type + src/fontfile/register.c:98: warning: initialization discards qualifiers from pointer target type + +commit b012dcf65b1f0e41def2f595f1b1e7b06a49d275 +Author: Adam Jackson <ajax@redhat.com> +Date: Thu Aug 28 15:36:06 2008 -0400 + + Retry font server connections faster. + +commit 8a6df69750a2d350074715fb31d9d20195d00b4c +Author: Adam Jackson <ajax@redhat.com> +Date: Thu Aug 28 15:35:16 2008 -0400 + + Nuke fontcache. + + Hasn't been relevant since the X-TT merge ages ago. + +commit 5d5587a36453d731e9a7353a98fa391dbb51b57d +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Thu Aug 21 19:58:06 2008 -0700 + + Add support for bzip2 bitmap font compression + + Code originally written for Solaris Xsun in 2003, ported now to current Xorg + <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4819077> + +commit 624b7a507cdea25cec0728b4679610df3fb3097c +Author: Derek Wang <derek.wang@sun.com> +Date: Thu Aug 21 16:06:51 2008 -0700 + + Sun bug 4510977: dtremote fails to start session + + <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4510977> + +commit 684c000e57f30344777cf763f2f1b540ef008b38 +Author: Adam Jackson <ajax@redhat.com> +Date: Wed Jul 2 15:30:03 2008 -0400 + + libXfont 1.3.3 + +commit 11edbc3a818e15ea2b622b31e6f87159ee68ae4a +Author: Maarten ter Huurne <maarten.ter.huurne@philips.com> +Date: Sat Jun 28 15:34:50 2008 -0400 + + Do not call FT_Get_BDF_Charset_ID() if configured with --disable-bdfformat + + When I configure libXfont-1.3.2 with --disable-bdfformat and link it against + FreeType that is built without BDF support, I get the following link error: + + libXfont.so: undefined reference to ‘FT_Get_BDF_Charset_ID’ + + I fixed it by checking XFONT_BDFFORMAT and if BDF support is disabled, the call + to FT_Get_BDF_Charset_ID() is omitted and the result code is set as if the call + had failed. + + Signed-off-by: James Cloos <cloos@jhcloos.com> + +commit 1ab07ce0eec4f6c7ed66c7aba3edf8c4315dd907 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Tue May 13 17:26:57 2008 -0700 + + FontFileDirectoryChanged: check length of "fonts.alias" as well as "fonts.dir" + +commit 0f9db4aa7de6e0644ac9c5811b949e5f936c9d61 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri May 9 12:36:30 2008 -0700 + + Don't allow a font alias to point to itself and create a loop + + Part of fix for Sun bug 4258475 + <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258475> + +commit 67311922a2e02d8a763831831b65bb4833db58b5 +Author: Colin Harrison <colin.harrison-at-virgin.net> +Date: Mon May 5 22:17:55 2008 +0100 + + Fix build for WIN32 + +commit 6ba408c956ca8e241d10d463c45b4e987b757333 +Author: Matthieu Herrb <matthieu.herrb@laas.fr> +Date: Sun Mar 9 08:21:34 2008 +0100 + + nuke RCS Ids + +commit 754cabe62e91b9ad50c3027c063f4269775f7add +Author: Julien Cristau <jcristau@debian.org> +Date: Fri Mar 7 12:19:22 2008 +0100 + + Add missing include in src/FreeType/ftfuncs.c + + Fixes compiler warning: + ../../../src/FreeType/ftfuncs.c: In function 'restrict_code_range_by_str': + ../../../src/FreeType/ftfuncs.c:2081: warning: implicit declaration of function 'isspace' + +commit 0fd2a1428df56d8b29e148b08dcec2dfed9302fa +Author: Adam Jackson <ajax@redhat.com> +Date: Wed Mar 5 22:04:06 2008 -0500 + + libXfont 1.3.2 + +commit b76df66d2c507898472bba0f9986ef5700029a36 +Author: Matthieu Herrb <matthieu@bluenote.herrb.com> +Date: Thu Jan 17 15:30:37 2008 +0100 + + Fix for CVE-2008-0006 - PCF Font parser buffer overflow. + +commit 2297c6390a1609fe810c2cd5b3443f3722610944 +Author: Matthieu Herrb <matthieu@bluenote.herrb.com> +Date: Thu Oct 18 21:46:49 2007 +0200 + + ftsystem.c is not needed anymore. + +commit 5bf703700ee4a5d6eae20da07cb7a29369667aef +Author: Matthieu Herrb <matthieu@bluenote.herrb.com> +Date: Fri Sep 28 08:17:57 2007 +0200 + + catalogue.c: prevent a one character overflow + + this occurs if readlink writes a result that's exactly the + size of the buffer that's passed to it. Reported by + Joerg Sonnenberger. + + Re + +commit fd8a03fbbd74f5cbaa740e5d50fccdf5c1f78b5b +Author: Jens Granseuer <jensgr@gmx.net> +Date: Thu Sep 27 23:12:00 2007 +0200 + + fix build with gcc 2.95. + + In addition to fixing the C89 issue, the patch also flags a few functions as + static to avoid "no previous prototype" warnings. + +commit 268f1bb1859e97944e8b63a5bb12677e874ed144 +Author: Tilman Sauerbeck <tilman@code-monkey.de> +Date: Thu Sep 13 20:40:26 2007 +0200 + + Replaced one instance of bcopy() with memcpy(). + + f->buffer cannot overlap with io->file->bits, so it's safe to + use memcpy() rather than memmove(). + Compile-tested only. + +commit f2725a5c9da771fb610d503ebfda3b4d1553bac4 +Author: Eric Anholt <eric@anholt.net> +Date: Wed Sep 5 13:10:43 2007 -0700 + + Bump version to 1.3.1. + +commit aca95d12a8b35de7ae914632fc9e8a723d58a860 +Author: Matthieu Herrb <matthieu@bluenote.herrb.com> +Date: Sat Aug 25 23:32:54 2007 +0200 + + Kill unused macro definition. + +commit 3c3b47bf6f080ddb700886de3e5bfa42c2f0774e +Merge: 9f86614... 32d2d33... +Author: Dodji Seketeli <dodji@openedhand.com> +Date: Sat Aug 11 23:09:50 2007 +0200 + + Merge branch 'master' of ssh://dodji@git.freedesktop.org/git/xorg/lib/libXfont + +commit 9f86614394af81bc484cf00f3e9996510d3718cb +Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br> +Date: Mon Jul 30 14:36:21 2007 -0400 + + Fix dirfd leak on CatalogueRescan(). + +commit 87f50267181887ed9214536608bd2035d2dd70f7 +Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br> +Date: Mon Jul 30 14:35:01 2007 -0400 + + Support relative paths in catalogue:<dir> symlinks. + + Relative symlinks are common inside the catalogue directory and + should be supported as well. + +commit 32d2d335eacd1b55980323a71ef35cdf7c22366d +Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br> +Date: Mon Jul 30 14:36:21 2007 -0400 + + Fix dirfd leak on CatalogueRescan(). + +commit 0a5b31a40c4933f4c69157c61d4d4890af2205b1 +Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br> +Date: Mon Jul 30 14:35:01 2007 -0400 + + Support relative paths in catalogue:<dir> symlinks. + + Relative symlinks are common inside the catalogue directory and + should be supported as well. + +commit 7670d4a2720c61fbc7b989fed14c676f04ac3ad1 +Author: Dodji Seketeli <dodji@seketeli.org> +Date: Mon Jul 16 12:24:34 2007 +0200 + + Remove side effects from BuiltinReadDirectory() + + The first time BuiltinReadDirectory() is called, + save the content of builtin_dir and builtin_alias, + before calling FontFileAddFontFile(), because that fonction + will modify those. + + Then, in subsequent calls to BuiltinReadDirectory(), restore + builtin_dir and builtin_alias so that the side effect incurred + by the first call disappears. + +commit e3642d9b2c0819a607d4cce413b9f0541285545b +Author: Kristian Høgsberg <krh@redhat.com> +Date: Mon Jul 2 15:01:05 2007 -0400 + + Bump version to 1.3.0. + +commit f33f9361086db3cf1d09cec067f38fe751ed22eb +Author: Kristian Høgsberg <krh@redhat.com> +Date: Mon Jul 2 14:59:11 2007 -0400 + + Fix crash when no attributes are present for symlink. + +commit 8d47483711be6076e7bfefab14aa890c5f37e1aa +Author: Kristian Høgsberg <krh@redhat.com> +Date: Thu Jun 21 21:44:02 2007 -0400 + + Bump version to 1.2.9. + +commit c5ab59762c4ad5def68436d55937a2bd558d5c99 +Author: Kristian Høgsberg <krh@redhat.com> +Date: Tue Jun 19 10:38:02 2007 -0400 + + Add a new 'catalogue' FPE, which takes font paths from symlinks in a dir. + + This patch adds a new FPE type, which will match font path elements of the + form + + catalogue:<dir> + + The dir specified after the catalogue: prefix will be scanned for symlinks + and each symlink destination will be added as a local fontfile FPE. + The symlink can be suffixed by attributes, such as 'unscaled', which + will be passed through to the underlying fontfile FPE. Except the new + attribute 'pri' which will be used for ordering the fontfile FPEs. + + An example configuration: + + 75dpi:unscaled:pri=20 -> /usr/share/X11/fonts/75dpi + ghostscript:pri=60 -> /usr/share/fonts/default/ghostscript + misc:unscaled:pri=10 -> /usr/share/X11/fonts/misc + type1:pri=40 -> /usr/share/X11/fonts/Type1 + type1:pri=50 -> /usr/share/fonts/default/Type1 + + will add /usr/share/X11/fonts/misc as the first FPE with the attribute + 'unscaled', second FPE will be /usr/share/X11/fonts/75dpi, also with + the attribute unscaled etc. This is functionally equivalent to setting + the following font path: + + /usr/share/X11/fonts/misc:unscaled, + /usr/share/X11/fonts/75dpi:unscaled, + /usr/share/X11/fonts/Type1, + /usr/share/fonts/default/Type1, + /usr/share/fonts/default/ghostscript + + The motivation is to let font packages add a symlink to the new font + directory they provide instead of rewriting either the Xorg config file + or the xfs config file. + +commit 1a690feaf7c416da9b01861af381d15a661e5f52 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 16:01:03 2007 -0400 + + Minor fontfile cleanup. + +commit 3b1bcd7676fe810ce60d6a4758067b571796cceb +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 15:54:51 2007 -0400 + + Dead code cull from fontserver code. + +commit 6257af0e547095483331b8c8ed588e5467852671 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 15:41:19 2007 -0400 + + Static markup over bitmap and builtins. + +commit 8c31fadabd706af63381007d666e685a66b58fd9 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 15:28:09 2007 -0400 + + Dead code cull from FreeType. + +commit fabf5458f1acbfc967bdaea3b89d707c22b97364 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 15:17:16 2007 -0400 + + Death to open-coded strcasecmp. + + Seriously, if you don't already have this, you've already lost. + +commit d50de26430c1a114a22597de40a3e5ac3c8e1ab7 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 15:13:44 2007 -0400 + + Dead code cull from Speedo. + +commit 3fd7a510b5467479d6e2559819b96b222c7328e8 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 14:39:03 2007 -0400 + + One more missed static in Type1 + +commit 440166a027b78eb53d7686937148b755ad51f7f9 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 14:24:46 2007 -0400 + + Dead code removal and static markup for Type1. + +commit 9739e750a7ca4b86ddb89674b104e9b9a8b61014 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jun 7 14:20:27 2007 -0400 + + Warning cleanup. + +commit 87db45f5eb7880395735f7bf3a8ee2d89b7e0122 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Wed Apr 4 17:05:13 2007 -0700 + + Version bump: 1.2.8 + +commit 224fb6403a328e70b370540cc5cefd74421fafac +Merge: e7a59cf... 0fbb37c... +Author: Matthieu Herrb <matthieu@roadrock.(none)> +Date: Tue Apr 3 16:05:48 2007 +0200 + + Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libXfont + +commit e7a59cfb5d442d2965cfcffeff405a4b05591190 +Author: Matthieu Herrb <matthieu@roadrock.(none)> +Date: Tue Apr 3 15:45:21 2007 +0200 + + Integer overflow vulnerabilities + + CVE-2007-1351: BDFFont Parsing Integer Overflow + CVE-2007-1352: fonts.dir File Parsing Integer Overflow + +commit 0fbb37ccc630ced42d6a973c81d947870cca7637 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Mon Apr 2 17:40:19 2007 -0700 + + Add #pragma weak for Sun cc where needed + +commit cc824e4f2c9a53a00b36a6f83bf065c363027087 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Mar 23 15:57:29 2007 -0700 + + Actually use loadable font modules + + Loadable font modules were not being initialized, and all font renderers + known at build time were always being initialized, regardless of Xorg + module configuration. + +commit fc6e22f238d34918156ded34148730075b7b9cc2 +Author: Ben Byer <bbyer@bbyer.(none)> +Date: Tue Feb 20 00:20:23 2007 -0800 + + added -flat_namespace to CFLAGS for Darwin + +commit 9509d5c7ee5d5e78c6eef54e8faceede5ca5f24e +Author: Kristian Høgsberg <krh@redhat.com> +Date: Mon Jan 22 18:24:19 2007 -0500 + + Bump to 1.2.7. + +commit 63af35b908b51690a6c12fd42b54cf4ee08c762a +Author: Simon Law <sfllaw@debian.org> +Date: Fri Jan 19 08:50:39 2007 +1100 + + fontfile: accept empty (but valid) font paths (bug #3091) + If a path has a valid fonts.dir or fonts.alias, but does not contain any + fonts (either fonts.dir specifies zero fonts, or fonts could not be + loaded), load it as a valid font path anyway. + +commit 931b777108526dd0761f948dcd9f1603ac02efc8 +Author: Kristian Høgsberg <krh@redhat.com> +Date: Wed Jan 17 17:19:53 2007 -0500 + + Add stubs for the scalable renderer callbacks. + + Trying to scale a bitmap font provided by the built-in backend will + crash the X server as it calls into a NULL pointer. This patch + adds "return BadFont;" stubs to prevent the crash. + +commit 2e4ae1b524a0149479c46f3f12a9ce2413092442 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Sat Dec 16 00:53:43 2006 +0200 + + bump to 1.2.6 + +commit facc7ce4892eab4353fff0f45d2d3fd6be7d3e3d +Author: Daniel Stone <daniel@fooishbar.org> +Date: Sat Dec 16 00:53:32 2006 +0200 + + build Type1 by default + Build Type1 by default, instead of needing to explicitly enable it. + +commit 257db35656d5bf9385080e1d173260f0076f849c +Author: Daniel Stone <daniel@fooishbar.org> +Date: Sat Dec 16 00:53:07 2006 +0200 + + don't distribute fontconf.h + Since fontconf.h is a generated file, don't distribute it. + +commit ab0f05dcfb5537ba5aec7e48ddb713d4fdba7e75 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Wed Dec 6 18:53:54 2006 +0200 + + Makefile.am: make ChangeLog hook safer + Make ChangeLog hook as safe as possible. + +commit da20e256b786eaa6357e3d55baa9e90e38f14614 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Fri Dec 1 01:05:59 2006 +0200 + + bump to 1.2.5 + +commit 16a0c282a673136c0bbb116f35e6e89d8b43a877 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Fri Dec 1 01:05:40 2006 +0200 + + post-CID fixes + Curiously, make distcheck succeeded ... go figure. + +commit e47fb944a8f485c4ad6be9c2cf6a4866eff7a07f +Author: Daniel Stone <daniel@fooishbar.org> +Date: Fri Dec 1 00:35:48 2006 +0200 + + bump to 1.2.4 + +commit 47084ba39920068030c3e59523701d1205161a9f +Author: Daniel Stone <daniel@fooishbar.org> +Date: Fri Dec 1 00:35:04 2006 +0200 + + remove CID font support (bug #5553) + Remove non-free CID font support, which was unused anyway. + +commit c4741cdd83bcdedcc6f7a072a73b16668fc905eb +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Fri Oct 13 16:17:26 2006 -0400 + + Bump to 1.2.3 + +commit 5dfff0eb0f532edb1f4a25daa5529e08dd832ecb +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Thu Oct 5 18:12:50 2006 -0700 + + --disable-builtins should not force off all bitmap support + +commit 264df52d24f585915e0d9823d5f087cf23e3fc75 +Merge: 0fb55cb... d896c3e... +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Sep 22 11:36:43 2006 -0700 + + Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libXfont + +commit d896c3eaeafdb8831ed0833af46250c36f82502f +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Tue Sep 12 11:11:12 2006 -0400 + + Fix distcheck. + +commit 1bb49c77c321fab1f5c268404ea0ec622fa083ed +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Tue Sep 12 11:01:13 2006 -0400 + + Bump to 1.2.2. + +commit 8c8203ca2760105aca4e0b6ec5909355a061f0b3 +Author: Matthieu Herrb <matthieu@blues.laas.fr> +Date: Tue Sep 12 13:50:31 2006 +0200 + + Fixes for integer overflows in CID encoded fonts parsing reported by iDefense + CVE-ID 2006-3739, 2006-3740, bugzilla #8000, #8001. + +commit 0fb55cb86e2ec5dbfbf27a01ceafb77c72fe9f40 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Wed Aug 30 15:53:14 2006 -0700 + + Fix typo in comment (alreadt -> already) + +commit aa7f3107d5aad41cb3f7b1bb3a4723014314289c +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Aug 25 17:51:46 2006 -0700 + + Add *~ to .gitignore to skip emacs droppings + +commit cd09f4d54045b957d728d853398d62543d687d03 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Fri Aug 25 17:51:04 2006 -0700 + + Replace static ChangeLog with dist-hook to generate from git log + +commit 8d171fe61e564d8ed8f75034d4191062cecf190b +Author: Matthieu Herrb <matthieu.herrb@laas.fr> +Date: Sun Jul 23 22:42:43 2006 +0200 + + More check on PCF file reading. Bugzilla #7535 + +commit fead0fa3bae0ba5a4744d6a2aee1caa08019f344 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Wed Jul 19 18:03:58 2006 -0400 + + use OpenBitmap when available + Don't just use OpenScalable unconditionally. Fixes builtin fonts. + +commit 13422d0e0468f2ddf7cb74cbf925e5bcf4551ae7 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Wed Jul 19 18:03:26 2006 -0400 + + move builtin fonts to gzip + Use gzip, rather than compress, for builtin fonts. + +commit 47ca9941396a375f5e22c220327b6bd513350996 +Author: Alan Coopersmith <alan.coopersmith@sun.com> +Date: Thu Jul 13 14:58:56 2006 -0700 + + renamed: .cvsignore -> .gitignore + +commit 1bf657186d19887a0916340b544b5534e29da081 +Author: Matthieu Herrb <matthieu.herrb@laas.fr> +Date: Thu Jul 13 10:18:38 2006 -0400 + + Bug #7397: Fix a buffer overflow in Freetype font support. + +commit 5d39f5fd3048fc413cb07afeffec0c4daa0cc5a4 +Author: Adam Jackson <ajax@benzedrine.nwnk.net> +Date: Thu Jul 6 16:13:14 2006 -0400 + + Bump to 1.2.0 + +commit d9e83ea0ab1cc3bafcdca04812dcbfe541ce1473 +Author: Jie Luo <clotho67@gmail.com> +Date: Thu Jul 6 15:59:31 2006 -0400 + + Bug #6918: remove dependencies on Freetype internal headers. As of 2.2 + Freetype no longer installs them. + +commit 2a564715e6d01bafdf4b701e125e45a77c2c404b +Author: Alan Coopersmith <Alan.Coopersmith@sun.com> +Date: Sat Jun 3 06:25:05 2006 +0000 + + Coverity #1541: Double free of pointer "ranges" in call to "Xfree" + +commit ddd281e6b9408c786cdc759cf7d1ec8972048658 +Author: Adam Jackson <ajax@nwnk.net> +Date: Thu Jun 1 21:49:51 2006 +0000 + + For the 20-odd symbols defined both in libXfont and the X server, emit them + as weak symbols so that the linker will prefer the server's definition + when present. + +commit e9357d6670fc2e8ccf8d8770bac4c31994d6cc2f +Author: Adam Jackson <ajax@nwnk.net> +Date: Sat Apr 1 23:05:40 2006 +0000 + + Add ft.h and ftfuncs.h to the install set for Xprint's benefit. Bump to 1.1 + for new header files and bugfixes. + +commit 7ecd09a15c30770ed6e70d80fb67f88819471c20 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Fri Mar 31 07:17:16 2006 +0000 + + Change BUILD_* to XFONT_* (Drew Parsons). Remove random #ifndef CRAY. + +commit 69c4ae1e3e14a58bc2eb9b9b8820dc7183b82a67 +Author: Adam Jackson <ajax@nwnk.net> +Date: Mon Mar 20 19:44:26 2006 +0000 + + Bug #6247: Fix build on Cygwin. (Yaakov Selkowitz) + +commit bfb8a71f4f7e5c5ed4278cb3ee271bf9990d276d +Author: Daniel Stone <daniel@fooishbar.org> +Date: Tue Feb 21 21:35:32 2006 +0000 + + Don't crash when we receive an FS_Error from the font server (Guillem + Jover). + +commit 784838e88ea205c4457f41335b4ce7876833dffc +Author: Kevin E Martin <kem@kem.org> +Date: Thu Dec 15 00:24:29 2005 +0000 + + Update package version number for final X11R7 release candidate. + +commit e2e5839417ac4d635781508e48ab1838218f4a77 +Author: Kevin E Martin <kem@kem.org> +Date: Fri Dec 9 06:55:27 2005 +0000 + + Bug #5175: Make encodingsdir configurable. + +commit 9a7909e80a8b436aa7aad84c8aceba7df2ffc95c +Author: Kevin E Martin <kem@kem.org> +Date: Sat Dec 3 05:49:43 2005 +0000 + + Update package version number for X11R7 RC3 release. + +commit ad001bd8823594fed860e070b278748fe2b7c3aa +Author: Eric Anholt <anholt@freebsd.org> +Date: Sun Nov 20 23:17:40 2005 +0000 + + Add/improve libs .cvsignores. + +commit d48bfbaf52598d89b4b1d97b230924874175e068 +Author: Kevin E Martin <kem@kem.org> +Date: Sat Nov 19 07:15:41 2005 +0000 + + Update pkgconfig files to separate library build-time dependencies from + application build-time dependencies, and update package deps to work + with separate build roots. + +commit 70a8aeb19223cc6db9ff6fc1335e3ef94bbb9253 +Author: Adam Jackson <ajax@nwnk.net> +Date: Mon Nov 14 20:40:42 2005 +0000 + + Bug #5047: Make font directory attribs work in modular. + +commit 659b2a75a690838dc37ae488d0295c4c594978ce +Author: Kevin E Martin <kem@kem.org> +Date: Wed Nov 9 21:19:13 2005 +0000 + + Update package version number for X11R7 RC2 release. + +commit fc82a56858e26674e83cc9429fa0eae24d97a530 +Author: Kean Johnson <kean@armory.com> +Date: Tue Nov 8 06:33:26 2005 +0000 + + See ChangeLog entry 2005-11-07 for details. + +commit fb3d726bbff1fad62a3d6dbbcf1c397872aadef3 +Author: Adam Jackson <ajax@nwnk.net> +Date: Sun Oct 23 18:32:05 2005 +0000 + + Bug #4721: Fix crash when using Freetype 2.1.10. (Michael Gor) + +commit 0f006d82f8edd15e0125800fa3166a147e79b9f5 +Author: Kevin E Martin <kem@kem.org> +Date: Wed Oct 19 02:48:10 2005 +0000 + + Update package version number for RC1 release. + +commit 70dfb55c0390cd8698a77baad5e9fbb07aab272d +Author: Kevin E Martin <kem@kem.org> +Date: Wed Oct 5 19:39:06 2005 +0000 + + Include missing files + +commit 01f5840009b23cc504359219a6fbab3c150d4656 +Author: Adam Jackson <ajax@nwnk.net> +Date: Tue Oct 4 00:24:47 2005 +0000 + + Bug #4677: Don't install libfontcache.so + +commit 30f912cd14e8b7272a95586dc0af429a0fa4c84f +Author: Daniel Stone <daniel@fooishbar.org> +Date: Fri Sep 9 05:32:58 2005 +0000 + + AC_DEFINE FONTCACHE rather than XFONT_FONTCACHE, as the former is used in + the code, and the latter in Makefile.ams for an AM_CONDITIONAL. + +commit 4a2f7ae2f3317e53d99daf15ad362230388949d4 +Author: Alan Coopersmith <Alan.Coopersmith@sun.com> +Date: Thu Aug 4 16:15:46 2005 +0000 + + If --with-freetype-config is not specified, try pkgconfig freetype2, then + fall back to freetype-config if pkgconfig fails. + +commit 0c52dd6f8816a72d8309f0b059afb0c3393f17cf +Author: Alan Coopersmith <Alan.Coopersmith@sun.com> +Date: Sat Jul 30 18:56:32 2005 +0000 + + Clear compiler warnings. (Stefan Dirsch) + +commit 8520fa13d35e42da7352772b499beef258723d43 +Author: Kevin E Martin <kem@kem.org> +Date: Fri Jul 29 21:22:51 2005 +0000 + + Various changes preparing packages for RC0: + - Verify and update package version numbers as needed + - Implement versioning scheme + - Change bug address to point to bugzilla bug entry form + - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to + reenable it) + - Fix makedepend to use pkgconfig and pass distcheck + - Update build script to build macros first + - Update modular Xorg version + +commit d0c5d54d2c7f0bb9364414620df869e3c7615cd5 +Author: Kevin E Martin <kem@kem.org> +Date: Sat Jul 23 05:27:00 2005 +0000 + + Fix distchecks + +commit 561a45751e4c553f1e0887b73abcc724828f03b0 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Sat Jul 16 07:55:12 2005 +0000 + + Set soversion to 1.0.0 using -version-number. + +commit 054dd01fd5793cff89f7c536c04fd8d904aca4a3 +Author: Adam Jackson <ajax@nwnk.net> +Date: Thu Jul 14 14:56:13 2005 +0000 + + Add a dummy source file to avoid link failures. + +commit 740cfa83024ce5d3f131cdc2f52dd5bf26f945b3 +Author: Kevin E Martin <kem@kem.org> +Date: Sun Jul 10 21:35:08 2005 +0000 + + Change include dir now that public headers are referenced by + <X11/fonts/*.h> + +commit cd24fcabc449bbc701a25e3cad279009dec69032 +Author: Keith Packard <keithp@keithp.com> +Date: Sat Jul 9 23:31:40 2005 +0000 + + Switch from monolithic configuration symbols to modular ones, add backward + compatibility for monolithic symbols + +commit 428dd333c1c1a96d205d8236c6ecee32dbf7cac9 +Author: Keith Packard <keithp@keithp.com> +Date: Sat Jul 9 23:30:07 2005 +0000 + + Switch from monolithic configuration symbols to modular ones, add backward + compatibility for monolithic symbols + +commit 99cde389c331616f22dd6aab395c488f3a798e2e +Author: Keith Packard <keithp@keithp.com> +Date: Sat Jul 9 23:15:37 2005 +0000 + + Rearrange configuration options so that individual font file formats drive + combined options, and so that the default matches the monolithic + defaults + Extent fontconf.h to cover all formats + Typo in src/Makefile.am failed to link in Type1 library + Missing xttcap.c from FreeType shim library. + +commit 3c4ac0b9f5b7aced60a763bcaca7b32cd53a7fec +Author: Keith Packard <keithp@keithp.com> +Date: Sat Jul 9 06:36:13 2005 +0000 + + Include config.h in every source file to make sure necessary options are + found when building in the modular tree + +commit 712140dadd20c7d2024d7b75f7033fff407e57e6 +Author: Keith Packard <keithp@keithp.com> +Date: Sat Jul 9 06:20:37 2005 +0000 + + Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory + +commit ef504c5311dfd441dcb73be64e90f6e7a530b61c +Author: Adam Jackson <ajax@nwnk.net> +Date: Fri Jul 8 20:47:12 2005 +0000 + + add -D_XOPEN_SOURCE for linux builds; others might need it too + +commit 3ff8db61b901a4d6236a0e4fa40fe5f1b7afcf78 +Author: Adam Jackson <ajax@nwnk.net> +Date: Fri Jul 8 20:16:12 2005 +0000 + + disable the poll detection momentarily, it's not correct + +commit 830d29e5cb0a8c46cd366adefbf3a291c65bd3ac +Author: Adam Jackson <ajax@nwnk.net> +Date: Fri Jul 8 20:08:12 2005 +0000 + + silence a warning + +commit 75bbb2d461957902258223a9f8f7f8490132e75d +Author: Adam Jackson <ajax@nwnk.net> +Date: Fri Jul 8 19:53:05 2005 +0000 + + config.h includes to fix modular build. + +commit f068c478d0966be93f9e984c1e9ce2600819a6a1 +Author: Adam Jackson <ajax@nwnk.net> +Date: Fri Jul 8 18:29:58 2005 +0000 + + Properly test for the existance of poll(3). Default to using it if it + exists; add a flag to disable it if you like going slow. + Also s/BULITIN/BUILTIN/. + +commit e5f35e324548994f2d6df89d6bd0a4eb913f7414 +Author: Alan Coopersmith <Alan.Coopersmith@sun.com> +Date: Thu Jul 7 14:59:47 2005 +0000 + + Bug #2901 <https://bugs.freedesktop.org/show_bug.cgi?id=2901> Patch #2332 + <https://bugs.freedesktop.org/attachment.cgi?id=2332> This patch avoids + 79 gcc-3.4.3 warnings 'xxx' declared `static' but never defined mostly + due to including "ftfuncs.h" with the declaration of static functions + defined in "ftfuncs.c". (Peter Breitenlohner) + +commit c073ce34164a9872688ce619cc0b3fedbdc76f83 +Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> +Date: Mon Jul 4 22:26:15 2005 +0000 + + Test for xtrans connection flags + +commit a0dc7d02bfcaea8c8a60dcbd00795999bd7f8e0a +Author: Kevin E Martin <kem@kem.org> +Date: Sun Jul 3 21:43:32 2005 +0000 + + Undo previous change to add ${includedir}/X11/fonts to CFLAGS. Instead, + require all apps to include font headers explicitly -- i.e., from + <X11/fonts/*.h> instead of "*.h" or <*.h>. + +commit b15a03de6b1897d7c8292e154d0e927f43e3cde0 +Author: Kevin E Martin <kem@kem.org> +Date: Sun Jul 3 21:38:42 2005 +0000 + + Install publicly used headers in X11/fonts. + Change source files that use these headers to get them via <X11/fonts/*.h>. + +commit bf4070d02196cab1de62d5fe19be9a1aa74a87c7 +Author: Kevin E Martin <kem@kem.org> +Date: Sun Jul 3 16:10:05 2005 +0000 + + Change include dir now that public headers are referenced by + <X11/fonts/*.h> + +commit 932edb23b47440397447265bf72ad7932fd80070 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Sun Jul 3 07:01:01 2005 +0000 + + Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings. + Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings. + Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all + source files in the xserver/xorg tree, predicated on defines of + HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to + <X11/fonts/foo.h>. + +commit b03d67fd1612a0df5132b10dd0bd9b2cec053a39 +Author: Keith Packard <keithp@keithp.com> +Date: Sat Jul 2 23:03:05 2005 +0000 + + Add suitable .cvsignore files + +commit 69ee19fc4131ce168c9bad2602ff2da176a86715 +Author: Kevin E Martin <kem@kem.org> +Date: Sat Jul 2 21:39:23 2005 +0000 + + Make headers needed by bdftopcf public + Set CFLAGS to make public interface actually public + Fix distcheck problem + +commit 0ea9f882abb9ad56de2bb8b569e21728e13a1ea7 +Author: Keith Packard <keithp@keithp.com> +Date: Sat Jul 2 21:22:31 2005 +0000 + + Build libXfont.la in the 'src' directory as my version of automake really + didn't like sub-subdirs in SUBDIRS. + +commit 6abcfa406de44d726f550fe7e9b04e4168fce265 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Sat Jul 2 18:02:19 2005 +0000 + + Remove -I${includedir}/X11/fonts from CFLAGS. + +commit 58edcd0de115e23030955493e88afb25b57668e9 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Fri Jul 1 22:21:43 2005 +0000 + + Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings. + +commit 12cca25eea410bfd536ada44e252d79e0896ffa2 +Author: Daniel Stone <daniel@fooishbar.org> +Date: Fri Jul 1 21:24:31 2005 +0000 + + Default --enable-fc to yes; minor formatting changes. + +commit 4534fa0c8adb77b7db47101318e0e863edb186ce +Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> +Date: Mon Jun 27 16:09:14 2005 +0000 + + - Remove fontenc from Xfont + - Add a dependency from Xfont on libfontenc + - Add build system for lib/fontenc + - xc/lib/font: Change #include "fontenc.h" to #include + <X11/fonts/fontenc.h> in some places. + - Remove dpsinfo and dpsexec from the app section of symlink.sh + - Fix xp.pc.in to add XPRINT_LIBS/CFLAGS instead of X_LIBS/CFLAGS + +commit fda7215c0783ad170eb14f7dda078fac3f134470 +Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> +Date: Tue Jun 21 21:29:40 2005 +0000 + + Add fontenc directory, update buildsystem + +commit db8fd7e670cbd901116344212217bee8001ab460 +Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> +Date: Fri Jun 17 20:33:33 2005 +0000 + + Add lbxutil to symlink.sh Add back accidentally removed include in Type1 + directory Disable Speedo by default + +commit e5525d268c6165318894f326be445b22a2523558 +Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> +Date: Thu Jun 16 21:35:26 2005 +0000 + + Add Speedo directory to Xfont + +commit b96f539005da57273dc7e2bee13651de4eedf087 +Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> +Date: Thu Jun 16 20:50:12 2005 +0000 + + Add Type1 subdirectory to lib/Xfonts, update build system accordingly. + +commit 01c8cee1736be252348306412ab56b2e03bf2678 +Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> +Date: Thu Jun 9 15:56:05 2005 +0000 + + Replace <X11/transport.c> with <X11/Xtrans/transport.c> + +commit 3a46316e5f21e28402babdc95871317bd7013809 +Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> +Date: Thu Jun 9 15:52:03 2005 +0000 + + Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h> + Copy Xtrans.h to exports/include/X11/Xtrans only + +commit 175bbc2e58f7dbe5c1f097ef36eadc3f6fe4b5e6 +Author: Josh Triplett <josh@speakeasy.net> +Date: Fri May 27 17:44:08 2005 +0000 + + Reference X11/fonts header files using X11/fonts/ prefix. + +commit fd884a4dbe3f1be8919426da3ebd177fa474a59e +Author: Josh Triplett <josh@speakeasy.net> +Date: Fri May 27 05:17:52 2005 +0000 + + Add Xfont. + +commit 73c3c1850bc5ba1b0d42b2a9d4f3f5593bfbfd02 +Author: Adam Jackson <ajax@nwnk.net> +Date: Fri Apr 22 20:49:49 2005 +0000 + + Bug #3069: Drop the BuildLowMem hack, it doesn't compile and isn't useful. + +commit dd695cb666d6912f615b264eaabbad63592588c1 +Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> +Date: Mon Nov 15 15:06:56 2004 +0000 + + Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added + mingw (Win32) port + +commit 8cb3bec3667fa6ee57277956d3be71671915a73b +Author: Roland Mainz <roland.mainz@nrubsig.org> +Date: Wed Nov 10 07:46:26 2004 +0000 + + xc/lib/font/util/Imakefile + //freedesktop.org/bugzilla/show_bug.cgi?id=1804): Fix build failure (caused + by missing symbols such as |TwoByteSwap|) when linking the FreeType + module and the FreeType library both statically info the Xserver. + +commit 69e87288b14a9f28caf0ed5e4ccf5a52767b22eb +Author: Roland Mainz <roland.mainz@nrubsig.org> +Date: Wed Nov 3 19:43:57 2004 +0000 + + //freedesktop.org/bugzilla/show_bug.cgi?id=1767): Fixing build bustage in + xc/programs/bdftopcf/ due missing `FT_STREAM_SEEK'/`FT_STREAM_POS' + symbols. + +commit 29b00ebfebf9811d0940c164a4fcff1b2fc5f2a0 +Author: Egbert Eich <eich@suse.de> +Date: Tue Nov 2 08:54:52 2004 +0000 + + Removing unneeded private FreeType2 symbol. + Updating to EDID 1.3. (Bugzilla# 1490, Jay Cotton, Egbert Eich). + Removing unneeded code. + Fixed KGA handling for i810. KGA handling for chips derived from C&T chips + is slightly different. The changes make the code consistent with the + C&T (chips) and i740 drivers. + +commit e521b8425894ae62ebe225af80e8b6f820df6ff8 +Author: Egbert Eich <eich@suse.de> +Date: Wed Aug 4 12:21:48 2004 +0000 + + Optimization of CJK rendering when using versions of freetype prior to + 2.1.8 (Chisato Yamauchi). + A small backward compatibility fix to make the freetype module build with + freetype version < 2.1.7. + Fixed/added some debugging code. + +commit 0cbe4e38042a21ee193b2fda42fa647e23f61758 +Author: Egbert Eich <eich@suse.de> +Date: Tue Aug 3 16:12:53 2004 +0000 + + fixed typo + +commit 3ebaa297368aaf4c49caf179d2032c1678066663 +Author: Egbert Eich <eich@suse.de> +Date: Tue Aug 3 09:02:17 2004 +0000 + + Bugzilla #925: Simpler version of backward compatibility fix (Chisato + Yamauchi). Fix to support older versions of gcc (Matthieu Herrb). + +commit 96a97b8f86982ece612aa72865b737820d88105b +Author: Egbert Eich <eich@suse.de> +Date: Mon Aug 2 19:35:07 2004 +0000 + + Removed distro specific stuff. + Fixed FreeType module to build with FreeType versions older than 2.1.7. + Fixed typo. + Added vtSema to protect call of driver DPMS function. + removed unneeded variable + Modified RandR driver hook to reduce the number of function calls to one. + Function is sufficiently generic to be extended in the future. + +commit d1054db0eec3af6a7c322b262cfc1bf5a3992805 +Author: Egbert Eich <eich@suse.de> +Date: Mon May 24 19:06:59 2004 +0000 + + Fix build glitches when building modules independently using Imake. + +commit 2a7109894f4dcfaba70135e19fb6d595332522c7 +Author: Egbert Eich <eich@suse.de> +Date: Wed May 5 17:24:40 2004 +0000 + + BugZilla #601: fixed missing symbols in Xserver freetype module due to + using isdigit instead of ft_isdigit, missing or faulty defines for + digit and string functions in ftstdlib.h (now myftstdlib.h). Reverted + freetype2 to upstream version, fixed CHAR_BIT in myftstdlib.h and made + the use of a copy of ftconfig.h in lib/font/FreeType obsolete (Egbert + Eich). + +commit b096ed91beaa09eb06b07ef948eeb6207bd3c5e4 +Author: Roland Mainz <roland.mainz@nrubsig.org> +Date: Tue May 4 22:59:15 2004 +0000 + + Fix for http://pdx.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=595 - + RFE: Retire XTT font module and FreeType1 from xorg tree. The + functionality of XTT has been integrated into the FreeType font module + and the old XTT1.x code (incl. FreeType1 in xc/extras/) is no longer + needed anymore. + +commit ca5602cde91fc78f54ebe9f08c11a44a9372a652 +Author: Roland Mainz <roland.mainz@nrubsig.org> +Date: Tue May 4 18:47:31 2004 +0000 + + Fix for http://pdx.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=307 - + Restore optimization heuristics on CJK fonts in the FreeType font + module which were broken in X11R6.7. Patch by Chisato Yamauchi + <cyamauch@a.phys.nagoya-u.ac.jp>. + +commit 3d75ea33ecf80c3539b38a993092cd16325a9525 +Author: Egbert Eich <eich@suse.de> +Date: Fri Apr 23 18:44:23 2004 +0000 + + Merging XORG-CURRENT into trunk + +commit 8ee2a19ff0295d625baf0b42e0a8bb7f4ad575fd +Author: Egbert Eich <eich@suse.de> +Date: Sun Mar 14 08:32:37 2004 +0000 + + Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 + +commit 4986cabb22d133aeb37b53514471ff7d5bf999fe +Author: Egbert Eich <eich@suse.de> +Date: Wed Mar 3 12:11:44 2004 +0000 + + Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 + +commit f827ecf1e0c4289b5020256f9bf5b8d563b202c7 +Author: Egbert Eich <eich@suse.de> +Date: Thu Feb 26 13:35:35 2004 +0000 + + readding XFree86's cvs IDs + +commit 90614769a00fbdaf6ef2e313b480e1f0857425f3 +Author: Egbert Eich <eich@suse.de> +Date: Thu Feb 26 09:22:53 2004 +0000 + + Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 + +commit 45fc57ae316da51b2f9abab2aee303456730ab54 +Author: Kaleb Keithley <kaleb@freedesktop.org> +Date: Mon Feb 23 20:34:43 2004 +0000 + + Import most of XFree86 4.4RC3. This import excludes files which have the + new license. If we want to, later we can import 4.4RC3 again and pick + up the files that have the new license, but for now the vendor branch + is "pure." + +commit d7467b679ccff6fb2025f963b9bcea5dbe72fa15 +Author: Egbert Eich <eich@suse.de> +Date: Thu Jan 29 08:08:15 2004 +0000 + + Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004 + +commit a0e93cace89c3da8df33d8626a486afe6840d530 +Author: Kaleb Keithley <kaleb@freedesktop.org> +Date: Fri Dec 19 20:54:40 2003 +0000 + + XFree86 4.3.99.902 (RC 2) + +commit d82accff22e36919479b3ac1de72de6115688138 +Author: Kaleb Keithley <kaleb@freedesktop.org> +Date: Thu Dec 4 22:03:04 2003 +0000 + + XFree86 4.3.99.901 (RC 1) + +commit fb0cbe6e7287d635a5f368e055cc0aae6ed50125 +Author: Kaleb Keithley <kaleb@freedesktop.org> +Date: Tue Nov 25 19:28:20 2003 +0000 + + XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks + +commit ca219ad2fc4f392505d378dfa5a2b34d33de6d61 +Author: Kaleb Keithley <kaleb@freedesktop.org> +Date: Tue Nov 25 19:28:16 2003 +0000 + + Initial revision + +commit 4349bf0fa125e2a1c32b0b49c974ff5fa588cdbe +Author: Kaleb Keithley <kaleb@freedesktop.org> +Date: Fri Nov 14 16:48:50 2003 +0000 + + XFree86 4.3.0.1 + +commit 3795e9702b3b3a6fe0594d09cdd110adeb5e42f9 +Author: Kaleb Keithley <kaleb@freedesktop.org> +Date: Fri Nov 14 16:48:50 2003 +0000 + + Initial revision + +commit 153e8da44452905ae04a0e20ad0d85f40399b4ca +Author: Kaleb Keithley <kaleb@freedesktop.org> +Date: Fri Nov 14 15:54:40 2003 +0000 + + R6.6 is the Xorg base-line |