On 990311, at 01:37:29, Scott McDermott wrote:
> David Ellement on Sun 7/03 10:21 -0800:
> > > --- configure.in Thu Mar 4 18:21:48 1999
> > > +++ configure.in.new Fri Mar 5 06:38:19 1999
> > > @@ -30,7 +30,8 @@
> > > ;;
> > > esac
> > >
> > > -AC_PATH_PROG(SENDMAIL, sendmail, no, $PATH:/usr/sbin:/usr/lib)
> > > +ac_aux_path_sendmail=":/usr/sbin:/usr/lib"
> > > +AC_PATH_PROG(SENDMAIL, sendmail, no, $PATH$ax_aux_path_sendmail)
> > > AC_DEFINE_UNQUOTED(SENDMAIL, "$ac_cv_path_SENDMAIL")
> > >
> > > OPS='$(srcdir)/OPS'
> >
> > After applying this patch on HP-UX 10.20, configure could not find
> > sendmail.
>
> I assume that you rebuilt configure?
Yes:
make distclean
autoheader
autoconf
configure
I posted a follow-up message to my message a day later: the cause of the
problem is a typographical error in the patch as posted. It defines the
variable ac_aux_path_sendmail, but references the (undefined) variable
ax_aux_path_sendmail (note: ac_ vs. ax_). After fixing the typo,
configure ran correctly.
--
David Ellement