Re: ac_cv_prog_gcc

2000-11-09 Thread Akim Demaille
| 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

Re: ac_cv_prog_gcc

2000-11-08 Thread Pavel Roskin
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:

Re: ac_cv_prog_gcc

2000-11-08 Thread Akim Demaille
| 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

Re: ac_cv_prog_gcc

2000-11-08 Thread Akim Demaille
| 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

Re: ac_cv_prog_gcc

2000-11-07 Thread Alexandre Oliva
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

Re: ac_cv_prog_gcc

2000-11-07 Thread Pavel Roskin
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

Re: ac_cv_prog_gcc

2000-11-07 Thread Akim Demaille
> "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.

Re: ac_cv_prog_gcc

2000-11-07 Thread Akim Demaille
| 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