I have MAMP and I need to enable -pcntl on my current MAMP installation.
How can I do so?
Thanks for your help.
|
|
There is a way of compiling PCNTL as an extension and linking it in to an existing PHP build, but it's a bit in-depth. I'm doing the following on Mac OSX Snow Leopard (64bit), with MAMP and PHP version 5.3.6. Remember to change PHP version numbers in the following lines if yours is different! Please note that First, download a tar of the PHP source code that matches the version you are using in MAMP (e.g. mine is 5.3.6), which you can do at http://www.php.net/releases/. Untar and CD to php-[version]/ext/pcntl, e.g.:
You then need to run
This creates a bunch of files that are needed for preparing a extension for compiling. We now need to add some flags to tell it to compile the library with dual 32bit and 64bit architecture, as the MAMP PHP has been built this way. If you don't do this, the compiled shared objects won't work.
We can then run
This puts a file called
Finally, edit the PHP INI file to include the extension:
PCNTL should now be enabled. To check to see whether it has been added, just run:
If you see that, it's worked! If anything has gone wrong you can just remove the |
|||||||||||||||
|
|
Just to make my life easier I made a script from the other post. I used it to add extensions pcntl, sysvmsg, sysvshm, sysvsem and others to MAMP. To use cd to the extension directory or pass the directory as an argument to the script. Example ./addExtension.sh php-5.3.6/ext/pcntl
|
||||
|
|
|
If you have 'brew' installed on your MAC then you should be able to do:
I am no expert on MAMP though. |
|||
|
|