blob: c0b69d687620d11ebb73d7df5f55f250b48d5ae8 (
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
|
*** pico/os_unix.h.orig Thu Jun 13 00:47:23 1996
--- pico/os_unix.h Thu Jan 29 21:29:51 1998
***************
*** 122,133 ****
/*
* Place where mail gets delivered (for pico's new mail checking)
*/
#if defined(sv3) || defined(ct) || defined(isc) || defined(AUX) || defined(sgi)
#define MAILDIR "/usr/mail"
#else
#define MAILDIR "/usr/spool/mail"
#endif
!
/*
* What and where the tool that checks spelling is located. If this is
--- 122,136 ----
/*
* Place where mail gets delivered (for pico's new mail checking)
*/
+ #ifdef __FreeBSD__
+ #define MAILDIR "/var/mail"
+ #else
#if defined(sv3) || defined(ct) || defined(isc) || defined(AUX) || defined(sgi)
#define MAILDIR "/usr/mail"
#else
#define MAILDIR "/usr/spool/mail"
#endif
! #endif
/*
* What and where the tool that checks spelling is located. If this is
|