Commit: 487e2fc0d50aca979864b59ff01450cf5e381874 Author: Jerome Loyet <[email protected]> Fri, 1 Jun 2012 11:26:55 +0200 Parents: 34b6a9b32cb1271441a8fa9f39f13d33f3a3e9ec Branches: master
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=487e2fc0d50aca979864b59ff01450cf5e381874 Log: - fix missing include for unix sockets Changed paths: M sapi/fpm/fpm/fpm_sockets.h Diff: diff --git a/sapi/fpm/fpm/fpm_sockets.h b/sapi/fpm/fpm/fpm_sockets.h index 5b9c698..499ba6b 100644 --- a/sapi/fpm/fpm/fpm_sockets.h +++ b/sapi/fpm/fpm/fpm_sockets.h @@ -7,6 +7,7 @@ #include <sys/types.h> #include <sys/socket.h> +#include <sys/un.h> #include <unistd.h> #include <fcntl.h> -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
