summaryrefslogtreecommitdiff
path: root/net/rmsg/files/patch-ac
blob: 201ca5602b93e5a1523a844eb434219a76a39dda (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
24
25
26
27
28
29
30
31
32
33
34
35
36
*** rmsg.h.orig	Mon Oct  9 13:17:57 1995
--- rmsg.h	Mon Oct  9 13:31:18 1995
***************
*** 11,16 ****
--- 11,20 ----
   * Last modified: Sat Aug 20 16:43:03 1988
   */
  
+ #ifdef _HAVE_PARAM_H
+ #include <sys/param.h>
+ #endif
+ 
  #if defined(USG5) || defined(SVR4)
  # define index strchr
  # define rindex strrchr
***************
*** 46,54 ****
--- 50,67 ----
  #define PATHLEN 1024
  #define LINELEN 1024
  
+ 
+ #if (defined(BSD) && (BSD >= 199103))
+ #include <paths.h>
+ #include <utmp.h>
+ #define UTMP _PATH_UTMP
+ #define UTMP_TTY_SIZE	UT_LINESIZE
+ #define UTMP_NAME_SIZE	UT_NAMESIZE
+ #else
  #define UTMP "/etc/utmp"
  #define UTMP_TTY_SIZE 8
  #define UTMP_NAME_SIZE 8
+ #endif
  
  struct command {
       char *token;               /* Command name, e.g. msglast */