head	1.2;
access;
symbols
	old_BEFORE_PHP_4_2_0:1.1
	old_RELEASE_5_0_DP1:1.1
	old_RELEASE_4_5_0:1.1
	old_BEFORE_PHP_4_1_0:1.1
	old_RELEASE_4_4_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2002.04.27.11.15.18;	author dirk;	state dead;
branches;
next	1.1;

1.1
date	2001.06.12.20.19.46;	author dirk;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Upgrade to 4.2.0.

Don't upgrade to this version blindly. External variables handling
has been changed. This will break your application if they don't
take care of this.

There is a CVS tag (BEFORE_PHP_4_2_0) for the latest non-4.2.0
version (4.1.2).

-------------------------------------------------------------------------

The biggest change in PHP 4.2.0 concerns variable handling. External
variables (from the environment, the HTTP request, cookies or the web
server) are no longer registered in the global scope by default. The
preferred method of accessing these external variables is by using the new
Superglobal arrays, introduced in PHP 4.1.0. More information about this
change:

    * PHP Manual: Predefined variables
      http://www.php.net/manual/en/html/language.variables.predefined.html
@
text
@--- ext/pspell/pspell.c.orig	Mon Feb 26 07:07:13 2001
+++ ext/pspell/pspell.c	Tue Jun 12 22:08:33 2001
@@@@ -32,7 +32,7 @@@@
 #define USE_ORIGINAL_MANAGER_FUNCS
 
 #include "php_pspell.h"
-#include <pspell/pspell.h>
+#include <pspell.h>
 #include "ext/standard/info.h"
 
 #define PSPELL_FAST 1L
@


1.1
log
@Add pspell support option.

PR:		ports/27256
@
text
@@

