help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-smalltalk] Bug in v3.2 version of mkdtemp.c


From: Paolo Bonzini
Subject: Re: [Help-smalltalk] Bug in v3.2 version of mkdtemp.c
Date: Thu, 20 May 2010 09:39:19 +0200

> One more in packages/digest/sha1.h :
>
> Solaris does not have an include file called
> stdint.h so I changed it to this which works
> OK for Solaris -- not sure what the best fix might
> be :
>
> #ifndef SHA1_H
> # define SHA1_H 1
>
> # include <stdio.h>
> #include <sys/types.h>            <--- Added for Solaris
> //# include <stdint.h>            <--- Commented out

Adding sys/types.h is okay.  You can wrap the stdint.h inclusion with

#ifdef HAVE_STDINT_H
#endif

Thanks for the report, I'll apply the changes to stable-3.2.

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]