diff options
author | Renato Botelho <garga@FreeBSD.org> | 2009-12-21 14:53:02 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2009-12-21 14:53:02 +0000 |
commit | 65ba6801eb5b24ce94fd59adafa379d2d41a2ae6 (patch) | |
tree | dc505a8a90a45d2235675330667734201265d372 /editors | |
parent | 2698bcd8c264b79e44188435a75b2607296b5443 (diff) | |
download | ports-65ba6801eb5b24ce94fd59adafa379d2d41a2ae6.tar.gz ports-65ba6801eb5b24ce94fd59adafa379d2d41a2ae6.zip |
Notes
Diffstat (limited to 'editors')
-rw-r--r-- | editors/jed/Makefile | 3 | ||||
-rw-r--r-- | editors/jed/files/patch-src_unix.c | 24 |
2 files changed, 26 insertions, 1 deletions
diff --git a/editors/jed/Makefile b/editors/jed/Makefile index 3a9a0c634e57..3ff57ca774e7 100644 --- a/editors/jed/Makefile +++ b/editors/jed/Makefile @@ -7,6 +7,7 @@ PORTNAME= jed PORTVERSION= 0.99.19 +PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= ftp://space.mit.edu/pub/davis/jed/v${PORTVERSION:R}/ \ ftp://ftp.uni-stuttgart.de/pub/unix/misc/slang/jed/v${PORTVERSION:R}/ \ @@ -17,7 +18,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:R}-${PORTVERSION:E} MAINTAINER= garga@FreeBSD.org COMMENT= A SLang-based text editor -LIB_DEPENDS= slang.2:${PORTSDIR}/devel/libslang2 +LIB_DEPENDS= slang.2:${PORTSDIR}/devel/libslang2 CONFLICTS= jed-devel-[0-9]* diff --git a/editors/jed/files/patch-src_unix.c b/editors/jed/files/patch-src_unix.c new file mode 100644 index 000000000000..c567e6d14229 --- /dev/null +++ b/editors/jed/files/patch-src_unix.c @@ -0,0 +1,24 @@ +--- src/unix.c ++++ src/unix.c +@@ -211,8 +211,19 @@ static void set_process_group (void) + { + pid_t pid = getpid (); + Startup_PGID = getpgid (pid); +- (void) tcsetpgrp (Read_FD, pid); +- (void) setpgid (pid, pid); ++ if (-1 == tcsetpgrp (Read_FD, pid)) ++ { ++ fprintf (stderr, "tcsetpgrp failed\n"); ++ Terminal_PGID = -1; ++ return; ++ } ++ if (-1 == setpgid (pid, pid)) ++ { ++ fprintf (stderr, "setpgid failed\n"); ++ (void) tcsetpgrp (Read_FD, Startup_PGID); ++ Terminal_PGID = -1; ++ return; ++ } + } + #endif + } |