From a679e98e64a7c69d65578b11ef072e1115d536ad Mon Sep 17 00:00:00 2001 From: naruse Date: Wed, 6 Mar 2019 09:48:39 +0000 Subject: [PATCH] Fix PTY.open on OpenBSD [Bug #15607] From: Jeremy Evans git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/pty/pty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pty/pty.c b/ext/pty/pty.c index 10eb0ac312..7b9df4b5b9 100644 --- a/ext/pty/pty.c +++ b/ext/pty/pty.c @@ -247,7 +247,7 @@ get_device_once(int *master, int *slave, char SlaveName[DEVICELEN], int nomesg, int masterfd = -1, slavefd = -1; char *slavedevice; -#if defined(__sun) || (defined(__FreeBSD__) && __FreeBSD_version < 902000) +#if defined(__sun) || defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD_version < 902000) /* workaround for Solaris 10: grantpt() doesn't work if FD_CLOEXEC is set. [ruby-dev:44688] */ /* FreeBSD 9.2 or later supports O_CLOEXEC * http://www.freebsd.org/cgi/query-pr.cgi?pr=162374 */