diff options
-rw-r--r-- | devel/binutils/patches/patch-gold_system.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/binutils/patches/patch-gold_system.h b/devel/binutils/patches/patch-gold_system.h new file mode 100644 index 00000000000..c191e97fce5 --- /dev/null +++ b/devel/binutils/patches/patch-gold_system.h @@ -0,0 +1,13 @@ +$NetBSD: patch-gold_system.h,v 1.1 2014/05/27 09:56:33 joerg Exp $ + +--- gold/system.h.orig 2014-05-26 18:29:32.000000000 +0000 ++++ gold/system.h +@@ -105,7 +105,7 @@ struct hash<std::string> + { + size_t + operator()(std::string s) const +- { return __stl_hash_string(s.c_str()); } ++ { return __gnu_cxx::hash<const char *>()(s.c_str()); } + }; + + template<typename T> |