diff options
author | cy <cy@FreeBSD.org> | 2004-10-29 06:33:41 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2004-10-29 06:33:41 +0800 |
commit | e4b337cdeaa81f69520badb1d160f1be543b616f (patch) | |
tree | fd8966a54d62563d2cc0e87f329ee42b9ed1e9dd /security | |
parent | feba2332d7e87b10da0913907131a4b58f5f5bcf (diff) | |
download | freebsd-ports-gnome-e4b337cdeaa81f69520badb1d160f1be543b616f.tar.gz freebsd-ports-gnome-e4b337cdeaa81f69520badb1d160f1be543b616f.tar.zst freebsd-ports-gnome-e4b337cdeaa81f69520badb1d160f1be543b616f.zip |
Repair handling of ptys.
Diffstat (limited to 'security')
-rw-r--r-- | security/sudosh/Makefile | 1 | ||||
-rw-r--r-- | security/sudosh/files/patch-src::sudosh.c | 42 | ||||
-rw-r--r-- | security/sudosh2/Makefile | 1 | ||||
-rw-r--r-- | security/sudosh2/files/patch-src::sudosh.c | 42 | ||||
-rw-r--r-- | security/sudosh3/Makefile | 1 | ||||
-rw-r--r-- | security/sudosh3/files/patch-src::sudosh.c | 42 |
6 files changed, 129 insertions, 0 deletions
diff --git a/security/sudosh/Makefile b/security/sudosh/Makefile index 67496042c3ce..cd58476af25a 100644 --- a/security/sudosh/Makefile +++ b/security/sudosh/Makefile @@ -7,6 +7,7 @@ PORTNAME= sudosh PORTVERSION= 1.4.1 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME:S/_/-/} diff --git a/security/sudosh/files/patch-src::sudosh.c b/security/sudosh/files/patch-src::sudosh.c new file mode 100644 index 000000000000..9f7d3a914cb3 --- /dev/null +++ b/security/sudosh/files/patch-src::sudosh.c @@ -0,0 +1,42 @@ +--- src/sudosh.c.orig Tue Oct 26 18:01:24 2004 ++++ src/sudosh.c Thu Oct 28 15:18:50 2004 +@@ -75,6 +75,12 @@ + #define SIGCHLD SIGCLD + #endif + ++#ifdef __FreeBSD__ ++#include <sys/types.h> ++#include <sys/ioctl.h> ++#include <libutil.h> ++#endif ++ + static struct termios termorig; + static struct winsize winorig; + +@@ -377,15 +383,24 @@ + { + if ((p->mfd = open ("/dev/ptc", O_RDWR)) == -1) + { +- perror ("Cannot open cloning master pty"); +- return -1; ++#ifdef __FreeBSD__ ++ if (openpty(&p->mfd, &p->sfd, sname, NULL, NULL) == -1) ++ { ++#endif ++ perror ("Cannot open cloning master pty"); ++ return -1; ++#ifdef __FreeBSD__ ++ } ++#endif + } + } + + (void) unlockpt (p->mfd); + (void) grantpt (p->mfd); + ++#ifndef __FreeBSD__ + sname = (char *) ptsname (p->mfd); ++#endif + + if ((p->sfd = open (sname, O_RDWR)) == -1) + { diff --git a/security/sudosh2/Makefile b/security/sudosh2/Makefile index 67496042c3ce..cd58476af25a 100644 --- a/security/sudosh2/Makefile +++ b/security/sudosh2/Makefile @@ -7,6 +7,7 @@ PORTNAME= sudosh PORTVERSION= 1.4.1 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME:S/_/-/} diff --git a/security/sudosh2/files/patch-src::sudosh.c b/security/sudosh2/files/patch-src::sudosh.c new file mode 100644 index 000000000000..9f7d3a914cb3 --- /dev/null +++ b/security/sudosh2/files/patch-src::sudosh.c @@ -0,0 +1,42 @@ +--- src/sudosh.c.orig Tue Oct 26 18:01:24 2004 ++++ src/sudosh.c Thu Oct 28 15:18:50 2004 +@@ -75,6 +75,12 @@ + #define SIGCHLD SIGCLD + #endif + ++#ifdef __FreeBSD__ ++#include <sys/types.h> ++#include <sys/ioctl.h> ++#include <libutil.h> ++#endif ++ + static struct termios termorig; + static struct winsize winorig; + +@@ -377,15 +383,24 @@ + { + if ((p->mfd = open ("/dev/ptc", O_RDWR)) == -1) + { +- perror ("Cannot open cloning master pty"); +- return -1; ++#ifdef __FreeBSD__ ++ if (openpty(&p->mfd, &p->sfd, sname, NULL, NULL) == -1) ++ { ++#endif ++ perror ("Cannot open cloning master pty"); ++ return -1; ++#ifdef __FreeBSD__ ++ } ++#endif + } + } + + (void) unlockpt (p->mfd); + (void) grantpt (p->mfd); + ++#ifndef __FreeBSD__ + sname = (char *) ptsname (p->mfd); ++#endif + + if ((p->sfd = open (sname, O_RDWR)) == -1) + { diff --git a/security/sudosh3/Makefile b/security/sudosh3/Makefile index 67496042c3ce..cd58476af25a 100644 --- a/security/sudosh3/Makefile +++ b/security/sudosh3/Makefile @@ -7,6 +7,7 @@ PORTNAME= sudosh PORTVERSION= 1.4.1 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME:S/_/-/} diff --git a/security/sudosh3/files/patch-src::sudosh.c b/security/sudosh3/files/patch-src::sudosh.c new file mode 100644 index 000000000000..9f7d3a914cb3 --- /dev/null +++ b/security/sudosh3/files/patch-src::sudosh.c @@ -0,0 +1,42 @@ +--- src/sudosh.c.orig Tue Oct 26 18:01:24 2004 ++++ src/sudosh.c Thu Oct 28 15:18:50 2004 +@@ -75,6 +75,12 @@ + #define SIGCHLD SIGCLD + #endif + ++#ifdef __FreeBSD__ ++#include <sys/types.h> ++#include <sys/ioctl.h> ++#include <libutil.h> ++#endif ++ + static struct termios termorig; + static struct winsize winorig; + +@@ -377,15 +383,24 @@ + { + if ((p->mfd = open ("/dev/ptc", O_RDWR)) == -1) + { +- perror ("Cannot open cloning master pty"); +- return -1; ++#ifdef __FreeBSD__ ++ if (openpty(&p->mfd, &p->sfd, sname, NULL, NULL) == -1) ++ { ++#endif ++ perror ("Cannot open cloning master pty"); ++ return -1; ++#ifdef __FreeBSD__ ++ } ++#endif + } + } + + (void) unlockpt (p->mfd); + (void) grantpt (p->mfd); + ++#ifndef __FreeBSD__ + sname = (char *) ptsname (p->mfd); ++#endif + + if ((p->sfd = open (sname, O_RDWR)) == -1) + { |