summaryrefslogtreecommitdiff
path: root/parallel
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2005-11-26 21:19:20 +0000
committermarkd <markd@pkgsrc.org>2005-11-26 21:19:20 +0000
commit24ab167262d10e10bc926bf0a7fee1072a86e9d0 (patch)
treed4f0fac34666dfb9c02ff9905d1343df9cb753b3 /parallel
parentd5ad1a67a837fb46fc978420da88111859b603b4 (diff)
downloadpkgsrc-24ab167262d10e10bc926bf0a7fee1072a86e9d0.tar.gz
Fix build on NetBSD-current of the included tcsh in the same way that
tron fixed the actual tcsh package.
Diffstat (limited to 'parallel')
-rw-r--r--parallel/sge/distinfo3
-rw-r--r--parallel/sge/patches/patch-bi22
2 files changed, 24 insertions, 1 deletions
diff --git a/parallel/sge/distinfo b/parallel/sge/distinfo
index af25fa90893..23334121133 100644
--- a/parallel/sge/distinfo
+++ b/parallel/sge/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.4 2005/02/24 12:23:31 agc Exp $
+$NetBSD: distinfo,v 1.5 2005/11/26 21:19:20 markd Exp $
SHA1 (sge-5.3p6.tar.gz) = be0ff4ea59d14a1186e5fd35987df6f15fbc21fe
RMD160 (sge-5.3p6.tar.gz) = 847bb04de3b8dff9b84421cb59fb3618b5e60779
@@ -37,3 +37,4 @@ SHA1 (patch-be) = b195148431d2225abe937934608959d94dd9b10a
SHA1 (patch-bf) = 65c9d44a435802be2c209260bbd5c78c60560298
SHA1 (patch-bg) = d0d25bafcfd3ac60f21c82df51648811bd6b9b64
SHA1 (patch-bh) = cbe5e126b8cff831361c0cc6957e1c282d0d2aa7
+SHA1 (patch-bi) = e1e383801e288537ae42ea40d24cd9feec136211
diff --git a/parallel/sge/patches/patch-bi b/parallel/sge/patches/patch-bi
new file mode 100644
index 00000000000..06575f79db1
--- /dev/null
+++ b/parallel/sge/patches/patch-bi
@@ -0,0 +1,22 @@
+$NetBSD: patch-bi,v 1.1 2005/11/26 21:19:20 markd Exp $
+
+--- source/3rdparty/qtcsh/tc.sig.h.orig 2001-07-18 23:06:05.000000000 +1200
++++ source/3rdparty/qtcsh/tc.sig.h
+@@ -61,7 +61,7 @@
+ /*
+ * sigvec is not the same everywhere
+ */
+-# if defined(_SEQUENT_) || (defined(_POSIX_SOURCE) && !defined(hpux))
++# if defined(_SEQUENT_) || (defined(_POSIX_SOURCE) && !defined(hpux)) || defined(__NetBSD__)
+ # define HAVE_SIGVEC
+ # define mysigvec(a, b, c) sigaction(a, b, c)
+ typedef struct sigaction sigvec_t;
+@@ -75,7 +75,7 @@ typedef struct sigaction sigvec_t;
+ # endif
+ # define sv_handler sa_handler
+ # define sv_flags sa_flags
+-# endif /* _SEQUENT || (_POSIX_SOURCE && !hpux) */
++# endif /* _SEQUENT || (_POSIX_SOURCE && !hpux) || __NetBSD__ */
+
+ # ifdef hpux
+ # define HAVE_SIGVEC