]> git.pld-linux.org Git - packages/php.git/blob - php-use-prog_sendmail.patch
Up to 7.3.24
[packages/php.git] / php-use-prog_sendmail.patch
1 --- php-7.3.24/acinclude.m4~    2020-11-09 14:38:20.000000000 +0200
2 +++ php-7.3.24/acinclude.m4     2020-11-09 14:39:53.522036584 +0200
3 @@ -1731,8 +1731,10 @@
4  dnl Search for the sendmail binary.
5  dnl
6  AC_DEFUN([PHP_PROG_SENDMAIL], [
7 -  PHP_ALT_PATH=/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib
8 -  AC_PATH_PROG(PROG_SENDMAIL, sendmail, /usr/sbin/sendmail, $PATH:$PHP_ALT_PATH)
9 +  if test -z "$PROG_SENDMAIL"; then
10 +    PHP_ALT_PATH=/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib
11 +    AC_PATH_PROG(PROG_SENDMAIL, sendmail, /usr/sbin/sendmail, $PATH:$PHP_ALT_PATH)
12 +  fi
13    PHP_SUBST(PROG_SENDMAIL)
14  ])
15  
This page took 0.033527 seconds and 3 git commands to generate.