- Source code: pear/CMakeLists.txt
Configure PEAR as part of the PHP installation.
Warning
PEAR installation as part of PHP is deprecated as of PHP 7.4 and will be removed in future PHP versions. PEAR can also be installed manually from the pear.php.net website.
🟠 Deprecated as of PHP 7.4.
- Default:
OFF
- Values:
ON|OFF
Install PEAR, PHP Extension and Application Repository package manager.
🟠 Deprecated as of PHP 7.4.
- Default:
DATADIR/pear
The path where PEAR will be installed to. CMAKE_INSTALL_PREFIX
is
automatically prepended when given as a relative path.
🟠 Deprecated as of PHP 7.4.
- Default:
tmp/pear
on *nix andtemp/pear
on Windows
The PEAR temporary directory where PEAR writes temporary files, such as cache,
downloaded packages artifacts and similar. Pass it as a relative path inside the
top level system directory, which will be automatically prepended. If given as
an absolute path, top level directory is not prepended. Relative path is added
to the top root system directory (/
on *nix, or C:/
on Windows).
For example, default PEAR temporary directory after the top level system
directory is prepended becomes /tmp/pear
on *nix and C:/temp/pear
on
Windows.