Is this a bug in autoconf?

2000-04-20 Thread Mo DeJong
I want to set up my project so that I can cross compile, and I thought autoconf would help me do that. I put the AC_CANONICAL_HOST macro at the top of my configure.in file. I built a cross compiler for cygwin and put it on my path. But when I try to run ./configure with a target argument, it do

Re: AC_PROG_CC_STDC patch

2000-04-20 Thread T.E.Dickey
> > Peter Eisentraut <[EMAIL PROTECTED]> writes: > > > I've written about it before, here's the patch. It changes > > AC_PROG_CC_STDC to try the `-std' flag rather than `-std1' (for OSF > > or Ultrix) because the latter is kind of like 'gcc -ansi' (i.e., > > terminally strict). > > This

Re: AC_PROG_CC_STDC patch

2000-04-20 Thread Johan Danielsson
Peter Eisentraut <[EMAIL PROTECTED]> writes: > I've written about it before, here's the patch. It changes > AC_PROG_CC_STDC to try the `-std' flag rather than `-std1' (for OSF > or Ultrix) because the latter is kind of like 'gcc -ansi' (i.e., > terminally strict). This of course depends on what

Re: fix for AC_FUNC_MKTIME

2000-04-20 Thread Akim Demaille
> "Dave" == Dave Love <[EMAIL PROTECTED]> writes: Dave> If AC_FUNC_MKTIME is the only test that might use LIBOBJS, you Dave> lose with a working mktime because LIBOBJS doesn't get Dave> substituted. Thanks! Will be applied. Akim