summaryrefslogtreecommitdiff
path: root/x11/xterm
diff options
context:
space:
mode:
authorminskim <minskim>2004-10-16 21:47:37 +0000
committerminskim <minskim>2004-10-16 21:47:37 +0000
commitea87020cf1a3276b15b8d454ca82cacea691a7f8 (patch)
treeb229b8068c58816de3ac2c91dd7ebe5c982c7797 /x11/xterm
parente46245734cb982aebdfec07695a9f91a6d9fd9ad (diff)
downloadpkgsrc-ea87020cf1a3276b15b8d454ca82cacea691a7f8.tar.gz
Add patch missed in the previous commit, which replaces setpgrp with
setpgid when setpgrp is not available.
Diffstat (limited to 'x11/xterm')
-rw-r--r--x11/xterm/distinfo3
-rw-r--r--x11/xterm/patches/patch-ad15
2 files changed, 17 insertions, 1 deletions
diff --git a/x11/xterm/distinfo b/x11/xterm/distinfo
index e90978d0971..d13f465ed31 100644
--- a/x11/xterm/distinfo
+++ b/x11/xterm/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.4 2004/10/16 18:19:54 minskim Exp $
+$NetBSD: distinfo,v 1.5 2004/10/16 21:47:37 minskim Exp $
SHA1 (xterm-196/xterm.tar.gz) = 7e1493d2578cb8d1d6038108e48aad44f40e2a61
Size (xterm-196/xterm.tar.gz) = 678177 bytes
SHA1 (patch-aa) = 4d8b73c8f7c6720c677dd22c8bf91a7c3cc7ce5b
SHA1 (patch-ab) = bce28bf5035f542f1f352cda77bbab90d1aa3705
SHA1 (patch-ac) = d5352d7b3cd08f1529f3eead38e139ffcd0a21af
+SHA1 (patch-ad) = 1270428c21da4206a6cbd5e0384bfc5f4797acfc
diff --git a/x11/xterm/patches/patch-ad b/x11/xterm/patches/patch-ad
new file mode 100644
index 00000000000..70985cc411f
--- /dev/null
+++ b/x11/xterm/patches/patch-ad
@@ -0,0 +1,15 @@
+$NetBSD: patch-ad,v 1.1 2004/10/16 21:47:37 minskim Exp $
+
+--- main.c.orig Sun Aug 15 16:07:59 2004
++++ main.c
+@@ -283,6 +283,10 @@ ttyslot()
+
+ #else
+
++#ifndef HAVE_SETPGRP
++#define setpgrp setpgid
++#endif
++
+ #ifndef linux
+ #ifndef VMS
+ #ifndef USE_POSIX_TERMIOS