Commit: ec4a1d576b07f05e65a649842ed701def21adadd Author: Jerome Loyet <[email protected]> Fri, 1 Jun 2012 11:22:18 +0200 Parents: 43ec7088829338decce93ea4aada34f0bb6f069b Branches: PHP-5.4
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=ec4a1d576b07f05e65a649842ed701def21adadd 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
