aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-third__party_swiftshader_src_Common_SharedLibrary.hpp
blob: 92efac1214380c656a5781f4ad146185285c0e18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- third_party/swiftshader/src/Common/SharedLibrary.hpp.orig	2022-02-07 13:39:41 UTC
+++ third_party/swiftshader/src/Common/SharedLibrary.hpp
@@ -97,7 +97,7 @@ void *loadLibrary(const std::string &libraryDirectory,
 
 	inline void *getLibraryHandle(const char *path)
 	{
-		#ifdef __ANDROID__
+		#if defined(__ANDROID__) || defined(__OpenBSD__) || defined(__FreeBSD__)
 			// bionic doesn't support RTLD_NOLOAD before L
 			return dlopen(path, RTLD_NOW | RTLD_LOCAL);
 		#else