Inform users and developers about the new PHP infrastructure.

This commit is contained in:
Alex Dupre 2004-07-19 09:34:42 +00:00
parent 4622dd168c
commit e5e0d7d824
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=114189
2 changed files with 41 additions and 0 deletions

28
CHANGES
View File

@ -10,6 +10,34 @@ in the release notes.
All ports committers are allowed to commit to this file.
20040719:
AUTHOR: ale@FreeBSD.org
There has been a big update to PHP ports and bsd.php.mk to add more
flexibility and new features.
Now a port may depend on a specific set of PHP extensions. To do so,
simply replace:
USE_PHP= yes
with:
USE_PHP= ext1 ext2 ext3 ...
in the port Makefile. A list of all PHP extensions is included in bsd.php.mk.
If the requirement is a build dependency, too, the port should also define:
USE_PHP_BUILD=yes
Moreover, the new knob WANT_PHP_SCR has been added to indicate that the port
requires the 'php' binary to run.
Last but not list, many common operations done to build/install/register a
PHP extension can now be omitted from the port Makefile, if it defines:
USE_PHPEXT= yes
For more information on this point and on additional variables, give a look
at bsd.php.mk.
20040717:
AUTHOR: eik@FreeBSD.org
OpenLDAP version 2.2 is now the default.

View File

@ -6,6 +6,19 @@ You should get into the habit of checking this file for changes each
time you update your ports collection, before attempting any port
upgrades.
20040719:
AFFECTS: users of PHP
AUTHOR: ale@FreeBSD.org
The old lang/php4 and lang/php5 ports have been splitted into 'base' PHP,
PEAR, and shared extensions to allow more flexibility and add new features.
Upgrading your current PHP installation will result in a 'base' PHP
installation (no PEAR and no extensions).
PEAR can be found in the new devel/php4-pear and devel/php5-pear ports, while
the set of PHP extensions to install can be choosen via the meta-ports
lang/php4-extensions and lang/php5-extensions, or installing singular
extensions individually.
20040717:
AFFECTS: users of net/openldap2[12]{,-sasl}-client