diff options
author | Jerome Loyet <fat@php.net> | 2012-06-01 11:22:18 +0200 |
---|---|---|
committer | Jerome Loyet <fat@php.net> | 2012-06-01 11:22:18 +0200 |
commit | ec4a1d576b07f05e65a649842ed701def21adadd (patch) | |
tree | 01531345747a6620675cba7f9cce42d9dc9747d6 | |
parent | 43ec7088829338decce93ea4aada34f0bb6f069b (diff) | |
download | php-git-ec4a1d576b07f05e65a649842ed701def21adadd.tar.gz |
- fix missing include for unix sockets
-rw-r--r-- | sapi/fpm/fpm/fpm_sockets.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/fpm/fpm/fpm_sockets.h b/sapi/fpm/fpm/fpm_sockets.h index 5b9c698c2a..499ba6baf8 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> |