| Hello, Akim!
| > For instance if for some reason the user had
| >
| > AC_CANONICAL_SYSTEM([This macro computes $host])(echo "$host")
| >
| > then autoupdate with parens (the current one) will produce
| >
| > AC_CANONICAL_TARGET([])(echo "$host")
| >
| > which is correct, while without paren
Hello, Akim!
> For instance if for some reason the user had
>
> AC_CANONICAL_SYSTEM([This macro computes $host])(echo "$host)
>
> then autoupdate with parens (the current one) will produce
>
> AC_CANONICAL_TARGET([])(echo "$host)
>
> which is correct, while without parens you'd produce this:
| On Nov 7, 2000, Pavel Roskin <[EMAIL PROTECTED]> wrote:
| > Hello, Akim!
| >> > $ac_cv_c_compiler_gnu() = yes;
| >>
| Akim> Heck. Thanks for noticing :(
| >>
| >> I'm checking in the fix, thanks!
| >>
| >> * aclang.m4 (ac_cv_prog_gcc, ac_cv_prog_gxx, ac_cv_prog_g77):
| >> Be AU_DEFUN'd, no
| Hello, Akim!
| > > $ac_cv_c_compiler_gnu() = yes;
| >
| > Akim> Heck. Thanks for noticing :(
| >
| > I'm checking in the fix, thanks!
| >
| > * aclang.m4 (ac_cv_prog_gcc, ac_cv_prog_gxx, ac_cv_prog_g77):
| > Be AU_DEFUN'd, not AU_ALIAS'd.
|
| I'm afraid you are fixing the s
On Nov 7, 2000, Pavel Roskin <[EMAIL PROTECTED]> wrote:
> Hello, Akim!
>> > $ac_cv_c_compiler_gnu() = yes;
>>
Akim> Heck. Thanks for noticing :(
>>
>> I'm checking in the fix, thanks!
>>
>> * aclang.m4 (ac_cv_prog_gcc, ac_cv_prog_gxx, ac_cv_prog_g77):
>> Be AU_DEFUN'd, not AU_ALIAS'd.
> I'm
Hello, Akim!
> > $ac_cv_c_compiler_gnu() = yes;
>
> Akim> Heck. Thanks for noticing :(
>
> I'm checking in the fix, thanks!
>
> * aclang.m4 (ac_cv_prog_gcc, ac_cv_prog_gxx, ac_cv_prog_g77):
> Be AU_DEFUN'd, not AU_ALIAS'd.
I'm afraid you are fixing the symptoms, not the cause
> "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes:
> $ac_cv_c_compiler_gnu() = yes;
Akim> Heck. Thanks for noticing :(
I'm checking in the fix, thanks!
* aclang.m4 (ac_cv_prog_gcc, ac_cv_prog_gxx, ac_cv_prog_g77):
Be AU_DEFUN'd, not AU_ALIAS'd.
| Hi,
| With autoconf-2.13, I have been using constructs like the one below
| to detect whether gcc is used:
| [Similar constructs are used in libiberty, libgloss, newlib and
| Cygwin's winsup]
|
| if test $ac_cv_prog_gcc = yes; then
| # do something
| fi
|
| This test relies on the value of ac