diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2005-07-16 12:21:34 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2005-07-16 12:21:34 +0000 |
commit | d77acff66fcd643a5cd418e34f79f8be00e46f9b (patch) | |
tree | 591e913f63d3f49eba1e3f103ada9743df2c15ff /main/main.c | |
parent | 032d0962c2d8e2e0c6f285f5212277a8089cc558 (diff) | |
download | php-git-d77acff66fcd643a5cd418e34f79f8be00e46f9b.tar.gz |
main/fopen_wrappers.c
NetWare file names are case insensitive
main/main.c
NetWare has no sendmail binary. It uses the smart host mailing code avaiolable in php distro. Could not find a better place to put this than main/main.c.
-- Kamesh
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index 6a792e8bff..9c17d0fcb8 100644 --- a/main/main.c +++ b/main/main.c @@ -222,7 +222,7 @@ static PHP_INI_MH(OnUpdateTimeout) # define PHP_SAFE_MODE_EXEC_DIR "" #endif -#ifdef PHP_PROG_SENDMAIL +#if defined(PHP_PROG_SENDMAIL) && !defined(NETWARE) # define DEFAULT_SENDMAIL_PATH PHP_PROG_SENDMAIL " -t -i " #else # define DEFAULT_SENDMAIL_PATH NULL |