1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/vietnamese/vnelvis/files/patch-03
David E. O'Brien b93ba8e95c VNElvis is a clone of vi/ex (the standard UNIX editor) that allows the
displaying and editing of documents in the Vietnamese 8-bit VISCII (VIetnamese
Standard Code for Information Interchange) data format using the 7-bit VIQR
(VIetnamese Quoted Readable) input method.
1996-12-06 12:37:38 +00:00

27 lines
606 B
Plaintext

--- config.h.orig Wed Dec 5 08:50:51 1990
+++ config.h Wed Dec 4 23:34:15 1996
@@ -18,7 +18,9 @@
/* BSD UNIX? */
#ifdef bsd
-# define BSD 1
+/* # define BSD 1 */
+/* BSD is defined in <sys/param.h> so just get it from there */
+# include <sys/param.h>
#endif
/* Microsoft C: sorry, Watcom does the same thing */
@@ -127,6 +129,12 @@
#if COHERENT
# define CREDIT "Ported to Coherent by Esa Ahola"
+#endif
+
+#if BSD
+# if (BSD >= 199306)
+# define CREDIT "Ported to 4.4BSD by David O'Brien"
+# endif
#endif
/*************************** functions depending on OS *********************/