blob: 33f1d887263cce13cc490d20bb39461dd5aab276 (
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
|
--- configure.orig Fri Oct 16 06:49:05 1992
+++ configure Mon Jul 8 19:39:32 1996
@@ -1041,8 +1041,10 @@
echo checking for /proc file system
- if test -r /proc ; then DEFS="$DEFS -DHAVE_PROC_FS=1"
- fi
+# if test -r /proc ; then DEFS="$DEFS -DHAVE_PROC_FS=1"
+# fi
+
+ DEFS="$DEFS -D_ANSI_SOURCE"
@@ -1071,8 +1073,9 @@
- echo checking for /usr/mail or /usr/spool/mail
+ echo checking for /usr/mail, /var/mail or /usr/spool/mail
if test -d /usr/mail ; then MAILDIR=/usr/mail
+ elif test -d /var/mail ; then MAILDIR=/var/mail
else MAILDIR=/usr/spool/mail
fi
|