summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* libXft 2.1.13libXft-2.1.13Adam Jackson2008-07-023-3/+3
|
* Revert "Drop Requires, use Requires.private instead."Julien Cristau2008-06-111-1/+2
| | | | | | | This reverts commit a1c78ce68c5f2106c38b6cb93a6b22420e1a80ab. Unfortunately this doesn't work on old pkg-config, which made Requires.private completely useless. That's fixed in 0.22, but...
* Drop Requires, use Requires.private instead.Julien Cristau2008-06-101-2/+1
| | | | | Users of libXft don't need to link with fontconfig, freetype and Xrender directly if they don't use them.
* Bug #14232: Fix XftDrawRect when Render not supported.Adam Jackson2008-03-241-1/+4
|
* nuke RCS IdsMatthieu Herrb2008-03-0923-45/+0
|
* Replace static ChangeLog with dist-hook to generate from git logJames Cloos2007-12-062-20/+10
|
* Register objects used by libXft.Stefan Dirsch2007-11-041-0/+1
| | | | libXft uses XFT_MAX_GLYPH_MEMORY without first registering with fontconfig.
* XftFontOpenInfo: Use of uninitialised value of size 8 (bug 11200)Karl Tomlinson2007-09-121-2/+7
| | | | | | | | | | | | | | | | | | This is due to XftFontInfoFill using the binary representation of the XftFontInfo to generate fi->hash. With 64-bit pointers there is padding between .hash and .file in struct _XftFontInfo. This padding is not initialized, and the hash uses these bytes. This will interfere with finding "a matching previously opened font" in XftFontOpenInfo, and XftFontInfoEqual, which uses memcmp, will have similar problems. This fix makes no assumptions about the sizes and alignment of members of struct _XftFontInfo by using memset. (It also makes no assumptions about what FcPatternGet* does to its output parameter when it returns FcResultNoMatch.)
* Add *~ to .gitignore to skip patch/emacs droppingsJames Cloos2007-09-031-0/+1
|
* bump to 2.1.12libXft-2.1.12Daniel Stone2006-12-072-2/+2
|
* XftNameUnparse: re-export to public API (bug #8900)Daniel Stone2006-12-071-1/+1
| | | | | Fix botched git import, which reverted some changes from CVS, by re-exporting XftNameUnparse.
* Bump to 2.1.11libXft-2.1.11Adam Jackson2006-10-131-1/+1
|
* Bump to 2.1.10libXft-2.1.10Adam Jackson2006-10-131-1/+1
|
* renamed: .cvsignore -> .gitignoreAlan Coopersmith2006-07-133-0/+0
|
* Bug #7259: Various Coverity fixes.Kjartan Maraas2006-07-134-4/+6
|
* Bug #4711: Don't export unnecessary symbols. (Alan Coopersmith). Bump toxft-2_1_9Daniel Stone2006-06-0320-121/+129
| | | | 2.1.9.
* Update package version number for final X11R7 release candidate.XORG-7_1XORG-7_0_99_901XORG-7_0XORG-6_99_99_904Kevin E Martin2005-12-152-1/+6
|
* Update package version number for X11R7 RC3 release.XORG-6_99_99_903MODULAR_COPYKevin E Martin2005-12-032-1/+6
|
* Add/improve libs .cvsignores.Eric Anholt2005-11-203-0/+31
|
* Update pkgconfig files to separate library build-time dependencies fromXORG-6_8_99_903Kevin E Martin2005-11-191-7/+4
| | | | | application build-time dependencies, and update package deps to work with separate build roots.
* Update package version number for RC1 release.XORG-6_99_99_902XORG-6_99_99_901Kevin E Martin2005-10-191-1/+1
|
* lib/Xcomposite/Xcomposite.hXORG-6_8_99_902XORG-6_8_99_901Kevin E Martin2005-10-191-1/+1
| | | | | | | lib/Xft/Imakefile lib/Xft/Xft.h Update library version numbers to match updated package versions. Update driver version numbers for RC1.
* Clean up generated filesKevin E Martin2005-10-051-0/+2
|
* If --with-freetype-config is not specified, try pkgconfig freetype2, thenAlan Coopersmith2005-08-041-5/+19
| | | | fall back to freetype-config if pkgconfig fails.
* Various changes preparing packages for RC0:XORG-6_99_99_900Kevin E Martin2005-07-291-1/+3
| | | | | | | | | | | - 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
* Build system for XftSøren Sandmann Pedersen2005-07-275-0/+211
|
* Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15XORG-6_8_99_14Daniel Stone2005-07-030-0/+0
| | | | | | | | 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>.
* Sync with Xft from xlibs CVS (2.1.7 plus man page updates from BrandenXORG-6_8_99_13Alan Coopersmith2005-06-2423-187/+1091
| | | | Robinson) - see lib/Xft/ChangeLog for full details
* gcc4 allows to check if sentinels are correct (a sentinel is theXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10Egbert Eich2005-05-171-2/+5
| | | | | | | | | | | | terminating element in a varargs list). A sentinel needs to be NULL, not 0 - which doesn't make a difference on 32bit but matters on 64bit. Furthermore it can be told that functions have a printf-like format string and argument list so that they can verify that both match. To use these features certain attributes need to be set - which are compiler specific. To do this we define macros which are expanded depending on the compiler version. For now we put those in include/Xfuncproto.h (the XFree86 DDX layer contains a file compiler.h which however is not visible outside the DDX) (Bugzilla #3268).
* Fri Aug 13 21:01:34 2004 Soeren Sandmann <sandmann@daimi.au.dk>sco_port_update-baserel-0-6-1lg3d-rel-0-7-0lg3d-rel-0-6-2lg3d-baseXORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_3XORG-6_8_99_2XORG-6_8_99_1XORG-6_8_2XORG-6_8_1_904XORG-6_8_1_903XORG-6_8_1_902XORG-6_8_1_901XORG-6_8_1XORG-6_8_0XORG-6_7_99_904XORG-6_7_99_903XORG-6_7_99_902XORG-6_7_99_901sco_port_updatelg3d-masterlg3d-eventlg3d-dev-0-7-1lg3d-dev-0-7-0lg3d-dev-0-6-latestlg3d-dev-0-6-2lg3d-dev-0-6-1-latestlg3d-dev-0-6-1-currentlg3d-dev-0-6-1-1lg3d-dev-0-6-1lg3dXORG-6_8-branchSøren Sandmann Pedersen2004-08-131-0/+1
| | | | Fix the build
* Fri Aug 13 19:53:10 2004 Soeren Sandmann <sandmann@redhat.com>Søren Sandmann Pedersen2004-08-131-0/+9
| | | | | | | | | | | | | Fix for lockups on some versions of Matrox Mystique. #687, Patch from Mike Harris. Call xf86EnableDisableFBAccess though the function pointer instead of directly. #1041, Patch from Aaron Plattner. Swap the phsyical size of the screen when rotiation. #1050, Patch from Aaron Plattner. Fri Aug 13 19:47:12 2004 Soeren Sandmann <sandmann@redhat.com> Make HAVE_FT_BITMAP_SIZE_Y_PPEM conditional on the FreeType version instead of proping it. This way it will work with the monolithic version too. #1062, Patch by Owen Taylor.
* Called strlen with (f->file) without checking for NULL (which happens whenXORG-6_7_99_2Kevin E Martin2004-08-111-1/+2
| | | | directly using FT_Face objects) (Bug #1047, Keith Packard).
* Merging XORG-CURRENT into trunkXORG-6_7_99_1XACE-SELINUX-MERGECOMPOSITEWRAPEgbert Eich2004-04-2327-118/+483
|
* Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004xf86-4_4_99_1Egbert Eich2004-03-1419-19/+19
|
* file Xft.3.in was initially added on branch XORG-RELEASE-1.Egbert Eich2004-03-110-0/+0
|
* file NEWS was initially added on branch XORG-RELEASE-1.Egbert Eich2004-03-110-0/+0
|
* file AUTHORS was initially added on branch XORG-RELEASE-1.Egbert Eich2004-03-110-0/+0
|
* file README was initially added on branch XORG-RELEASE-1.Egbert Eich2004-03-090-0/+0
|
* file INSTALL was initially added on branch XORG-RELEASE-1.Egbert Eich2004-03-090-0/+0
|
* file COPYING was initially added on branch XORG-RELEASE-1.Egbert Eich2004-03-090-0/+0
|
* Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004xf86-4_4_0STSF-CURRENTEgbert Eich2004-03-0319-19/+19
|
* readding XFree86's cvs IDsxf86-4_3_99_903Egbert Eich2004-02-2619-19/+19
|
* Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004Egbert Eich2004-02-2619-19/+19
|
* XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_903_specialxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16xf86-012804-2330Kaleb Keithley2003-11-2510-26/+23
|
* XFree86 4.3.0.1xf86-4_3_0_1Kaleb Keithley2003-11-140-0/+0
|
* Initial revisionXORG-STABLEKaleb Keithley2003-11-1421-0/+8346