mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-03 11:12:13 +00:00
Add WANT_PHP_WEB knob, for ports that require a web
server to work, but for which is indifferent the PHP sapi (CGI or Apache Module). PR: ports/53800 Submitted by: Alex Dupre <sysadmin@alexdupre.com> (maintainer)
This commit is contained in:
parent
4f29d7ecf6
commit
11024207d2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=84106
@ -6,6 +6,7 @@
|
||||
# WANT_PHP_CLI=yes - Want the CLI version of PHP.
|
||||
# WANT_PHP_CGI=yes - Want the CGI version of PHP.
|
||||
# WANT_PHP_MOD=yes - Want the Apache Module for PHP.
|
||||
# WANT_PHP_WEB=yes - Want the Apache Module or the CGI version of PHP.
|
||||
#
|
||||
# You may combine multiple WANT_PHP_* knobs.
|
||||
# Don't specify any WANT_PHP_* knob if your port will work with every PHP SAPI.
|
||||
@ -48,6 +49,17 @@ PHP_PORT?= ${PORTSDIR}/lang/php4-cli
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if defined(WANT_PHP_WEB)
|
||||
.if defined(HAVE_PHP) && !defined(HAVE_PHP_CGI) && !defined(HAVE_PHP_MOD)
|
||||
.BEGIN:
|
||||
@${ECHO_CMD} "This port requires the Apache Module or the CGI version of PHP, but you have"
|
||||
@${ECHO_CMD} "already installed a conflicting PHP port without them."
|
||||
@${FALSE}
|
||||
.else
|
||||
PHP_PORT?= ${PORTSDIR}/www/mod_php4
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if defined(WANT_PHP_CGI)
|
||||
.if defined(HAVE_PHP) && !defined(HAVE_PHP_CGI)
|
||||
.BEGIN:
|
||||
|
@ -6,6 +6,7 @@
|
||||
# WANT_PHP_CLI=yes - Want the CLI version of PHP.
|
||||
# WANT_PHP_CGI=yes - Want the CGI version of PHP.
|
||||
# WANT_PHP_MOD=yes - Want the Apache Module for PHP.
|
||||
# WANT_PHP_WEB=yes - Want the Apache Module or the CGI version of PHP.
|
||||
#
|
||||
# You may combine multiple WANT_PHP_* knobs.
|
||||
# Don't specify any WANT_PHP_* knob if your port will work with every PHP SAPI.
|
||||
@ -48,6 +49,17 @@ PHP_PORT?= ${PORTSDIR}/lang/php4-cli
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if defined(WANT_PHP_WEB)
|
||||
.if defined(HAVE_PHP) && !defined(HAVE_PHP_CGI) && !defined(HAVE_PHP_MOD)
|
||||
.BEGIN:
|
||||
@${ECHO_CMD} "This port requires the Apache Module or the CGI version of PHP, but you have"
|
||||
@${ECHO_CMD} "already installed a conflicting PHP port without them."
|
||||
@${FALSE}
|
||||
.else
|
||||
PHP_PORT?= ${PORTSDIR}/www/mod_php4
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if defined(WANT_PHP_CGI)
|
||||
.if defined(HAVE_PHP) && !defined(HAVE_PHP_CGI)
|
||||
.BEGIN:
|
||||
|
@ -6,6 +6,7 @@
|
||||
# WANT_PHP_CLI=yes - Want the CLI version of PHP.
|
||||
# WANT_PHP_CGI=yes - Want the CGI version of PHP.
|
||||
# WANT_PHP_MOD=yes - Want the Apache Module for PHP.
|
||||
# WANT_PHP_WEB=yes - Want the Apache Module or the CGI version of PHP.
|
||||
#
|
||||
# You may combine multiple WANT_PHP_* knobs.
|
||||
# Don't specify any WANT_PHP_* knob if your port will work with every PHP SAPI.
|
||||
@ -48,6 +49,17 @@ PHP_PORT?= ${PORTSDIR}/lang/php4-cli
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if defined(WANT_PHP_WEB)
|
||||
.if defined(HAVE_PHP) && !defined(HAVE_PHP_CGI) && !defined(HAVE_PHP_MOD)
|
||||
.BEGIN:
|
||||
@${ECHO_CMD} "This port requires the Apache Module or the CGI version of PHP, but you have"
|
||||
@${ECHO_CMD} "already installed a conflicting PHP port without them."
|
||||
@${FALSE}
|
||||
.else
|
||||
PHP_PORT?= ${PORTSDIR}/www/mod_php4
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if defined(WANT_PHP_CGI)
|
||||
.if defined(HAVE_PHP) && !defined(HAVE_PHP_CGI)
|
||||
.BEGIN:
|
||||
|
Loading…
x
Reference in New Issue
Block a user