jon             Thu Jul  3 00:14:42 2003 EDT

  Modified files:              
    /php-src    INSTALL README.TESTING README.UNIX-BUILD-SYSTEM 
  Log:
  Update documentation for PHP 5.
  
  
Index: php-src/INSTALL
diff -u php-src/INSTALL:1.32 php-src/INSTALL:1.33
--- php-src/INSTALL:1.32        Sat Feb  1 06:18:53 2003
+++ php-src/INSTALL     Thu Jul  3 00:14:42 2003
@@ -1,4 +1,4 @@
-Installation Instructions for PHP 4
+Installation Instructions for PHP 5
 -----------------------------------
 
 STOP!
@@ -108,8 +108,8 @@
 $ make install
 
 $ cd ../apache_1.3.x
-$ ./configure --prefix=/www --activate-module=src/modules/php4/libphp4.a
- (The above line is correct!  Yes, we know libphp4.a does not exist at this
+$ ./configure --prefix=/www --activate-module=src/modules/php5/libphp5.a
+ (The above line is correct!  Yes, we know libphp5.a does not exist at this
   stage.  It isn't supposed to.  It will be created.)
 $ make
  (you should now have an httpd binary which you can copy to your Apache bin dir if
@@ -226,7 +226,7 @@
 3b.   Static Module Installation
 
    For the Apache module version this will copy the appropriate files
-   to the src/modules/php4 directory in your Apache distribution if
+   to the src/modules/php5 directory in your Apache distribution if
    you are using Apache 1.3.x.  If you are still running Apache 1.2.x
    these files will be copied directly to the main src directory.
 
@@ -235,7 +235,7 @@
 
        cd apache_1.3.x
        ./configure --prefix=/<path>/apache \
-                   --activate-module=src/modules/php4/libphp4.a
+                   --activate-module=src/modules/php5/libphp5.a
        make
        make install
 
@@ -248,29 +248,29 @@
 
    For Apache 1.3.x add:
 
-      AddModule modules/php4/libphp4.a
+      AddModule modules/php5/libphp5.a
 
    For Apache 1.3.x don't do anything else.  Just add this line and then
    run "./Configure" followed by "make".
 
    For Apache 1.2.x add:
 
-      Module php4_module mod_php4.o
+      Module php5_module mod_php5.o
 
-   For Apache 1.2.x you will also have to look in the libphp4.module file,
+   For Apache 1.2.x you will also have to look in the libphp5.module file,
    which was copied to the src directory. The EXTRA_LIBS line in the Apache
    Configuration file needs to be set to use the same libs as specified on
-   the LIBS line in libphp4.module. You also need to make sure to add
+   the LIBS line in libphp5.module. You also need to make sure to add
    "-L." to the beginning of the EXTRA_LIBS line.
 
    So, as an example, your EXTRA_LIBS line might look like:
 
-       EXTRA_LIBS=-L. -lphp4 -lgdbm -ldb -L/usr/local/mysql/lib -lmysqlclient
+       EXTRA_LIBS=-L. -lphp5 -lgdbm -ldb -L/usr/local/mysql/lib -lmysqlclient
 
    NOTE: You should not enclose the EXTRA_LIBS line in double-quotes, as it
-   is in the libphp4.module file.
+   is in the libphp5.module file.
 
-   Also, look at the RULE_WANTHSREGEX setting in the libphp4.module file 
+   Also, look at the RULE_WANTHSREGEX setting in the libphp5.module file 
    and set the WANTHSREGEX directive accordingly in your Configuration file.
    This last step applies to versions of Apache prior to 1.3b3.
 
@@ -291,17 +291,17 @@
    enable the dynamic PHP module.  To verify this, look for a line that
    looks like this:
 
-      LoadModule php4_module libexec/libphp4.so
+      LoadModule php5_module libexec/libphp5.so
 
-   The actual path before the libphp4.so part might differ slightly.  This
+   The actual path before the libphp5.so part might differ slightly.  This
    is likely fine.  If you are paranoid you can examine the output from the
-   make install step to see where the libphp4.so file was actually put and
+   make install step to see where the libphp5.so file was actually put and
    place the full path to this file on this LoadModule line.
 
    If somewhere in your httpd.conf file you have a ClearModuleList line
    then you also need this line:
 
-      AddModule mod_php4.c
+      AddModule mod_php5.c
 
    And finally you need to tell Apache which file extension should trigger
    PHP.  You do this by creating a special mime type and associating it
Index: php-src/README.TESTING
diff -u php-src/README.TESTING:1.21 php-src/README.TESTING:1.22
--- php-src/README.TESTING:1.21 Wed Mar 19 13:04:17 2003
+++ php-src/README.TESTING      Thu Jul  3 00:14:42 2003
@@ -108,7 +108,7 @@
 ========== qa-test.sh =============
 #!/bin/sh
 
-CO_DIR=$HOME/cvs/php4
+CO_DIR=$HOME/cvs/php5
 [EMAIL PROTECTED]
 TMPDIR=/var/tmp
 TODAY=`date +"%Y%m%d"`
Index: php-src/README.UNIX-BUILD-SYSTEM
diff -u php-src/README.UNIX-BUILD-SYSTEM:1.3 php-src/README.UNIX-BUILD-SYSTEM:1.4
--- php-src/README.UNIX-BUILD-SYSTEM:1.3        Wed Oct 23 17:46:40 2002
+++ php-src/README.UNIX-BUILD-SYSTEM    Thu Jul  3 00:14:42 2003
@@ -108,7 +108,7 @@
 
 For example for APXS:
 
-PHP_SELECT_SAPI(apache, shared, sapi_apache.c mod_php4.c php_apache.c)
+PHP_SELECT_SAPI(apache, shared, sapi_apache.c mod_php5.c php_apache.c)
 
 
 



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

Reply via email to