X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=modules%2Fbsd-comp.c;h=96cf1fec8441cbba028076b0252b15ac0aca12ae;hp=6bdbe10cfb28a687aa73ae88f7994c2a2eb52820;hb=b3c235ba9aa4e426b1c863e2db047f4030c10564;hpb=1145d3f55794382369d911d0adf0038027b23cec diff --git a/modules/bsd-comp.c b/modules/bsd-comp.c index 6bdbe10..96cf1fe 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.10 1995/05/01 01:43:16 paulus Exp $ + * $Id: bsd-comp.c,v 1.15 1995/07/11 06:38:15 paulus Exp $ */ #ifdef __aix4__ @@ -55,16 +55,30 @@ #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__ #include +#ifdef FIRST +#undef FIRST +#undef LAST +#endif +#ifdef FREE +#undef FREE +#endif #define ALLOCATE(n) kalloc((n)) #define FREE(p, n) kfree((p), (n)) +#define BSD_LITTLE_ENDIAN #endif #ifdef __aix4__ @@ -148,7 +162,7 @@ struct bsd_db { }; #define BSD_OVHD 2 /* BSD compress overhead/packet */ -#define BSD_INIT_BITS MIN_BSD_BITS +#define BSD_INIT_BITS BSD_MIN_BITS static void *bsd_comp_alloc __P((u_char *options, int opt_len)); static void *bsd_decomp_alloc __P((u_char *options, int opt_len));