summaryrefslogtreecommitdiff
path: root/sapi/embed
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2002-10-12 01:18:04 +0000
committerfoobar <sniper@php.net>2002-10-12 01:18:04 +0000
commit204b3b5fbd8912caad90565e81e48dee1409e61a (patch)
treedd73291308e288e32ac23864858803b35600396e /sapi/embed
parent3e23ab6893c1ee342da4ea30bd6ffb15f78a092d (diff)
downloadphp-git-204b3b5fbd8912caad90565e81e48dee1409e61a.tar.gz
Add the proper install lines.
Diffstat (limited to 'sapi/embed')
-rw-r--r--sapi/embed/config.m46
1 files changed, 4 insertions, 2 deletions
diff --git a/sapi/embed/config.m4 b/sapi/embed/config.m4
index 69f41009f3..fe14c74bdd 100644
--- a/sapi/embed/config.m4
+++ b/sapi/embed/config.m4
@@ -5,15 +5,17 @@ dnl
AC_MSG_CHECKING(for embedded SAPI library support)
AC_ARG_ENABLE(embed,
-[ --enable-embed[=TYPE] Enable building embedded SAPI library of PHP
- TYPE is either 'shared' or 'static'. Defaults to 'static' library.],
+[ --enable-embed[=TYPE] Enable building of embedded SAPI library
+ TYPE is either 'shared' or 'static'. [TYPE=shared]],
[
case $enableval in
yes|shared)
PHP_EMBED_TYPE=shared
+ INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED \$(INSTALL_ROOT)/lib"
;;
static)
PHP_EMBED_TYPE=static
+ INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_STATIC \$(INSTALL_ROOT)/lib"
;;
*)
PHP_EMBED_TYPE=no