sas Tue Feb 20 23:39:13 2001 EDT Modified files: /php4 acinclude.m4 Log: Instead of assuming that sendmail lives in /usr/lib, if we don't find it, we also check /usr/lib now. PR: #9362 Index: php4/acinclude.m4 diff -u php4/acinclude.m4:1.120 php4/acinclude.m4:1.121 --- php4/acinclude.m4:1.120 Sun Jan 7 03:36:15 2001 +++ php4/acinclude.m4 Tue Feb 20 23:39:13 2001 @@ -1,4 +1,4 @@ -dnl $Id: acinclude.m4,v 1.120 2001/01/07 11:36:15 venaas Exp $ +dnl $Id: acinclude.m4,v 1.121 2001/02/21 07:39:13 sas Exp $ dnl dnl This file contains local autoconf functions. @@ -387,7 +387,7 @@ ]) AC_DEFUN(PHP_PROG_SENDMAIL,[ -AC_PATH_PROG(PROG_SENDMAIL, sendmail, /usr/lib/sendmail, $PATH:/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib) +AC_PATH_PROG(PROG_SENDMAIL, sendmail,[], +$PATH:/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib) if test -n "$PROG_SENDMAIL"; then AC_DEFINE(HAVE_SENDMAIL,1,[whether you have sendmail]) fi -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]