Re: bug report

2007-01-10 Thread Ralf Wildenhues
Hello Rutiger, * rutiger bishop wrote on Wed, Jan 10, 2007 at 06:51:18PM CET: > checking term.h usability... no > checking term.h presence... yes > configure: WARNING: term.h: present but cannot be compiled > configure: WARNING: term.h: check for missing prerequisite headers? > configure: WARNING:

Re: Bug report

2006-09-14 Thread Ralf Wildenhues
Hello Tony, * Tony Jennings - Jensoft Ltd wrote on Thu, Sep 14, 2006 at 12:40:08AM CEST: > The attached log shows a bug reported during running configure in > coreutils-5.0 Thanks for the bug report. > moonraker> cd coreutils-5.0 > moonraker> ./configure > checking build system type... sparc-su

Re: [bug report] autoheader still creates .in file if no AC_CONFIG_HEADERS

2004-12-16 Thread Kelley Cook
Kelley Cook wrote: If you run autoheader 2.59b on a configure.ac without a AC_CONFIG_HEADERS, it will properly inform you error: AC_CONFIG_HEADERS not found in configure.ac Nevertheless the perl script continues which appends .in to nothing thereby creating the hidden file ".in" and procedes all

Re: [bug report] autoheader still creates .in file if no AC_CONFIG_HEADERS

2004-12-12 Thread Paul Eggert
Kelley Cook <[EMAIL PROTECTED]> writes: > 2004-12-12 Kelley Cook <[EMAIL PROTECTED]> > > * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found. Thanks; I installed that. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/ma

Re: Bug report

2003-02-14 Thread Lars Hecking
Chris Schuit @ Euronet writes: > configure: WARNING: net/if.h: present but cannot be compiled > configure: WARNING: net/if.h: check for missing prerequisite headers? > configure: WARNING: net/if.h: proceeding with the preprocessor's result > configure: WARNING: ## --

Re: bug report

2000-10-10 Thread Akim Demaille
> "Pavel" == Pavel Roskin <[EMAIL PROTECTED]> writes: Pavel> To be strict, the testsuite doesn't guarantee it because macros Pavel> can expand differently dependent e.g. on the number of Pavel> arguments. I agree. Pavel> Anyway, I agree with your decision. I agree too :) Pavel> I can, b

Re: bug report

2000-10-09 Thread Pavel Roskin
Hello, Akim! > | > autoconf: Undefined macros: > | > ***BUG in Autoconf--please report*** AC_FD_CC > | > ***BUG in Autoconf--please report*** AC_FD_CC > | > ***BUG in Autoconf--please report*** AC_FD_CC > | > configure.in:2:AC_CHECK_TOTO > | > | That's not really helpful, I know. > >

Re: bug report

2000-10-09 Thread Akim Demaille
| > autoconf: Undefined macros: | > ***BUG in Autoconf--please report*** AC_FD_CC | > ***BUG in Autoconf--please report*** AC_FD_CC | > ***BUG in Autoconf--please report*** AC_FD_CC | > configure.in:2:AC_CHECK_TOTO | | That's not really helpful, I know. And in fact most of

Re: bug report

2000-10-05 Thread Peter Eisentraut
Emmanuel Beffara writes: > AC_DEFINE(AC_CHECK_TOTO, > AC_TRY_COMPILE([#include ], [toto()], > TOTO=true, TOTO=false)) AC_DEFUN -- Peter Eisentraut [EMAIL PROTECTED] http://yi.org/peter-e/

Re: bug report

2000-10-05 Thread Pavel Roskin
Hello, Emmanuel! > AC_DEFINE(AC_CHECK_TOTO, > AC_TRY_COMPILE([#include ], [toto()], > TOTO=true, TOTO=false)) You should always quote the arguments, especially when you expect expansion of the arguments, otherwise it happens in a wrong order! > autoconf: Undefined

Re: bug report

2000-10-05 Thread Alexandre Oliva
On Oct 5, 2000, Emmanuel Beffara <[EMAIL PROTECTED]> wrote: > AC_DEFINE(AC_CHECK_TOTO, > AC_TRY_COMPILE([#include ], [toto()], > TOTO=true, TOTO=false)) You're missing quoting. Enclose macro arguments in `[]'s. AC_DEFINE(AC_CHECK_TOTO, [AC_TRY_COMPILE(

Re: bug report

2000-06-13 Thread Akim Demaille
Hi! The current CVS version of Autoconf no longer defines AC_LOCALDIR which you appear to be depending on in your configure.in script. Would it be possible to see how and why you use it so that either I may submit a patch to you, or to Autoconf? A pointer to a tarball is just what is needed. T

Re: bug report

2000-06-13 Thread Jeffrey Altman
> > | gnu m4 1.4 > | autoconf 2.13 > | AIX 4.3.2 > | > | # autoconf > | autoconf: Undefined macros: > | ***BUG in Autoconf--please report*** AC_LOCALDIR > > Arg, this is a known difference between CVS autoconf and 2.13: in the > latter there is: > > if test -n "$localdir"; then > use_localdi

Re: bug report

2000-06-13 Thread Akim Demaille
> "Assar" == Assar Westerlund <[EMAIL PROTECTED]> writes: Assar> Now, this `feature' is gone from the CVS version of autoconf so Assar> that code should probably migrate to doing things some other Assar> way, but that's probably somebody else's problem. Right. Where can we see that package?

Re: bug report

2000-06-13 Thread Akim Demaille
| gnu m4 1.4 | autoconf 2.13 | AIX 4.3.2 | | # autoconf | autoconf: Undefined macros: | ***BUG in Autoconf--please report*** AC_LOCALDIR Arg, this is a known difference between CVS autoconf and 2.13: in the latter there is: if test -n "$localdir"; then use_localdir="-I$localdir -DAC_LOCALDIR

Re: bug report

2000-06-12 Thread Assar Westerlund
Jeffrey Altman <[EMAIL PROTECTED]> writes: > When I run autoconf I get the error I sent you. > > grep'ing the files the error is occuring because the AC_LOCALDIR which > is in the aclocal.m4 file is not defined to a value. > > I will check with MIT to make sure that what I was told was accurate.

Re: bug report

2000-06-12 Thread Jeffrey Altman
All I am attempting to do is convert the configure.in files that come with the Kerberos distribution into a ./configure which I can run. I was told by MIT to retrieve the latest m4 and autoconf from ftp.gnu.org. So that is what I did. When I run autoconf I get the error I sent you. grep'ing the

Re: bug report

2000-06-11 Thread Jeffrey Altman
> Jeffrey Altman <[EMAIL PROTECTED]> writes: > > gnu m4 1.4 > > autoconf 2.13 > > AIX 4.3.2 > > > > # autoconf > > autoconf: Undefined macros: > > ***BUG in Autoconf--please report*** AC_LOCALDIR > > Can you send a minimal configure.in that gives this error? Thanks. > > /assar > The Kerberos

Re: bug report

2000-06-11 Thread Assar Westerlund
Jeffrey Altman <[EMAIL PROTECTED]> writes: > The Kerberos V5 distribution contains an aclocal.m4 file with the > following reference: > > AC_PREREQ(2.12) > dnl > dnl Figure out the top of the source and build trees. We depend on > localdir > dnl being a relative pathname; we could make it genera

Re: bug report

2000-06-11 Thread Assar Westerlund
Jeffrey Altman <[EMAIL PROTECTED]> writes: > gnu m4 1.4 > autoconf 2.13 > AIX 4.3.2 > > # autoconf > autoconf: Undefined macros: > ***BUG in Autoconf--please report*** AC_LOCALDIR Can you send a minimal configure.in that gives this error? Thanks. /assar

Re: Bug Report: Autoconf 2.13

2000-02-17 Thread Akim Demaille
Thanks for the report. Since then Autoconf uses Automake, so such failures are less likely. Nonetheless, I don't understand why frozen files should be taken from srcdir. Akim