On Wed, 2001-11-07 at 11:54, John Poltorak wrote: > > So this line:- > > test "$mktemp_cv_progname" = "yes" && AC_DEFINE(HAVE_PROGNAME) > > should be changed to something like:- ? > > test "$mktemp_cv_progname" = "yes" && AC_DEFINE(HAVE_PROGNAME, 1, [foo]) >
Exactly (though I'd prefer an if/then over '&&' for clarity). And it should probably use '"x$foo" = "xyes"' to be robust against $foo being empty.