diff options
author | smb <smb@pkgsrc.org> | 2008-03-15 20:35:26 +0000 |
---|---|---|
committer | smb <smb@pkgsrc.org> | 2008-03-15 20:35:26 +0000 |
commit | ea5e99c442976ef64812fd31105876dc3e42da01 (patch) | |
tree | 42cf4938b54b6781b9d23092474ce3983338d5b9 /x11/stalonetray/patches | |
parent | f633e95062b22c5a455d351c3ffaf89c4da9ba89 (diff) | |
download | pkgsrc-ea5e99c442976ef64812fd31105876dc3e42da01.tar.gz |
Fix portability bug that caused spurious error message on NetBSD (patch
reported upstream).
Update to newest upstream version.
0.7.6 news
- fix bug with sticky mode under Openbox
- fix bug with dissappearing window under WindowMaker (sf.net bug #1858069)
- fix layout bug which prevented tray to shrink properly
- fix resizing bug when grow gravity seemed to be ignored
- fix regression: KDE icons are collected at startup again
- fix focus model so that it (more-or-less) matches ICCM
0.7.5 news
- fix silly bug with window states (sticky works now)
- code cleanup in xembed implementation
0.7.4 news
- fix sample rc file (Debian bug #446899)
- fix fallback support mode for KDE icons (now KDE icons
work in Xmonad)
- detect if stalonetrays` window is no longer toplevel
and do not try to fix geometry (fixes excessive CPU
usage as reported in Debian bug #444748)
0.7.3 news
- fix freedesktop.org icons support on amd64 (Debian bug #445056)
0.7.2 news
- fix typo in parameter name for maximal tray height (Debian bug #444717)
0.7.1 news:
- fix crash on invalid rc file (Debian bug #443543)
- fix occasional KDE icons dissapearance (sf.net bug #1676375)
0.7 release highlights:
- tinting and fuzzy edges
- layout improvements
- XEMBED imlementation fixes
- massive code cleanup
Diffstat (limited to 'x11/stalonetray/patches')
-rw-r--r-- | x11/stalonetray/patches/patch-pa | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/x11/stalonetray/patches/patch-pa b/x11/stalonetray/patches/patch-pa new file mode 100644 index 00000000000..149f9a98619 --- /dev/null +++ b/x11/stalonetray/patches/patch-pa @@ -0,0 +1,14 @@ +$NetBSD: patch-pa,v 1.1 2008/03/15 20:35:26 smb Exp $ + +--- src/settings.c.orig 2008-03-15 16:06:02.000000000 -0400 ++++ src/settings.c 2008-03-15 16:06:34.000000000 -0400 +@@ -535,7 +535,8 @@ + while (!feof(cfg)) { + lnum++; + if (fgets(buf, READ_BUF_SZ, cfg) == NULL) { +- if (errno) ERR(("read error (%s)\n", strerror(errno))); ++ if (ferror(cfg)) ++ ERR(("read error (%s)\n", strerror(errno))); + break; + } + |