X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=modules%2Fbsd-comp.c;h=7ae89fde2f41d817a7eebefbbdce77964ca1e87d;hp=b37d363505b61d8075213b15f1489924866e9a56;hb=fe174917ff5bda0788993a27e21bf2451180938a;hpb=d344ccb0681c547ce4087962b54d10859bb09137 diff --git a/modules/bsd-comp.c b/modules/bsd-comp.c index b37d363..7ae89fd 100644 --- a/modules/bsd-comp.c +++ b/modules/bsd-comp.c @@ -39,9 +39,9 @@ /* * This version is for use with STREAMS under SunOS 4.x, - * DEC Alpha OSF/1, and AIX 4.x. + * DEC Alpha OSF/1, AIX 4.x, and SVR4 systems including Solaris 2. * - * $Id: bsd-comp.c,v 1.11 1995/05/02 02:49:09 paulus Exp $ + * $Id: bsd-comp.c,v 1.13 1995/05/29 06:34:33 paulus Exp $ */ #ifdef __aix4__ @@ -55,13 +55,26 @@ #include #include -#ifdef sun -#include -#define ALLOCATE(n) kmem_alloc((n), KMEM_NOSLEEP) -#define FREE(p, n) kmem_free((p), (n)) +#ifdef __svr4__ /* SVR4, including SunOS 5.x */ +# include +# define ALLOCATE(n) kmem_alloc((n), KM_NOSLEEP) +# define FREE(p, n) kmem_free((p), (n)) +#else /* SunOS 4.x */ +# ifdef sun +# include +# define ALLOCATE(n) kmem_alloc((n), KMEM_NOSLEEP) +# define FREE(p, n) kmem_free((p), (n)) +# endif #endif #ifdef __osf__ +#ifdef FIRST +#undef FIRST +#undef LAST +#endif +#ifdef FREE +#undef FREE +#endif #include #define ALLOCATE(n) kalloc((n)) #define FREE(p, n) kfree((p), (n))