diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2005-12-28 20:04:24 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2005-12-28 20:04:24 +0000 |
commit | f1ae6ac54ba587173101f6bef77f25beadc137a5 (patch) | |
tree | 57c15006b1d9148f9540a8219b4e47d9213bb46f /x11-misc/xfe/files | |
parent | Version bump. 0.2.4 stable on x86. (diff) | |
download | gentoo-2-f1ae6ac54ba587173101f6bef77f25beadc137a5.tar.gz gentoo-2-f1ae6ac54ba587173101f6bef77f25beadc137a5.tar.bz2 gentoo-2-f1ae6ac54ba587173101f6bef77f25beadc137a5.zip |
Add patch to fix compilation with gcc-4 by Brian Merrill <bmerrill AT sfcn DOT org>; bug #111321
(Portage version: 2.1_pre2)
Diffstat (limited to 'x11-misc/xfe/files')
-rw-r--r-- | x11-misc/xfe/files/xfe-0.84-gcc4.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-misc/xfe/files/xfe-0.84-gcc4.patch b/x11-misc/xfe/files/xfe-0.84-gcc4.patch new file mode 100644 index 000000000000..baa97ed5a9d1 --- /dev/null +++ b/x11-misc/xfe/files/xfe-0.84-gcc4.patch @@ -0,0 +1,11 @@ +--- xfe-0.84/src/FilePanel.cc 2005-11-02 23:30:56.000000000 -0700 ++++ xfe-0.84/src/FilePanel.cc 2005-11-02 23:29:37.000000000 -0700 +@@ -296,7 +296,7 @@ + { + FXString buf, filename, filepath; + +- int item= (int) ptr; ++ long item= (long) ptr; + if(item > -1) + { + // File name and path |