From d38d39a46c4172b4af583cf219247cbded945b0d Mon Sep 17 00:00:00 2001 From: foobar Date: Mon, 31 Mar 2003 23:21:41 +0000 Subject: Fixed bug #22989 (sendmail not found by configure) --- acinclude.m4 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'acinclude.m4') diff --git a/acinclude.m4 b/acinclude.m4 index 207cacd031..5587aedc39 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -679,7 +679,8 @@ AC_DEFUN([PHP_CONFIGURE_PART],[ ]) AC_DEFUN([PHP_PROG_SENDMAIL],[ -AC_PATH_PROG(PROG_SENDMAIL, sendmail,[], $PATH:/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib) +PHP_ALT_PATH=/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib +AC_PATH_PROG(PROG_SENDMAIL, sendmail,[], $PATH:$PHP_ALT_PATH) if test -n "$PROG_SENDMAIL"; then AC_DEFINE(HAVE_SENDMAIL,1,[whether you have sendmail]) fi -- cgit v1.2.1