Geoff Hutchison <[EMAIL PROTECTED]> writes:
> I think that's probably sufficient. Is there any place in the
> autoconf manual that talks about how to access the programs you've
> already found? For example, what variable contains the path to the
> compiler? Is it ac_cxx_prog or something like that?
I'm not sure it's either mentioned in the manual or guaranteed to stay
constant, but there's are some shell variable that are set like this
that you might use:
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext
$LIBS 1>&5'
Otherwise, just take the ordinary $CC, *FLAGS and that.
/assar