diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-02 10:07:49 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-02 10:07:49 +0000 |
commit | 38a0a8023026a77ded1e6de618b567c7b58e79a4 (patch) | |
tree | abf5fbbdc4b27a245ff76b9850f4eb6e73e4ba19 /sysutils/contool/files/patch-02 | |
parent | - Fix build with GCRYPT option by taking out -Werror (diff) |
Remove non staged ports without pending PR from s*
Notes
Notes:
svn path=/head/; revision=366980
Diffstat (limited to 'sysutils/contool/files/patch-02')
-rw-r--r-- | sysutils/contool/files/patch-02 | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/sysutils/contool/files/patch-02 b/sysutils/contool/files/patch-02 deleted file mode 100644 index 284753d0a871..000000000000 --- a/sysutils/contool/files/patch-02 +++ /dev/null @@ -1,28 +0,0 @@ ---- contool.c.orig Thu Feb 24 09:55:30 1994 -+++ contool.c Sun Jan 5 13:48:41 1997 -@@ -284,6 +284,9 @@ - EXPORT acquire_console() - - { int console; -+#if (defined(BSD) && (BSD >= 199306)) -+ int i; -+#endif - - #ifdef SVR4 - if (slave > 0) { -@@ -293,8 +296,15 @@ - abend("%s: could not attach to /dev/console: %s", program, sys_errlist[errno]); - } - #else -+#if (defined(BSD) && (BSD >= 199306)) -+ i=1; -+#endif - if (slave > 0) -+#if (defined(BSD) && (BSD >= 199306)) -+ if (ioctl(slave, TIOCCONS, &i) == -1) -+#else - if (ioctl(slave, TIOCCONS, NULL) == -1) -+#endif - abend("%s: could not attach to /dev/console: %s", program, sys_errlist[errno]); - #endif - } |