More about dependencies...

2000-10-23 Thread Patrick Guio
Deal all I refer to my earlier mails about problem with c++ dependencies. I don't know whether this is a bug but I found out why I could not make dependencies tracking working correctly. My code consists of several directories ~ ~/src ~/tests and so on ~/Makefile.am does not contain so much ~

exit status of conftest program

2000-10-23 Thread Martin Wilck
Is it ok for autoconf tests to create a C test program such as this if ( == ) exit (0); else exit (1); and check the exit status with AC_TRY_RUN, or may this fail on some systems? -- Martin Wilck <[EMAIL PROTECTED]> Institute for Tropospheric Research, Permoserstr. 15, D-04318 Leipzi

Re: name of m4 executable

2000-10-23 Thread Marco Franzen
[Crossposting to gcc-bugs. Gcc's top-level Makefile invokes sub-makes with M4=m4. This overrides autoconf's otherwise correct idea of what "m4" it should call.] On Sat, 21 Oct 2000, Assar Westerlund wrote: > Marco Franzen <[EMAIL PROTECTED]> writes: > > When I configured autoconf, it looked for

Loop in _AC_COMPUTE_INT_COMPILE

2000-10-23 Thread Pavel Roskin
Hello! The easiest way to reproduce the endless loop in the testsuite on HP-UX 10.20 without GCC is: AC_INIT _AC_COMPUTE_INT_COMPILE(foo, ac_foo) AC_OUTPUT I don't remember what exactly the bundled compiler didn't like in the expression that Autoconf wanted it to compile. I assume that compile

manually setting up aclocal.m4

2000-10-23 Thread Lars J. Aas
I've tried to set up aclocal.m4 to just m4_include the necessary macro files, but I don't want to write explicit paths to the files in /usr/local/share/aclocal/, and I can't get autoconf to make m4 search in that directory automatically. Any hints? Lars J

No, I *don't* HAVE_IO_H!

2000-10-23 Thread David Andrew Michael Noelle
I'm not entirely certain this is the right forum for this message, because I don't know where this problem is coming from. Lately (and I don't recall exactly when it started) I've been having a great deal of trouble compiling things because the configure scripts keep defining "HAVE_" macros for t

Re: Success (mostly) with the testsuite

2000-10-23 Thread Akim Demaille
As far as I'm concerned, I'm lost. I'm no longer sure your problem is really related to ${FOO=$bar}, or, more precisely, that it is *only* related to this. This debate already partly happened, see `config.status is broken under Ultrix' on http://sources.redhat.com/ml/autoconf/2000-01/t

Re: Success (mostly) with the testsuite

2000-10-23 Thread Pavel Roskin
Hello, Akim! > As far as I'm concerned, I'm lost. I'm no longer sure your problem is > really related to ${FOO=$bar}, or, more precisely, that it is *only* > related to this. I installed QNX currently distributed from the QNX site (uname -r shows 6.00) and I couldn't reproduce the problem with

Re: Success (mostly) with the testsuite

2000-10-23 Thread Akim Demaille
> "Pavel" == Pavel Roskin <[EMAIL PROTECTED]> writes: Pavel> I installed QNX currently distributed from the QNX site (uname Pavel> -r shows 6.00) and I couldn't reproduce the problem with Pavel> ${FOO=$bar} You're impressive! Your testing is incredibly conscientious, and therefore precious.

Re: Success (mostly) with the testsuite

2000-10-23 Thread Akim Demaille
> "David" == David Morgan <[EMAIL PROTECTED]> writes: >> >> test s${CONFIG_FILES+et} = set || CONFIG_FILES=$config_files Yes, sorry I forgot to include the quotes. I really meant this: test "${FOO+set}" = set which is used all over Autoconf. There is no reason to change this.

FreeBSD and QNX - first results

2000-10-23 Thread Pavel Roskin
Hello! One thing was broken recently: /bin/sh -n autoconf doesn't work on FreeBSD and QNX if autoconf is not in the current directory. This patch should probably be reverted, at least partially: 2000-10-23 Akim Demaille <[EMAIL PROTECTED]> * tests/tools.m4: Globally, don't use `../'

More dependencies...

2000-10-23 Thread Patrick Guio
Refering to my earlier mail today,I have a comment about .cpp.o: source='$<' object='$@' libtool=no \ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \ $(CXXDEPMODE) $(depcomp) \ $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< The name of the dependency file is connec

Re: More about dependencies...

2000-10-23 Thread Raja R Harinath
Patrick Guio <[EMAIL PROTECTED]> writes: > I refer to my earlier mails about problem with c++ dependencies. I don't > know whether this is a bug but I found out why I could not make > dependencies tracking working correctly. > My code consists of several directories > > ~ > ~/src > ~/tests > and