[PHP-DEV] PHP 4.0 Bug #9362 Updated: When sendmail not available, get compile errors From: amra <email protected>
Date: 02/22/01

ID: 9362
User Update by: amra <email protected>
Status: Closed
Bug Type: Compile Failure
Description: When sendmail not available, get compile errors

You still need to put the ifdefs in basic_functions.c, no?

Previous Comments:
---------------------------------------------------------------------------

[2001-02-21 02:41:19] sas <email protected>
Thanks, I've changed the sendmail check not to assume that sendmail lives in /usr/lib.

---------------------------------------------------------------------------

[2001-02-20 17:28:39] amra <email protected>
When sendmail is not available on a system, get compiler errors:

"basic_functions.c", line 486.9: 1506-045 (S) Undeclared identifier php_if_mail.
"basic_functions.c", line 487.9: 1506-045 (S) Undeclared identifier php_if_ezmlm_hash.

I got around the error by doing the following in the above file:

#ifdef HAVE_SENDMAIL
        /* functions from mail.c */
        PHP_FE(mail, NULL)
        PHP_FE(ezmlm_hash, NULL)
#else
        PHP_FALIAS(mail , warn_not_available, NULL)
        PHP_FALIAS(ezmlm_hash, warn_not_available, NULL)
#endif

I think that HAVE_SENDMAIL needs to be checked.....

---------------------------------------------------------------------------

Full Bug description available at: http://bugs.php.net/?id=9362

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>