aboutsummaryrefslogtreecommitdiff
path: root/devel/ice/files/patch-cpp-src-slice2freezej-Main.cpp
diff options
context:
space:
mode:
authorBoris Samorodov <bsam@FreeBSD.org>2012-09-23 14:45:33 +0000
committerBoris Samorodov <bsam@FreeBSD.org>2012-09-23 14:45:33 +0000
commitc1436fa4e5e34530cd4ca97f9d1796dd47f64d19 (patch)
tree53e80749449d5d0989720db9cd5dbd8f5215fa9a /devel/ice/files/patch-cpp-src-slice2freezej-Main.cpp
parent4f1027b6beba9e125e17e296b6c4a6eaf9ea0b36 (diff)
downloadports-c1436fa4e5e34530cd4ca97f9d1796dd47f64d19.tar.gz
ports-c1436fa4e5e34530cd4ca97f9d1796dd47f64d19.zip
Changes from the PR:
. fix built using Clang in C++11 mode and libc++ (-std=c++11 -stdlib=libc++); . incorporate a patch that fixes an assert bug in IceStrom; . adopt new-style options; While I'm here: . adopt new-style headers; . remove indefinite article form COMMENT; . remove library versions from LIB_DEPENDS. PR: ports/171643 Submitted by: Michael Gmelin <freebsd@grem.de> (maintainer)
Notes
Notes: svn path=/head/; revision=304742
Diffstat (limited to 'devel/ice/files/patch-cpp-src-slice2freezej-Main.cpp')
-rw-r--r--devel/ice/files/patch-cpp-src-slice2freezej-Main.cpp55
1 files changed, 55 insertions, 0 deletions
diff --git a/devel/ice/files/patch-cpp-src-slice2freezej-Main.cpp b/devel/ice/files/patch-cpp-src-slice2freezej-Main.cpp
new file mode 100644
index 000000000000..7612dccad7a6
--- /dev/null
+++ b/devel/ice/files/patch-cpp-src-slice2freezej-Main.cpp
@@ -0,0 +1,55 @@
+--- cpp.orig/src/slice2freezej/Main.cpp 2011-06-15 21:43:58.000000000 +0200
++++ cpp/src/slice2freezej/Main.cpp 2012-09-10 11:43:58.000000000 +0200
+@@ -26,7 +26,7 @@ using namespace IceUtilInternal;
+ namespace
+ {
+
+-IceUtil::Mutex* mutex = 0;
++IceUtil::Mutex* mtx = 0;
+ bool interrupted = false;
+
+ class Init
+@@ -35,13 +35,13 @@ public:
+
+ Init()
+ {
+- mutex = new IceUtil::Mutex;
++ mtx = new IceUtil::Mutex;
+ }
+
+ ~Init()
+ {
+- delete mutex;
+- mutex = 0;
++ delete mtx;
++ mtx = 0;
+ }
+ };
+
+@@ -52,7 +52,7 @@ Init init;
+ void
+ interruptedCallback(int signal)
+ {
+- IceUtilInternal::MutexPtrLock<IceUtil::Mutex> lock(mutex);
++ IceUtilInternal::MutexPtrLock<IceUtil::Mutex> lock(mtx);
+
+ interrupted = true;
+ }
+@@ -1828,7 +1828,7 @@ compile(int argc, char* argv[])
+ }
+
+ {
+- IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mutex);
++ IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mtx);
+
+ if(interrupted)
+ {
+@@ -1923,7 +1923,7 @@ compile(int argc, char* argv[])
+ u->destroy();
+
+ {
+- IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mutex);
++ IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mtx);
+
+ if(interrupted)
+ {