1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/lang/elk/files/patch-af
Steve Price a42efa8240 Allow the value of CC to be overridden.
PR:		15397
Submitted by:	James Andariese <james@ja.ath.cx>
1999-12-23 18:50:24 +00:00

20 lines
433 B
Plaintext

--- src/print.c.orig Thu Apr 4 07:25:04 1996
+++ src/print.c Sun Dec 12 16:29:07 1999
@@ -6,6 +6,7 @@
#include <errno.h>
#include <ctype.h>
#include <varargs.h>
+#include <sys/param.h>
#ifdef FLUSH_TIOCFLUSH
# include <sys/ioctl.h>
@@ -556,7 +557,7 @@
register c;
char buf[256];
extern sys_nerr;
-#ifndef __bsdi__
+#if !(defined(BSD) && (BSD >= 199306))
extern char *sys_errlist[];
#endif
GC_Node;