Path: blob/main/chinese/celvis/files/patch-config.h
16135 views
--- config.h.orig Tue Nov 6 11:53:55 19901+++ config.h Thu Aug 15 05:42:16 19962@@ -5,6 +5,10 @@3*/45/*************************** autoconf section ************************/6+/* Can we tell a little more about this system? */7+#ifdef _HAVE_PARAM_H8+# include <sys/param.h>9+#endif1011/* standard unix V (?) */12#ifdef M_SYSV13@@ -175,9 +179,15 @@14#endif1516/******************* Names of files and environment vars **********************/17+#if (defined(BSD) && (BSD >= 199103))18+# define TMPDIR "/var/tmp" /* directory where temp files live */19+# define COMPILED_BY "{Free,Net,Open,4.4,4.3/Reno}BSD (ported by David O'Brien)"20+#endif2122#if ANY_UNIX23-# define TMPDIR "/usr/tmp" /* directory where temp files live */24+# ifndef TMPDIR25+# define TMPDIR "/usr/tmp" /* directory where temp files live */26+# endif27# define TMPNAME "%s/elvt%04x%03x" /* temp file */28# define CUTNAME "%s/elvc%04x%03x" /* cut buffer's temp file */29# define EXRC ".exrc" /* init file in current directory */303132