diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2019-12-08 12:15:29 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2019-12-08 12:15:29 +0000 |
commit | 94108af78bab9a7002d363b35421bf1f6ac69205 (patch) | |
tree | 4a7a73f964e45ade81f35bbe9d455db5c7fb1583 /games/doomlegacy/files/patch-src_i__tcp.c | |
parent | devel/libosinfo: update to 1.7.1 (diff) |
Belatedly update Doom Legacy to version 1.47.2 (r1412) and unbreak.
The new features include MBF (Marine's Best Friend) compatibility, support
for sprites with 16 rotation positions, the possibility of multiple clients
and the server running on the same computer, plus many bug fixes.
While here, move ${DMDIR} up in WAD search list (DEFWADS20 -> DEFWADS04),
add ASM_BROKEN and missing `gl' to USE_GL, improve diagnostics and fix
potential segmentation fault in the owner_wad_search_order() function.
Notes
Notes:
svn path=/head/; revision=519298
Diffstat (limited to 'games/doomlegacy/files/patch-src_i__tcp.c')
-rw-r--r-- | games/doomlegacy/files/patch-src_i__tcp.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/games/doomlegacy/files/patch-src_i__tcp.c b/games/doomlegacy/files/patch-src_i__tcp.c deleted file mode 100644 index 4057de5862c7..000000000000 --- a/games/doomlegacy/files/patch-src_i__tcp.c +++ /dev/null @@ -1,15 +0,0 @@ ---- src/i_tcp.c.orig 2017-03-03 19:49:10 UTC -+++ src/i_tcp.c -@@ -411,8 +411,12 @@ byte IPX_hashaddr(mysockaddr_t *a) - // Not allowed to be 0. - // Big endian, want final addr byte. - #ifdef LINUX -+# ifdef FREEBSD -+ return ((byte)(a->ipx.sipx_addr.x_host.c_host[5])) | 0x80; -+# else - // Linux: IPX address hash - return ((byte)(a->ipx.sipx_node[5])) | 0x80; -+# endif - #else - // Windows, OS2, DJGPP: IPX address hash - return ((byte)(a->ipx.sa_nodenum[5])) | 0x80; |