sniper          Fri Oct 11 21:18:04 2002 EDT

  Modified files:              
    /php4/sapi/embed    config.m4 
  Log:
  Add the proper install lines.
  
  
Index: php4/sapi/embed/config.m4
diff -u php4/sapi/embed/config.m4:1.3 php4/sapi/embed/config.m4:1.4
--- php4/sapi/embed/config.m4:1.3       Fri Oct 11 20:54:53 2002
+++ php4/sapi/embed/config.m4   Fri Oct 11 21:18:04 2002
@@ -1,19 +1,21 @@
 dnl
-dnl $Id: config.m4,v 1.3 2002/10/12 00:54:53 sniper Exp $
+dnl $Id: config.m4,v 1.4 2002/10/12 01:18:04 sniper Exp $
 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



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to