On Friday 04 December 2009 07:50:15 Roland Scheidegger wrote:
[snip]
> > diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c
> > index 6a34aec..0f10111 100644
> > --- a/src/mesa/main/imports.c
> > +++ b/src/mesa/main/imports.c
> > @@ -268,17 +268,6 @@ _mesa_bzero( void *dst, size_t n )
> >  #endif
> >  }
> >
> > -/** Wrapper around memcmp() */
> > -int
> > -_mesa_memcmp( const void *s1, const void *s2, size_t n )
> > -{
> > -#if defined(SUNOS4)
> > -   return memcmp( (char *) s1, (char *) s2, (int) n );
> > -#else
> > -   return memcmp(s1, s2, n);
> > -#endif
> > -}
> > -
> >  /*...@}*/
> 
> So is the different implementation on SUNOS4 no longer relevant?
> 
> Roland

It seems pretty irrelevant at this point, seeing as SunOS 4 was last released 
in 1994, hasn't been supported by Sun for 6+ years, and AFAICT only runs on 
hardware that measures CPU speed in Mhz.  Probably not the best for 3D. :)

This post on the autoconf list is pretty informative:
http://www.mail-archive.com/autoc...@gnu.org/msg14688.html

--Kenneth

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev

Reply via email to