$NetBSD: patch-ac,v 1.1 2008/07/27 20:14:14 dholland Exp $ --- hash_utils.h~ 2003-08-31 13:32:24.000000000 -0400 +++ hash_utils.h 2008-07-27 13:37:43.000000000 -0400 @@ -26,7 +26,7 @@ #else #if HAVE_EXT_HASH_MAP # include -# if (defined(__GNUC__) && (__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) +# if (defined(__GNUC__) && ((__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) || __GNUC__ > 3) using __gnu_cxx::hash_map; # else using std::hash_map; @@ -44,7 +44,7 @@ #else #if HAVE_EXT_HASH_SET # include -# if (defined(__GNUC__) && (__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) +# if (defined(__GNUC__) && ((__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) || __GNUC__ > 3) using __gnu_cxx::hash_set; # else using std::hash_set;