diff options
author | 2006-10-19 23:46:22 +0000 | |
---|---|---|
committer | 2006-10-19 23:46:22 +0000 | |
commit | 26652b6260aaa2ddebdc18347ce717fed4a25edc (patch) | |
tree | b5431d99e4a649573c8059bbd104c503ecd17d76 /net-irc/xchatosd/files | |
parent | Depend on 1.1.2 version of flac, as the 1.1.3 version changes API. (diff) | |
download | gentoo-2-26652b6260aaa2ddebdc18347ce717fed4a25edc.tar.gz gentoo-2-26652b6260aaa2ddebdc18347ce717fed4a25edc.tar.bz2 gentoo-2-26652b6260aaa2ddebdc18347ce717fed4a25edc.zip |
Fixing GCC4 wrt bug #140482 thanks to Ahmed Ammar for the patch
(Portage version: 2.1.2_pre3-r4)
Diffstat (limited to 'net-irc/xchatosd/files')
-rw-r--r-- | net-irc/xchatosd/files/digest-xchatosd-5.19 | 2 | ||||
-rw-r--r-- | net-irc/xchatosd/files/xchatosd-5.19-gcc4.patch | 26 |
2 files changed, 28 insertions, 0 deletions
diff --git a/net-irc/xchatosd/files/digest-xchatosd-5.19 b/net-irc/xchatosd/files/digest-xchatosd-5.19 index ff846e84be3f..fe44f016218b 100644 --- a/net-irc/xchatosd/files/digest-xchatosd-5.19 +++ b/net-irc/xchatosd/files/digest-xchatosd-5.19 @@ -1 +1,3 @@ MD5 d95091553dc19e32aefb03ec46ab641d xchatosd-5.19.tar.gz 10778 +RMD160 dc5c1aa226144cf77c1039d7f86112cdd3e3cb76 xchatosd-5.19.tar.gz 10778 +SHA256 664c769a01fa52226b8a8dd45ee28f26caf8dc4d4ecf88f5d66623f701480f6f xchatosd-5.19.tar.gz 10778 diff --git a/net-irc/xchatosd/files/xchatosd-5.19-gcc4.patch b/net-irc/xchatosd/files/xchatosd-5.19-gcc4.patch new file mode 100644 index 000000000000..cba347224e63 --- /dev/null +++ b/net-irc/xchatosd/files/xchatosd-5.19-gcc4.patch @@ -0,0 +1,26 @@ +--- xchatosd-5.19/my_xosd.h.orig 2006-07-15 14:12:55.000000000 +0100 ++++ xchatosd-5.19/my_xosd.h 2006-07-15 14:13:04.000000000 +0100 +@@ -8,8 +8,8 @@ + + class XOsd { + public: +- XOsd::XOsd(int); +- XOsd::~XOsd(); ++ XOsd(int); ++ ~XOsd(); + int setPos(string); + int setVOffset(int); + int setHOffset(int); +--- xchatosd-5.19/xchatosd_conf.h.orig 2006-07-15 14:05:09.000000000 +0100 ++++ xchatosd-5.19/xchatosd_conf.h 2006-07-15 14:05:40.000000000 +0100 +@@ -11,8 +11,8 @@ + + class XOsdConf { + public: +- XOsdConf::XOsdConf(); +- XOsdConf::~XOsdConf(); ++ XOsdConf(); ++ ~XOsdConf(); + int read(string); + int write(string); + int getiValue(string); |