freebsd-ports/benchmarks/postal/files/patch-bhmusers.h
Martin Wilke f060bf46c1 - Update to 0.73
- Use new options helper
- Update pkg-descr

PR:		187289
Submitted by:	ports fury
2014-03-11 02:36:27 +00:00

44 lines
720 B
C++

--- bhmusers.h.orig
+++ bhmusers.h
@@ -6,12 +6,16 @@
#include <string>
#include "conf.h"
+#if defined(_LIBCPP_VERSION)
+#include <unordered_map>
+#else
#ifdef HAVE_EXT_HASH_MAP
using namespace __gnu_cxx;
#include <ext/hash_map>
#else
#include <hash_map.h>
#endif
+#endif
#include "postal.h"
@@ -23,7 +27,12 @@
int sync_time;
} BHM_DATA;
+
+#if defined(_LIBCPP_VERSION)
+namespace std
+#else
namespace __gnu_cxx
+#endif
{
template<> struct hash< std::string >
{
@@ -34,7 +43,11 @@
};
}
+#if defined(_LIBCPP_VERSION)
+typedef std::unordered_map<string, BHM_DATA , hash<string> > NAME_MAP;
+#else
typedef hash_map<string, BHM_DATA , hash<string> > NAME_MAP;
+#endif
class BHMUsers
{