Re: teTeX3 on IRIX 5.3 bug + fix
Jan-Åke Larsson <[email protected]>
| Newsgroups | gmane.comp.tex.tetex.general |
|---|---|
| Message-ID | <[email protected]> |
Georg Schwarz wrote: > Seems to work: > > checking for ANSI C header files... yes checking for sys/types.h...yes <...> > checking for inttypes.h... no Very good. The configure test of autoconf 2.5x does catch this, as is indicated by the docs at http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_node/autoconf_51.html#SEC51 Thomas, if you want to keep 2.13, I _think_ this might work: AC_CHECK_HEADERS([sys/types.h]) AC_CHECK_HEADERS([inttypes.h], [], [], [#if HAVE_SYS_TYPES_H # include <sys/types.h> #endif ]) Only problem is I haven't got the 2.13 docs around, so you might want to check the syntax of the AC_CHECK_HEADERS call. /JÅ