[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gnulib update breaks clisp: stdlib.h:189:5: error: #if with no expre
From: |
Bruno Haible |
Subject: |
Re: gnulib update breaks clisp: stdlib.h:189:5: error: #if with no expression |
Date: |
Thu, 17 Sep 2009 23:15:14 +0200 |
User-agent: |
KMail/1.9.9 |
Sam Steingold wrote:
> I updated clisp to the latest gnulib (to take advantage of the mktime fix)
> and now build fails with this:
>
> ./stdlib.h:189:5: error: #if with no expression
>
> this comes from
>
> #if @GNULIB_MKOSTEMP@
> # if address@hidden@
Looks like you regenerated stdlib.h with a Makefile that does not capture
the value of GNULIB_MKOSTEMP determined by configure. Recall: after updating
to a newer gnulib version, you need to
1. Run "make distclean" if you did not do it before,
2. Regenerate the infrastructure (run autoconf, automake, etc.),
3. Re-configure the package.
Bruno