poke-devel
[Top][All Lists]
Advanced

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

Re: Jitter v0.9.300 [Was: Re: GNU poke 3.90.0 on FreeBSD/sparc64]


From: Bruno Haible
Subject: Re: Jitter v0.9.300 [Was: Re: GNU poke 3.90.0 on FreeBSD/sparc64]
Date: Tue, 06 Feb 2024 13:20:19 +0100

Luca Saiu wrote:
> Applied a slightly different fix.

It is not correct: The value of ac_cv_c_typeof is effectively
ignored.

AC_C_TYPEOF sets ac_cv_c_typeof to one of
  typeof
  __typeof__
  no
It never sets it to empty. Therefore the test
  test "x$ac_cv_c_typeof" != 'x'
always evaluates to true.

The correct way of writing this test is:
  test "x$ac_cv_c_typeof" != 'xno'

Bruno






reply via email to

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