summaryrefslogtreecommitdiff
path: root/cad/cider/files/patch-aq
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-12-29 21:32:14 +0000
committerSteve Price <steve@FreeBSD.org>1999-12-29 21:32:14 +0000
commitd38479ecaa8e529ea864064d910306a0d9e69615 (patch)
tree472d06677d7ff6f3e643981f56ddf63a3601282a /cad/cider/files/patch-aq
parent* Removed dependancy to gmake (diff)
* Do not set NO_WRKSUBDIR to yes. Specify WRKSRC.
* Respect CFLAGS. * Make less use of __FreeBSD__. * Use more system-defined make variables. PR: 15746 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=24270
Diffstat (limited to 'cad/cider/files/patch-aq')
-rw-r--r--cad/cider/files/patch-aq38
1 files changed, 38 insertions, 0 deletions
diff --git a/cad/cider/files/patch-aq b/cad/cider/files/patch-aq
new file mode 100644
index 000000000000..5ed2f0bb7940
--- /dev/null
+++ b/cad/cider/files/patch-aq
@@ -0,0 +1,38 @@
+--- spice/common/src/include/misc.h.orig Sat Jan 29 19:14:17 1994
++++ spice/common/src/include/misc.h Sun Dec 26 18:49:39 1999
+@@ -5,6 +5,10 @@
+ #ifndef MISC_H
+ #define MISC_H
+
++#if (defined(__unix__) || defined(unix)) && !defined(USG)
++#include <sys/param.h>
++#endif
++
+ #define BSIZE_SP 512
+
+ #ifdef HAS_EXIT1
+@@ -86,7 +90,9 @@
+ extern char *realloc();
+ extern char *getenv();
+ extern int errno;
++#if !(defined(BSD) && (BSD >= 199306))
+ extern char *sys_errlist[];
++#endif
+ extern char *getenv();
+ extern char *getwd();
+ extern int rand();
+@@ -109,12 +115,14 @@
+ # endif /* clearerr */
+ # endif /* HAS_CLEARERR */
+
++#if !(defined(BSD) && (BSD >= 199306))
+ # ifndef bzero
+ extern int bzero();
+ # endif
+ # ifndef bcopy
+ extern void bcopy();
+ # endif
++#endif
+
+ # ifndef index
+ # ifdef HAS_INDEX