Notice that the libevent requeriment has been dropped since php-5.3.4.
http://bugs.php.net/52501
http://bugs.php.net/53691
Para habilitar FPM en la construcción de PHP, debe añadirse --enable-fpm
a la línea de configuración.
Hay otras opciones de configuración específicas de FPM (todas ellas optativas):
--with-fpm-user
- Establecer el usuario de FPM (por omisión: nobody).
--with-fpm-group
- Establecer el grupo de FPM (por omisión: nobody).
--with-fpm-systemd
- Activar la integración del sistema (por omisión: no).
--with-fpm-acl
- Utilizar las listas de control de acceso de POSIX (por omisión: no). Desde 5.6.5
Notice that the libevent requeriment has been dropped since php-5.3.4.
http://bugs.php.net/52501
http://bugs.php.net/53691
If you get a compile/link error with WCOREDUMP undefined, then define the following in sapi/fpm/fpm/fpm_children.c.
This happened to me when running on AIX, which apparently does not define this macro.
#ifndef WCOREDUMP
#define WCOREDUMP(x) 0
#endif
</pre>
An init startup script file can be found at :
./php-5.3.3/sapi/fpm/init.d.php-fpm
after successful compilation.