diff options
author | dinoex <dinoex@FreeBSD.org> | 2001-03-10 18:31:01 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2001-03-10 18:31:01 +0000 |
commit | a7b8b4de5e8cc849e92e0e5cac7f4f762dc00cfc (patch) | |
tree | 2ad0f5009f7e73860f5059a78a8db510ada9c775 /emulators | |
parent | 4739d0f153fedbcdabb026234bb82a304ec9a0e0 (diff) | |
download | FreeBSD-ports-a7b8b4de5e8cc849e92e0e5cac7f4f762dc00cfc.zip FreeBSD-ports-a7b8b4de5e8cc849e92e0e5cac7f4f762dc00cfc.tar.gz |
patch to make it compile under "alpha" on beast.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/frodo/files/patch-CmdPipe.cpp | 38 |
1 files changed, 24 insertions, 14 deletions
diff --git a/emulators/frodo/files/patch-CmdPipe.cpp b/emulators/frodo/files/patch-CmdPipe.cpp index 079d903..2809507 100644 --- a/emulators/frodo/files/patch-CmdPipe.cpp +++ b/emulators/frodo/files/patch-CmdPipe.cpp @@ -1,14 +1,24 @@ -*** CmdPipe.cpp Wed Aug 6 20:56:26 1997 ---- CmdPipe.cpp.neu Fri Sep 5 14:15:37 1997 -*************** -*** 29,34 **** ---- 29,37 ---- - #if defined(__linux__) - #include <sys/time.h> - #endif -+ #if defined(__FreeBSD__) -+ #include <sys/time.h> -+ #endif - - #include <time.h> - #include <errno.h> +--- CmdPipe.cpp.orig Wed Aug 6 20:56:26 1997 ++++ CmdPipe.cpp Sat Mar 10 19:19:59 2001 +@@ -16,9 +16,11 @@ + #include <string.h> + #include <signal.h> + ++#if ! defined(__FreeBSD__) + #if defined(__alpha__) + #include <cma.h> + #endif ++#endif + + #if defined(AIX) + #include <sys/select.h> +@@ -27,6 +29,9 @@ + #endif + + #if defined(__linux__) ++ #include <sys/time.h> ++#endif ++#if defined(__FreeBSD__) + #include <sys/time.h> + #endif + |