Re: 2.96.4 pretest
Jan-Åke Larsson <[email protected]>
| Newsgroups | gmane.comp.tex.tetex.beta |
|---|---|
| Message-ID | <[email protected]> |
Adrian Bunk wrote: > On Mon, Jun 28, 2004 at 11:52:34AM +0200, Harald Koenig wrote: > > On Jun 27, Thomas Esser wrote: > > > > > * upgrade dvipng to version 1.1 > > > > dvipng doesn't compile on DEC OSF1 V4.0 (AXP) because OSF1 > > has neither stdint.h nor inttypes.h which is included in dvipng.h. > >... > > This doesn't look right since e.g. Linux/alpha shouldn't have this > problem..... I will be using #ifdef HAVE_INTTYPES_H #include <inttypes.h> #else typedef signed char int8_t; typedef unsigned char uint8_t; typedef short int16_t; typedef unsigned short uint16_t; typedef int int32_t; typedef unsigned int uint32_t; typedef long long int64_t; typedef unsigned long long uint64_t; #endif Let me know if this is not OK. /JÅ -- Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems.