Commit: 35abf3f20c36109b4afdcbd62db9a1846575ac3d Author: Jerome Loyet <[email protected]> Fri, 1 Jun 2012 11:16:53 +0200 Parents: 59e0930d37e2a559317e2c08ecfee5a84bde925d Branches: PHP-5.3
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=35abf3f20c36109b4afdcbd62db9a1846575ac3d 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
