php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #22989 mail() not discovered by configure
Submitted: 2003-03-31 13:27 UTC Modified: 2003-03-31 17:29 UTC
From: iguy at ionsphere dot org Assigned:
Status: Closed Package: Compile Failure
PHP Version: 4.3.1 OS: Redhat 8.0
Private report: No CVE-ID: None
 [2003-03-31 13:27 UTC] iguy at ionsphere dot org
On my RedHat 8.0 system I am running exim & apache 2.0 with the default autoconf of 2.53-8.  

When issuing the ./buildconf, ./configure <insert zillion options here> configure does not find sendmail in the path given to it.  That is because of a bug in the autoconf 2.53 code base where AC_PROG_PATH does not properly search through non-expanded parameters passed to the search string.  ie.  
$PATH:/usr/sbin -> it will search through the properly expanded $PATH but will not search in /usr/sbin.  

As such I would like ot recommend this patch which should work with 2.13 & all versions of autoconf going forward.

diff -Naur php-4.3.1.org/aclocal.m4 php-4.3.1/aclocal.m4
--- php-4.3.1.org/aclocal.m4    2003-02-16 08:56:17.000000000 -0700
+++ php-4.3.1/aclocal.m4        2003-03-31 12:14:24.000000000 -0700
@@ -713,7 +713,8 @@
 ])
 
 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

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-03-31 17:29 UTC] sniper@php.net
This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 05:01:29 2024 UTC