mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 10:18:09 -04:00
15 lines
584 B
C++
15 lines
584 B
C++
$NetBSD: patch-src_mongo_platform_random.cpp,v 1.1 2015/05/02 08:10:33 ryoon Exp $
|
|
|
|
Add NetBSD support.
|
|
--- src/mongo/platform/random.cpp.orig 2015-04-08 20:28:08.000000000 +0000
|
|
+++ src/mongo/platform/random.cpp
|
|
@@ -117,7 +117,7 @@ namespace mongo {
|
|
return new WinSecureRandom();
|
|
}
|
|
|
|
-#elif defined(__linux__) || defined(__sunos__) || defined(__APPLE__) || defined(__freebsd__)
|
|
+#elif defined(__linux__) || defined(__sunos__) || defined(__APPLE__) || defined(__freebsd__) || defined(__netbsd__)
|
|
|
|
class InputStreamSecureRandom : public SecureRandom {
|
|
public:
|