autoconf
[Top][All Lists]
Advanced

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

Re: gl_CACHE_VAL_SILENT won't work correctly with upcoming autoconf 2.70


From: Bruno Haible
Subject: Re: gl_CACHE_VAL_SILENT won't work correctly with upcoming autoconf 2.70
Date: Sat, 14 Mar 2020 01:27:19 +0100
User-agent: KMail/5.1.3 (Linux/4.4.0-174-generic; KDE/5.18.0; x86_64; ; )

Nick Bowler and Paul Eggert wrote:
> >    AS_VAR_SET_IF([my_cv_no_printing], [my_cv_no_printing=hello])
> 
>    AS_VAR_SET_IF([my_cv_no_printing], [], [my_cv_no_printing=hello])

But then I lose
  - the various AC_DIAGNOSE checks that are in AC_CACHE_VAL,
  - possible future improvements / changes to the caching mechanism.
    (I find it a dangerous bet to assume that the caching will only
    be based on a shell variable lookup and not something else.)

I would prefer to define gl_CACHE_VAL_SILENT as an invocation of
AC_CACHE_VAL that merely neutralizes the _AS_ECHO_N call. Such as
(untested):

AC_DEFUN([gl_CACHE_VAL_SILENT],
[
  m4_pushdef([_AS_ECHO_N], [])
  AC_CACHE_VAL([$1], [$2])
  m4_popdef([_AS_ECHO_N])
])

Bruno




reply via email to

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