Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/chinese/celvis/files/patch-config.h
16135 views
1
--- config.h.orig Tue Nov 6 11:53:55 1990
2
+++ config.h Thu Aug 15 05:42:16 1996
3
@@ -5,6 +5,10 @@
4
*/
5
6
/*************************** autoconf section ************************/
7
+/* Can we tell a little more about this system? */
8
+#ifdef _HAVE_PARAM_H
9
+# include <sys/param.h>
10
+#endif
11
12
/* standard unix V (?) */
13
#ifdef M_SYSV
14
@@ -175,9 +179,15 @@
15
#endif
16
17
/******************* Names of files and environment vars **********************/
18
+#if (defined(BSD) && (BSD >= 199103))
19
+# define TMPDIR "/var/tmp" /* directory where temp files live */
20
+# define COMPILED_BY "{Free,Net,Open,4.4,4.3/Reno}BSD (ported by David O'Brien)"
21
+#endif
22
23
#if ANY_UNIX
24
-# define TMPDIR "/usr/tmp" /* directory where temp files live */
25
+# ifndef TMPDIR
26
+# define TMPDIR "/usr/tmp" /* directory where temp files live */
27
+# endif
28
# define TMPNAME "%s/elvt%04x%03x" /* temp file */
29
# define CUTNAME "%s/elvc%04x%03x" /* cut buffer's temp file */
30
# define EXRC ".exrc" /* init file in current directory */
31
32