blob: ca841f2f5c76820c9a30ec9124ef18577d330295 (
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
|
--- config.h.orig Tue Nov 6 11:53:55 1990
+++ config.h Thu Aug 15 05:42:16 1996
@@ -5,6 +5,10 @@
*/
/*************************** autoconf section ************************/
+/* Can we tell a little more about this system? */
+#ifdef _HAVE_PARAM_H
+# include <sys/param.h>
+#endif
/* standard unix V (?) */
#ifdef M_SYSV
@@ -175,9 +179,15 @@
#endif
/******************* Names of files and environment vars **********************/
+#if (defined(BSD) && (BSD >= 199103))
+# define TMPDIR "/var/tmp" /* directory where temp files live */
+# define COMPILED_BY "{Free,Net,Open,4.4,4.3/Reno}BSD (ported by David O'Brien)"
+#endif
#if ANY_UNIX
-# define TMPDIR "/usr/tmp" /* directory where temp files live */
+# ifndef TMPDIR
+# define TMPDIR "/usr/tmp" /* directory where temp files live */
+# endif
# define TMPNAME "%s/elvt%04x%03x" /* temp file */
# define CUTNAME "%s/elvc%04x%03x" /* cut buffer's temp file */
# define EXRC ".exrc" /* init file in current directory */
|