> 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 _______________________________________________ help-smalltalk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-smalltalk
