Re: 2.99.5 release

Thomas Esser <[email protected]> Thu, 9 Dec 2004 18:44:37 +0100
Newsgroups gmane.comp.tex.tetex.beta
Message-ID <[email protected]>
On Thu, Dec 09, 2004 at 03:38:15PM +0100, Erik Frisk wrote:
> ./configure: test: unknown operator ==

That is that line

  if test "$ac_cv_header_inttypes_h" == yes; then

which should be

  if test "$ac_cv_header_inttypes_h" = yes; then

Thanks for reporting it!

Thomas