From: srittau Date: Sun, 25 Nov 2001 21:36:58 +0000 (+0000) Subject: MacOS X fixes. X-Git-Tag: netatalk-1-5-rc1~19 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9289de22ab17a9b01950705993ac9abac48fd623;hp=bd8fde0258a1ab1aec0e96600fa3e295bebb721d;p=netatalk.git MacOS X fixes. --- diff --git a/libatalk/netddp/netddp_open.c b/libatalk/netddp/netddp_open.c index 2cf9007f..2d59328f 100644 --- a/libatalk/netddp/netddp_open.c +++ b/libatalk/netddp/netddp_open.c @@ -1,5 +1,5 @@ /* - * $Id: netddp_open.c,v 1.3 2001-06-29 14:14:46 rufustfirefly Exp $ + * $Id: netddp_open.c,v 1.3.2.1 2001-11-25 21:36:58 srittau Exp $ * * Copyright (c) 1999 Adrian Sun (asun@zoology.washington.edu) * Copyright (c) 1990,1991 Regents of The University of Michigan. @@ -21,8 +21,8 @@ static int _netddp_open_dummy; #include #ifdef MACOSX_SERVER -#include -#include +#include +#include #endif /* MACOSX_SERVER */ #include diff --git a/libatalk/netddp/netddp_recvfrom.c b/libatalk/netddp/netddp_recvfrom.c index 4cc7b914..26f00b95 100644 --- a/libatalk/netddp/netddp_recvfrom.c +++ b/libatalk/netddp/netddp_recvfrom.c @@ -1,5 +1,5 @@ /* - * $Id: netddp_recvfrom.c,v 1.3 2001-06-29 14:14:46 rufustfirefly Exp $ + * $Id: netddp_recvfrom.c,v 1.3.2.1 2001-11-25 21:36:58 srittau Exp $ * * Copyright (c) 1999 Adrian Sun (asun@zoology.washington.edu) * Copyright (c) 1990,1991 Regents of The University of Michigan. @@ -24,8 +24,8 @@ static int _netddp_recvfrom_dummy; #include #ifdef MACOSX_SERVER -#include -#include +#include +#include #endif /* MACOSX_SERVER */ #include diff --git a/libatalk/netddp/netddp_sendto.c b/libatalk/netddp/netddp_sendto.c index a81cfc88..070d4ea5 100644 --- a/libatalk/netddp/netddp_sendto.c +++ b/libatalk/netddp/netddp_sendto.c @@ -1,5 +1,5 @@ /* - * $Id: netddp_sendto.c,v 1.3 2001-06-29 14:14:46 rufustfirefly Exp $ + * $Id: netddp_sendto.c,v 1.3.2.1 2001-11-25 21:36:58 srittau Exp $ * * Copyright (c) 1999 Adrian Sun (asun@zoology.washington.edu) * Copyright (c) 1990,1991 Regents of The University of Michigan. @@ -25,8 +25,8 @@ static int _netddp_sendto_dummy; #include #ifdef MACOSX_SERVER -#include -#include +#include +#include #endif /* MACOSX_SERVER */ #include diff --git a/sys/netatalk/at.h b/sys/netatalk/at.h index 541dcb18..c1c8200c 100644 --- a/sys/netatalk/at.h +++ b/sys/netatalk/at.h @@ -1,5 +1,5 @@ /* - * $Id: at.h,v 1.2 2001-06-29 14:14:47 rufustfirefly Exp $ + * $Id: at.h,v 1.2.2.1 2001-11-25 21:38:55 srittau Exp $ * * Copyright (c) 1990,1991 Regents of The University of Michigan. * @@ -9,7 +9,7 @@ #ifndef __AT_HEADER__ #define __AT_HEADER__ -#ifdef linux /* pull in the linux header */ +#if defined(linux) /* pull in the linux header */ #include #include #include @@ -18,6 +18,10 @@ #include #include /* so that we can deal with sun's s_net #define */ +#ifdef MACOSX_SERVER +#include +#endif /* MACOSX_SERVER */ + /* * Supported protocols */ @@ -51,6 +55,7 @@ /* * AppleTalk address. */ +#ifndef MACOSX_SERVER struct at_addr { #ifdef s_net #undef s_net @@ -58,6 +63,7 @@ struct at_addr { u_short s_net; u_char s_node; }; +#endif /* MACOSX_SERVER */ #define ATADDR_ANYNET (u_short)0x0000 #define ATADDR_ANYNODE (u_char)0x00 @@ -71,6 +77,7 @@ struct at_addr { * interface. IFACE may be filled in by the client, and is filled in * by the kernel. */ +#ifndef MACOSX_SERVER struct sockaddr_at { #ifdef BSD4_4 u_char sat_len; @@ -99,6 +106,7 @@ struct sockaddr_at { char sat_zero[ 8 ]; #endif /* notdef */ }; +#endif /* MACOSX_SERVER */ struct netrange { u_char nr_phase;