aboutsummaryrefslogtreecommitdiff
path: root/devel/ice/files/patch-cpp-src-Ice-Service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'devel/ice/files/patch-cpp-src-Ice-Service.cpp')
-rw-r--r--devel/ice/files/patch-cpp-src-Ice-Service.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/devel/ice/files/patch-cpp-src-Ice-Service.cpp b/devel/ice/files/patch-cpp-src-Ice-Service.cpp
deleted file mode 100644
index b2fe13bb36bc..000000000000
--- a/devel/ice/files/patch-cpp-src-Ice-Service.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
---- cpp.orig/src/Ice/Service.cpp 2011-06-15 21:43:59.000000000 +0200
-+++ cpp/src/Ice/Service.cpp 2012-03-04 20:14:53.000000000 +0100
-@@ -2136,17 +2136,26 @@
- //
- // Associate stdin, stdout and stderr with /dev/null.
- //
-+#ifndef NDEBUG
- int fd;
-- fd = open("/dev/null", O_RDWR);
-+ fd =
-+#endif
-+ open("/dev/null", O_RDWR);
- assert(fd == 0);
- if(stdOut.empty())
- {
-- fd = dup2(0, 1);
-+#ifndef NDEBUG
-+ fd =
-+#endif
-+ dup2(0, 1);
- assert(fd == 1);
- }
- if(stdErr.empty())
- {
-- fd = dup2(1, 2);
-+#ifndef NDEBUG
-+ fd =
-+#endif
-+ dup2(1, 2);
- assert(fd == 2);
- }
- }