aboutsummaryrefslogtreecommitdiffstats
path: root/games/moria
diff options
context:
space:
mode:
authorglewis <glewis@FreeBSD.org>2003-08-15 22:28:23 +0800
committerglewis <glewis@FreeBSD.org>2003-08-15 22:28:23 +0800
commite7d37e4698c0fbba391134ef1dd321c6671641bb (patch)
tree82d77aaffff95d42c7f274955dee9cafd110c27b /games/moria
parent8db5ac849f3806d6b60b3e1e2294520f7cc88746 (diff)
downloadfreebsd-ports-gnome-e7d37e4698c0fbba391134ef1dd321c6671641bb.tar.gz
freebsd-ports-gnome-e7d37e4698c0fbba391134ef1dd321c6671641bb.tar.zst
freebsd-ports-gnome-e7d37e4698c0fbba391134ef1dd321c6671641bb.zip
. Include <time.h> instead of doing a bogus declaration of time(3). This
should get the alpha closer to compiling. Submitted by: bento
Diffstat (limited to 'games/moria')
-rw-r--r--games/moria/files/patch-source::io.c23
1 files changed, 17 insertions, 6 deletions
diff --git a/games/moria/files/patch-source::io.c b/games/moria/files/patch-source::io.c
index 84057bae4138..ee9cb30c4f30 100644
--- a/games/moria/files/patch-source::io.c
+++ b/games/moria/files/patch-source::io.c
@@ -1,19 +1,30 @@
$FreeBSD$
---- source/io.c Thu Jul 21 19:47:26 1994
-+++ source/io.c Tue Aug 5 09:59:14 2003
-@@ -13,6 +13,10 @@
+--- source/io.c.orig Thu Jul 21 19:47:26 1994
++++ source/io.c Fri Aug 15 07:42:02 2003
+@@ -13,6 +13,11 @@
#include "config.h"
+#ifdef __FreeBSD__
+#include <sys/ioctl_compat.h>
++#include <time.h>
+#endif
+
#ifdef HPUX
#include <sys/bsdtty.h>
#endif
-@@ -313,7 +317,7 @@
+@@ -245,7 +250,9 @@
+ struct ltchars lcbuf;
+ struct tchars cbuf;
+ int lbuf;
++#ifndef __FreeBSD__
+ long time();
++#endif
+
+ py.misc.male |= 2;
+ (void) ioctl(0, TIOCGETP, (char *)&tbuf);
+@@ -313,7 +320,7 @@
#endif
/* PC curses returns ERR */
@@ -22,7 +33,7 @@ $FreeBSD$
if (initscr() == NULL)
#else
if (initscr() == ERR)
-@@ -331,7 +335,7 @@
+@@ -331,7 +338,7 @@
#if defined(atarist) && defined(__GNUC__)
(void) signal (SIGTSTP, (__Sigfunc)suspend);
#else
@@ -31,7 +42,7 @@ $FreeBSD$
(void) signal (SIGTSTP, (sig_t)suspend);
#else
(void) signal (SIGTSTP, suspend);
-@@ -757,7 +761,7 @@
+@@ -757,7 +764,7 @@
msg_print("Fork failed. Try again.");
return;
}