summaryrefslogtreecommitdiff
path: root/games/moria/files/patch-source::main.c
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2003-08-07 22:21:48 +0000
committerGreg Lewis <glewis@FreeBSD.org>2003-08-07 22:21:48 +0000
commit8c55fa010fd1ca750cd1fe71695f6e28ebd573f7 (patch)
treef4dac190ad5f30be669c1f62fabb69e517e0b721 /games/moria/files/patch-source::main.c
parentReplace B0RKEN with IGNORE - the port isn't broken per se, it just requires (diff)
. Make this compile cleanly on current. Mainly we want to use time_t
for time(), not long. Pointed out by: Pav Lucistnik <pav@oook.cz>
Notes
Notes: svn path=/head/; revision=86525
Diffstat (limited to 'games/moria/files/patch-source::main.c')
-rw-r--r--games/moria/files/patch-source::main.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/games/moria/files/patch-source::main.c b/games/moria/files/patch-source::main.c
new file mode 100644
index 000000000000..a07015ed4d03
--- /dev/null
+++ b/games/moria/files/patch-source::main.c
@@ -0,0 +1,31 @@
+$FreeBSD$
+
+--- source/main.c.orig Thu Jul 21 19:47:27 1994
++++ source/main.c Thu Aug 7 16:12:13 2003
+@@ -88,6 +88,7 @@
+ #include <time.h>
+ #endif
+
++#ifndef __FreeBSD__
+ #ifndef VMS
+ #ifndef MAC
+ #ifndef GEMDOS
+@@ -98,6 +99,9 @@
+ char *getenv();
+ #endif
+ #endif
++#else
++#include <stdlib.h>
++#endif
+
+ #ifndef MAC
+ #ifndef AMIGA
+@@ -360,7 +364,7 @@
+ else
+ { /* Create character */
+ create_character();
+-#ifdef MAC
++#if defined(MAC) || defined(__FreeBSD__)
+ birth_date = time ((time_t *)0);
+ #else
+ birth_date = time ((long *)0);