summaryrefslogtreecommitdiff
path: root/emulators/pcemu/files/patch-ac
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1995-05-29 13:46:42 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1995-05-29 13:46:42 +0000
commit444bcd3c2ed803274c8deafa2c3fa03f8a394653 (patch)
tree297f74782436a0f973b6b89d60c10f399af9a135 /emulators/pcemu/files/patch-ac
parentRemove comment about not being able to undefine a variable, as we *can* (diff)
This commit was manufactured by cvs2svn to create tagrelease/2.0.5
'RELENG_2_0_5_RELEASE'.
Diffstat (limited to 'emulators/pcemu/files/patch-ac')
-rw-r--r--emulators/pcemu/files/patch-ac54
1 files changed, 0 insertions, 54 deletions
diff --git a/emulators/pcemu/files/patch-ac b/emulators/pcemu/files/patch-ac
deleted file mode 100644
index 829aee16a4ef..000000000000
--- a/emulators/pcemu/files/patch-ac
+++ /dev/null
@@ -1,54 +0,0 @@
-*** mfs.c.orig Wed Jun 22 16:24:51 1994
---- mfs.c Tue Jan 24 18:41:20 1995
-***************
-*** 319,325 ****
---- 319,327 ----
- #include <errno.h>
- #include <sys/param.h>
- #include <stdlib.h>
-+ #if !__STDC__
- #include <malloc.h>
-+ #endif
-
- #ifdef SOLARIS
- #include <fcntl.h>
-***************
-*** 327,335 ****
- #endif
-
- #if defined(SGI) || defined(RS6000)
-! #include <sys/statfs.h>
- #else
-! #include <sys/vfs.h>
- #endif
-
-
---- 329,342 ----
- #endif
-
- #if defined(SGI) || defined(RS6000)
-! # include <sys/statfs.h>
- #else
-! # include <sys/param.h>
-! # if BSD >= 199103
-! # include <sys/mount.h>
-! # else
-! # include <sys/vfs.h>
-! # endif /* new BSD */
- #endif
-
-
-*** mfs.h.orig Wed Jun 22 16:24:51 1994
---- mfs.h Tue Jan 24 18:37:18 1995
-***************
-*** 45,51 ****
---- 45,53 ----
-
- #include "mfs_link.h"
-
-+ #if BSD < 199306 /* newer BSDs have it in <stdio.h> */
- extern char *sys_errlist[];
-+ #endif
-
- #if !defined(__hpux) && !defined(SOLARIS) && !defined(SGI) && !defined(RS6000)
- #define strerror(x) sys_errlist[x]