Re: HTML format documentation

2000-09-05 Thread Richard Stallman
Systems that want to arrange for sysconfdir to be /etc when --prefix=/usr just have to install /usr/(share|etc)/config.site with: test "x$sysconfdir" != 'x${prefix}/etc' || sysconfdir=/etc I think you have misunderstood what I proposed, because this would not implement it. We

Re: HTML format documentation

2000-09-05 Thread Alexandre Oliva
On Sep 5, 2000, Richard Stallman <[EMAIL PROTECTED]> wrote: > My proposal is that if you do just `make install' then the default for > prefix and sysconfdir (and maybe some other variables) should be the > same as now. But `make install standard_system=yes' would use > different system-specific

Re: AC_LIBOBJ

2000-09-05 Thread Akim Demaille
> "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes: Tom> We should automate this process. I've wanted to for a long time. Tom> Does autoconf have the hooks we need? Yes it has: - Macro: AC_CONFIG_COMMANDS_PRE(CMDS) Execute the CMDS right before creating `config.status'. A typical

Re: HTML format documentation

2000-09-05 Thread Akim Demaille
%% Alex Hornby <[EMAIL PROTECTED]> writes: ah> Richard Stallman writes: >> I think we need to ask the community of developers what they would >> think of this change. It sounds good, but it could have pitfalls >> we have not thought of. >> >> Would someone like to do that? ah> I

Re: HTML format documentation

2000-09-05 Thread Akim Demaille
I forgot to say that if the user wants such magic stuff, we can document how to write the proper config.site which does that. I am personally against having configure encode such things, it should be entirely under the control of the user.

Re: HTML format documentation

2000-09-05 Thread Akim Demaille
> "Alexandre" == Alexandre Oliva <[EMAIL PROTECTED]> writes: Alexandre> On Sep 4, 2000, [EMAIL PROTECTED] (Greg A. Woods) wrote: >> [ On , September 3, 2000 at 16:44:05 (-0300), Alexandre Oliva >> wrote: ] >>> Subject: Re: HTML format documentation >>> >>> There's no need to introduce knowle

Re: HTML format documentation

2000-09-05 Thread Akim Demaille
| Systems that want to | arrange for sysconfdir to be /etc when --prefix=/usr just have to | install /usr/(share|etc)/config.site with: | | test "x$sysconfdir" != 'x${prefix}/etc' || sysconfdir=/etc | | I think you have misunderstood what I proposed, because this would not | i

Re: HTML format documentation

2000-09-05 Thread Akim Demaille
> "Alexandre" == Alexandre Oliva <[EMAIL PROTECTED]> writes: Alexandre> On Sep 2, 2000, Richard Stallman <[EMAIL PROTECTED]> wrote: >> So prefix=/usr leads to syconfidir=/etc, but prefix=/usr/gnu (not >> my idea) leads to sysconfdir=/usr/gnu/config? Ugh. >> This nonuniformity is precisely th

Re: HTML format documentation

2000-09-05 Thread Akim Demaille
| On Fri, Sep 01, 2000 at 09:38:28PM -0600, Richard Stallman wrote: | : So prefix=/usr leads to syconfidir=/etc, but prefix=/usr/gnu (not my | : idea) leads to sysconfdir=/usr/gnu/config? Ugh. | : | : This nonuniformity is precisely the intent. When prefix is a | : subdirectory of /usr,

Re: Help with quotes needed

2000-09-05 Thread Akim Demaille
> "Pavel" == Pavel Roskin <[EMAIL PROTECTED]> writes: Pavel> Hello! This line needs to be rewritten so that it works both Pavel> with autoconf-2.13 and autoconf-2.49a and causes no warnings Pavel> from Autoconf: Pavel> AC_MSG_CHECKING(extra library \"$i\") Pavel> $i needs to be expanded, q

Re: Bug in autoconf-2.13

2000-09-05 Thread Akim Demaille
The following message is a courtesy copy of an article that has been posted to gnu.utils.bug as well. > "Alexandre" == Alexandre Oliva <[EMAIL PROTECTED]> writes: Alexandre> On Aug 18, 2000, [EMAIL PROTECTED] (Carlo Wood) wrote: >> In the documentation of autoconf it reads that AC_TRY_RUN, w

bug in autoconf handling of inline and const

2000-09-05 Thread Andreas Buschmann
Hello, I think I have found a bug in autoconf v2.13 when combining autoheader, AC_LANG_CPLUSPLUS and AC_C_CONST or AC_C_INLINE . This results in inline and const being defined as an empty string. It happens when trying to use the generated configure script with gcc v2.95.2 . It does not happe

Re: HTML format documentation

2000-09-05 Thread Paul D. Smith
%% Alexandre Oliva <[EMAIL PROTECTED]> writes: ao> On Sep 5, 2000, Richard Stallman <[EMAIL PROTECTED]> wrote: >> My proposal is that if you do just `make install' then the default for >> prefix and sysconfdir (and maybe some other variables) should be the >> same as now. But `make ins

Re: bug in autoconf handling of inline and const

2000-09-05 Thread Akim Demaille
I think the current Autoconf has solved these issues. In fact running the test suite with CC=g++ works. Thanks!

Re: "X" is fixed in autoconf 2.49a

2000-09-05 Thread Robert Boehne
I seem to see this answer quite often to bug reports about the currently released autoconf v. 2.13. My question is, what is left to do before the next release? and how quickly can we get everything done? -- Robert Boehne Software Engineer Ricardo Software Chicago Technical Cente

Re: "X" is fixed in autoconf 2.49a

2000-09-05 Thread Akim Demaille
> "Robert" == Robert Boehne <[EMAIL PROTECTED]> writes: Robert> I seem to see this answer quite often to bug reports about the Robert> currently released autoconf v. 2.13. My question is, what is Robert> left to do before the next release? and how quickly can we Robert> get everything done?

Re: Bugfix for _AC_OBJEXT

2000-09-05 Thread Akim Demaille
> "Morten" == Morten Eriksen <[EMAIL PROTECTED]> writes: Morten> As I said, a hornet's nest. Was anyone on the list aware of Morten> these bugs? Yep, I am, and I agree it's frightening. Nevertheless I think that in the future, since we plan to rewrite most of the compiler related macros, we

Re: AC_C_BIGENDIAN

2000-09-05 Thread Lars J. Aas
Once upon a time, Akim Demaille wrote: : Hi People, : : Does anybody sees a means to compute this at compile time? Using the : same trick as we did for SIZEOF etc. : : The current test program is : : int : main () : { : /* Are we little or big endian? From Harbison&Steele. */ : union :

[patch] Extending AC_EXEEXT test

2000-09-05 Thread Bernard Dautrevaux
Dear sirs, While trying to use autoconf-2.13 on our cross-compiler toolkit, we get in a small glitch in AC_EXEEXT implementation. If it was not CYGWIN or MINGW32 (where .exe is assumed), the macro link a small program and looks to see if it found conftest.XXX where XXX is neither '.o' nor

RE: [patch] Extending AC_EXEEXT test

2000-09-05 Thread Bernard Dautrevaux
> -Original Message- > From: Bernard Dautrevaux > Sent: Tuesday, September 05, 2000 7:51 PM > To: '[EMAIL PROTECTED]' > Subject: [patch] Extending AC_EXEEXT test > > > > Dear sirs, > > While trying to use autoconf-2.13 on our cross-compiler > toolkit, we get in a small glitch i