summaryrefslogtreecommitdiff
path: root/devel/ArX/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2007-06-15 22:50:15 +0000
committerwiz <wiz@pkgsrc.org>2007-06-15 22:50:15 +0000
commite47f795f01db947e4431f86d51ab8e0bb37be36f (patch)
tree6a9501b9a616576c9e120b35e561b0c667726993 /devel/ArX/patches
parent5d9f186f3f2b185bafdfed848a98f50c9de59081 (diff)
downloadpkgsrc-e47f795f01db947e4431f86d51ab8e0bb37be36f.tar.gz
Remove obsolete version of ArX -- current version is in devel/ArX2.
MAINTAINER says ok.
Diffstat (limited to 'devel/ArX/patches')
-rw-r--r--devel/ArX/patches/patch-aa16
-rw-r--r--devel/ArX/patches/patch-ab37
2 files changed, 0 insertions, 53 deletions
diff --git a/devel/ArX/patches/patch-aa b/devel/ArX/patches/patch-aa
deleted file mode 100644
index 7a9e1eecef0..00000000000
--- a/devel/ArX/patches/patch-aa
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2004/07/05 12:35:43 recht Exp $
-
---- src/arx/include/Spawn.hpp.orig 2004-04-21 22:44:08.000000000 +0200
-+++ src/arx/include/Spawn.hpp
-@@ -26,9 +26,10 @@
- #include <list>
- #include <string>
- #include "boost/filesystem/path.hpp"
--#include <unistd.h>
- #include <glib.h>
-
-+extern char **environ;
-+
- class Spawn
- {
- friend Spawn& operator<<(Spawn &s, const std::string &arg);
diff --git a/devel/ArX/patches/patch-ab b/devel/ArX/patches/patch-ab
deleted file mode 100644
index 8fcb3f07283..00000000000
--- a/devel/ArX/patches/patch-ab
+++ /dev/null
@@ -1,37 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2005/01/23 19:34:14 kristerw Exp $
-
---- src/arx/utility_functions/Spawn.cpp.orig Wed Apr 21 22:44:08 2004
-+++ src/arx/utility_functions/Spawn.cpp Sun Jan 23 20:30:02 2005
-@@ -25,6 +25,7 @@
- #include <string>
- #include <glib.h>
- #include <string.h>
-+#include <errno.h>
- #include "boost/filesystem/path.hpp"
- #include "arx_error.hpp"
-
-@@ -114,10 +115,13 @@
- if(child_pid)
- {
- /* This is the parent. */
-+ int res;
-
-- if(-1!=waitpid(child_pid,&exit_status,0) && result==TRUE)
-- {
-- if(WIFEXITED(exit_status))
-+ do {
-+ res=waitpid(child_pid,&exit_status,0);
-+ } while (res < 0 && errno == EINTR);
-+
-+ if ((res >= 0) && WIFEXITED(exit_status))
- {
- return_exit_status=WEXITSTATUS(exit_status);
- }
-@@ -125,7 +129,6 @@
- {
- result=FALSE;
- }
-- }
- }
- else
- {