diff options
author | obache <obache@pkgsrc.org> | 2008-05-10 16:19:16 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2008-05-10 16:19:16 +0000 |
commit | 04a3877acc43e425678e2d1870b740444b544fa5 (patch) | |
tree | 403a3c86faeab17dfa6bb7f00e1e19d6f4401e42 /x11/fbdesk/patches | |
parent | da479f935b89ef959f4a6438f330c2578436b3a8 (diff) | |
download | pkgsrc-04a3877acc43e425678e2d1870b740444b544fa5.tar.gz |
Update fbdesk to 1.4.1.
Patch provided by Jason White in PR 38473.
Changes for 1.4.1:
* Fixed a shape bug which caused it to flicker.
* Fixed an icon file parsing bug.
Changes for 1.4.0:
* Imlib2 support:
FbDesk can now load the following formats:
xpm, png, jpg, jfi, jfif, pnm, ppm, pgm, pbm, pam,
tga, gif and bmp.
* Added new resource:
fbdesk.textBackground: <color>
* Added new resource:
fbdesk.lockPositions: <bool>
This will lock the position of the icons (also available in the menu)
* Fixed gcc-4.1 compile problems
(Thanks Andreas Bierfer andreas.bierfert at lowlatency.de )
Changes for 1.2.2:
* Fixed --enable/disable-xpm configure option (Thanks Mathias Gumz)
configure.in
Diffstat (limited to 'x11/fbdesk/patches')
-rw-r--r-- | x11/fbdesk/patches/patch-aa | 14 | ||||
-rw-r--r-- | x11/fbdesk/patches/patch-ab | 7 |
2 files changed, 10 insertions, 11 deletions
diff --git a/x11/fbdesk/patches/patch-aa b/x11/fbdesk/patches/patch-aa index ada63700d18..14ba2ea8a5f 100644 --- a/x11/fbdesk/patches/patch-aa +++ b/x11/fbdesk/patches/patch-aa @@ -1,14 +1,14 @@ -$NetBSD: patch-aa,v 1.1 2004/09/24 19:06:39 reed Exp $ +$NetBSD: patch-aa,v 1.2 2008/05/10 16:19:16 obache Exp $ ---- ./src/FbTk/Font.cc.orig Mon Sep 20 03:45:01 2004 -+++ ./src/FbTk/Font.cc -@@ -230,7 +230,9 @@ bool Font::m_utf8mode = false; +--- src/FbTk/Font.cc.orig 2006-03-25 11:51:33.000000000 +0000 ++++ src/FbTk/Font.cc +@@ -180,7 +180,9 @@ bool Font::s_utf8mode = false; - // some initialisation for using fonts - void fontInit() { + void Font::init() { + // must be set before the first XFontSet is created +#ifdef HAVE_SETLOCALE setlocale(LC_CTYPE, ""); +#endif //HAVE_SETLOCALE } - Font::Font(const char *name, bool antialias): + void Font::shutdown() { diff --git a/x11/fbdesk/patches/patch-ab b/x11/fbdesk/patches/patch-ab index 72e04b6e86b..3a8e4df5a2c 100644 --- a/x11/fbdesk/patches/patch-ab +++ b/x11/fbdesk/patches/patch-ab @@ -1,10 +1,9 @@ -$NetBSD: patch-ab,v 1.1 2004/09/24 19:06:39 reed Exp $ +$NetBSD: patch-ab,v 1.2 2008/05/10 16:19:16 obache Exp $ ---- src/FbTk/FbPixmap.cc.orig Mon Sep 20 03:26:19 2004 +--- src/FbTk/FbPixmap.cc.orig 2006-03-25 11:47:10.000000000 +0000 +++ src/FbTk/FbPixmap.cc @@ -23,2 +23,4 @@ - + +#include <stdio.h> + #include "FbPixmap.hh" - |