aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-misc/salome-med/files/salome-med-3.2.6_boost-1.35.patch')
-rw-r--r--sci-misc/salome-med/files/salome-med-3.2.6_boost-1.35.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/sci-misc/salome-med/files/salome-med-3.2.6_boost-1.35.patch b/sci-misc/salome-med/files/salome-med-3.2.6_boost-1.35.patch
new file mode 100644
index 000000000..7425b13e9
--- /dev/null
+++ b/sci-misc/salome-med/files/salome-med-3.2.6_boost-1.35.patch
@@ -0,0 +1,20 @@
+--- src3.2.6_orig/MED_SRC_3.2.6/src/MEDWrapper/Base/MED_Wrapper.cxx 2008-09-04 21:10:27.000000000 +0200
++++ src3.2.6/MED_SRC_3.2.6/src/MEDWrapper/Base/MED_Wrapper.cxx 2008-09-04 21:14:06.000000000 +0200
+@@ -23,7 +23,7 @@
+ ::TLockProxy(TWrapper* theWrapper):
+ myWrapper(theWrapper)
+ {
+- boost::detail::thread::lock_ops<TWrapper::TMutex>::lock(myWrapper->myMutex);
++ myWrapper->myMutex.lock();
+ INITMSG(MYDEBUG,"TLockProxy() - this -"<<this<<"; myWrapper = "<<myWrapper<<endl);
+ }
+
+@@ -31,7 +31,7 @@
+ ::~TLockProxy()
+ {
+ INITMSG(MYDEBUG,"~TLockProxy() - this -"<<this<<"; myWrapper = "<<myWrapper<<endl);
+- boost::detail::thread::lock_ops<TWrapper::TMutex>::unlock(myWrapper->myMutex);
++ myWrapper->myMutex.unlock();
+ }
+
+ TWrapper*