summaryrefslogtreecommitdiff
path: root/games/dangerdeep/files/patch-src__mutex.h
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2021-01-01 10:11:34 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2021-01-01 10:11:34 +0000
commit26b4c8f71f91d22e081b27814782686edde0c90a (patch)
tree1c321c39372c25d8634e75b5c8e08edc676b296d /games/dangerdeep/files/patch-src__mutex.h
parentNew port: math/py-optuna: A hyperparameter optimization framework (diff)
Revert r559792 to unbreak INDEX and bulk -a
It seems a lot of reverse dependencies were missed With hat: portmgr
Notes
Notes: svn path=/head/; revision=559822
Diffstat (limited to 'games/dangerdeep/files/patch-src__mutex.h')
-rw-r--r--games/dangerdeep/files/patch-src__mutex.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/games/dangerdeep/files/patch-src__mutex.h b/games/dangerdeep/files/patch-src__mutex.h
new file mode 100644
index 000000000000..e769fdb33b8d
--- /dev/null
+++ b/games/dangerdeep/files/patch-src__mutex.h
@@ -0,0 +1,20 @@
+--- ./src/mutex.h.orig 2007-06-11 11:16:23.000000000 -0400
++++ ./src/mutex.h 2014-08-11 09:59:15.000000000 -0400
+@@ -58,7 +58,7 @@
+ class mutex_locker
+ {
+ protected:
+- mutex& mymutex;
++ ::mutex& mymutex;
+ private:
+ mutex_locker();
+ mutex_locker(const mutex_locker& );
+@@ -67,7 +67,7 @@
+ /// create mutex locker
+ ///@param mtx - mutex to lock
+ ///@note will instantly lock the mutex that was given as parameter
+- mutex_locker(mutex& mtx) : mymutex(mtx) { mymutex.lock(); }
++ mutex_locker(::mutex& mtx) : mymutex(mtx) { mymutex.lock(); }
+
+ /// destroy mutex locker
+ ///@note will unlock the mutex that was given to the constructor