fix FreeBSD compile errors

This commit is contained in:
Bradley Bell 2003-12-08 22:55:27 +00:00
parent 00dc78cbe9
commit 008c8d9b56
4 changed files with 13 additions and 6 deletions

View file

@ -1,8 +1,13 @@
2003-12-08 Alexander Y. Yeikovich <demon@mci.net.ua>
* arch/linux/ipx_kali.c, arch/linux/ipx_mcast4.c,
arch/linux/ipx_udp.c: fix FreeBSD compile errors
2003-12-08 Alexander Y. Yeikovich <demon@mci.net.ua> and Bradley Bell <btb@icculus.org>
* 2d/ibitblt.c, include/maths.h, include/ogl_init.h,
include/pstypes.h, main/game.c, main/game.h, main,
unused/bios/ipx.c: get rid of silly ulongs
include/pstypes.h, main/game.c, main/game.h, unused/bios/ipx.c:
get rid of silly ulongs
* configure.ac, 2d/bitblt.c, 2d/linear.asm, maths/fix.asm,
maths/vecmata.asm, texmap/tmap_inc.asm, texmap/tmap_per.asm,

View file

@ -1,4 +1,4 @@
/* $Id: ipx_kali.c,v 1.6 2003-10-12 09:17:47 btb Exp $ */
/* $Id: ipx_kali.c,v 1.7 2003-12-08 22:55:27 btb Exp $ */
/*
*
* IPX driver for KaliNix interface
@ -11,6 +11,7 @@
#include <stdio.h>
#include <string.h>
#include <arpa/inet.h>
#include <netinet/in.h> /* for htons & co. */
#include "ipx_drv.h"
#include "ukali.h"

View file

@ -1,4 +1,4 @@
/* $Id: ipx_mcast4.c,v 1.1 2003-10-12 09:17:47 btb Exp $ */
/* $Id: ipx_mcast4.c,v 1.2 2003-12-08 22:55:27 btb Exp $ */
/*
*
@ -13,8 +13,8 @@
#include <stdio.h>
#include <string.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdarg.h>
#include <unistd.h>
#include <sys/socket.h>

View file

@ -1,4 +1,4 @@
/* $Id: ipx_udp.c,v 1.8 2003-10-12 09:17:47 btb Exp $ */
/* $Id: ipx_udp.c,v 1.9 2003-12-08 22:55:27 btb Exp $ */
/*
*
* IPX driver for native Linux TCP/IP networking (UDP implementation)
@ -73,6 +73,7 @@
#include <stdio.h>
#include <string.h>
#include <arpa/inet.h>
#include <netinet/in.h> /* for htons & co. */
#include <unistd.h>
#include <stdarg.h>