summaryrefslogtreecommitdiff
path: root/textproc/nfbtrans/files/patch-ac
blob: 425a44de9925e8266a0c778444ab6589bd8e79b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- nfbpatch.c.orig	Thu Feb  6 12:00:00 1997
+++ nfbpatch.c	Sun Aug 30 05:44:36 1998
@@ -31,9 +31,11 @@
 #include <unistd.h>
 
 #define CASE_SHIFT 32   /* diference between upper and lower case */
+#ifndef freebsd
 #define SYSVR4     /* use with gcc and solaris 2.1 see getpgrp. Also defines
                     * usleep.  Wasn't able to link with /usr/ucblib/libucb.a
                     * Really no need for delay anyway */
+#endif
 #ifdef ultrix
 #define ECHOCTL TCTLECH
 #endif
@@ -97,7 +99,7 @@
   int i;
 
   i = tcgetpgrp(0);/* Use stdin as the file descriptor */
-#ifdef SYSVR4
+#if defined(SYSVR4) || defined(freebsd)
   if (i == getpgrp())
     return (1);
 #else