diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2005-05-23 21:45:21 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2005-05-23 21:45:21 +0000 |
commit | 1d7dd25e60e7d4c42c8453630b5610cf1e00cfd3 (patch) | |
tree | ae671fd201fce31d8a8d0248717cf0f17f4d5feb /devel/php-pcntl | |
parent | 87aa12f18574caf9f2bcad30db8677300396b748 (diff) | |
download | pkgsrc-1d7dd25e60e7d4c42c8453630b5610cf1e00cfd3.tar.gz |
Add php-pcntl - PHP process control function extension.
Diffstat (limited to 'devel/php-pcntl')
-rw-r--r-- | devel/php-pcntl/DESCR | 8 | ||||
-rw-r--r-- | devel/php-pcntl/Makefile | 12 |
2 files changed, 20 insertions, 0 deletions
diff --git a/devel/php-pcntl/DESCR b/devel/php-pcntl/DESCR new file mode 100644 index 00000000000..70cb8290c12 --- /dev/null +++ b/devel/php-pcntl/DESCR @@ -0,0 +1,8 @@ +PHP is a programming language designed to be embedded into web pages. +This module provides support for Process Control functions. + +Process Control support in PHP implements the Unix style of process +creation, program execution, signal handling and process termination. +Process Control should not be enabled within a webserver environment +and unexpected results may happen if any Process Control functions +are used within a webserver environment. diff --git a/devel/php-pcntl/Makefile b/devel/php-pcntl/Makefile new file mode 100644 index 00000000000..657555f089f --- /dev/null +++ b/devel/php-pcntl/Makefile @@ -0,0 +1,12 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/05/23 21:45:21 jdolecek Exp $ + +MODNAME= pcntl +CATEGORIES+= devel +PKGREVISION= # empty +COMMENT= PHP extension for Process Control functions + + +CONFIGURE_ARGS+= --enable-${MODNAME}=shared + +.include "../../lang/php/ext.mk" +.include "../../mk/bsd.pkg.mk" |