diff options
author | 2005-01-07 04:56:40 +0000 | |
---|---|---|
committer | 2005-01-07 04:56:40 +0000 | |
commit | 92819a3f27bd5d089285f2fc4106c5035de72619 (patch) | |
tree | bdebf498bf728bc639d4a5be045c6fd3ec9ac7a9 /x11-wm/aewm++/files | |
parent | Add minor patch by Eric Brown to SEE ALSO in manpages #70880. (Manifest recom... (diff) | |
download | gentoo-2-92819a3f27bd5d089285f2fc4106c5035de72619.tar.gz gentoo-2-92819a3f27bd5d089285f2fc4106c5035de72619.tar.bz2 gentoo-2-92819a3f27bd5d089285f2fc4106c5035de72619.zip |
Marked ~ppc for bug #76860 and added patch to fix compilation on gcc 3.4.
Diffstat (limited to 'x11-wm/aewm++/files')
-rw-r--r-- | x11-wm/aewm++/files/gcc-3.4.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-wm/aewm++/files/gcc-3.4.patch b/x11-wm/aewm++/files/gcc-3.4.patch new file mode 100644 index 000000000000..b739f71f89d3 --- /dev/null +++ b/x11-wm/aewm++/files/gcc-3.4.patch @@ -0,0 +1,11 @@ +--- windowmanager.cc.old 2005-01-07 15:21:55.949614120 +1100 ++++ windowmanager.cc 2005-01-07 15:19:17.414715088 +1100 +@@ -625,7 +625,7 @@ + { + if( (unsigned)current_desktop != ks - XK_1 ) + { +- (unsigned)current_desktop = ks - XK_1; ++ current_desktop = ks - XK_1; + goToDesktop(current_desktop); + } + } |