diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2006-01-15 22:14:42 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2006-01-15 22:14:42 +0000 |
commit | d752c26f54c7cf01c6bf412e6ac7f6621275ae12 (patch) | |
tree | 72d435e6bee2e1413c5cc587c39ee859900b570c /net-libs/wvstreams/files | |
parent | Version bump, add support for honouring LINGUAS, avoid building and installin... (diff) | |
download | gentoo-2-d752c26f54c7cf01c6bf412e6ac7f6621275ae12.tar.gz gentoo-2-d752c26f54c7cf01c6bf412e6ac7f6621275ae12.tar.bz2 gentoo-2-d752c26f54c7cf01c6bf412e6ac7f6621275ae12.zip |
Fix gcc-4.1 patch by Gene Seto <geneseto AT hotmail DOT com>; bug #118734
(paludis 0.1.0 svn 68:104M)
Diffstat (limited to 'net-libs/wvstreams/files')
-rw-r--r-- | net-libs/wvstreams/files/wvstreams-4.2.1-gcc41.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/net-libs/wvstreams/files/wvstreams-4.2.1-gcc41.patch b/net-libs/wvstreams/files/wvstreams-4.2.1-gcc41.patch index 673343d99710..20b40b741aee 100644 --- a/net-libs/wvstreams/files/wvstreams-4.2.1-gcc41.patch +++ b/net-libs/wvstreams/files/wvstreams-4.2.1-gcc41.patch @@ -10,3 +10,52 @@ diff -Nru wvstreams-4.2.1.orig/include/wvhttppool.h wvstreams-4.2.1/include/wvht : linkname(_linkname), url(_url) {} }; +--- wvstreams-4.2.1.orig/include/uniconfkeybak.h 2006-01-06 19:52:09.000000000 -0400 ++++ wvstreams-4.2.1/include/uniconfkey.h 2006-01-06 19:52:48.000000000 -0400 +@@ -113,7 +113,7 @@ + bool iswild() const; + + /** Returns true if the key has a trailing slash. */ +- bool UniConfKey::hastrailingslash() const; ++ bool hastrailingslash() const; + + /** + * Returns the number of segments in this path. +--- wvstreams-4.2.1.orig/include/wvx509bak.h 2006-01-06 19:55:47.000000000 -0400 ++++ wvstreams-4.2.1/include/wvx509.h 2006-01-06 19:58:51.000000000 -0400 +@@ -349,19 +349,19 @@ + * Set the Certificate to use X509v3, since that's all modern + * PKI uses anyways :) + */ +- void WvX509Mgr::set_version(); ++ void set_version(); + + /** + * Get and set the keyUsage field. + */ +- WvString WvX509Mgr::get_key_usage(); +- void WvX509Mgr::set_key_usage(WvStringParm values); ++ WvString get_key_usage(); ++ void set_key_usage(WvStringParm values); + + /** + * Get and set the extendedKeyUsage field. + */ +- WvString WvX509Mgr::get_ext_key_usage(); +- void WvX509Mgr::set_ext_key_usage(WvStringParm values); ++ WvString get_ext_key_usage(); ++ void set_ext_key_usage(WvStringParm values); + + /** + * Return the Subject alt name if it exists, and WvString::null if +--- wvstreams-4.2.1.orig/include/wvstringbak.h 2006-01-12 00:28:17.000000000 -0400 ++++ wvstreams-4.2.1/include/wvstring.h 2006-01-12 00:28:39.000000000 -0400 +@@ -393,7 +393,7 @@ + + protected: + void copy_constructor(const WvFastString &s); +- inline void WvString::construct(const char *_str) ++ inline void construct(const char *_str) + { + link(&nullbuf, _str); + |