diff options
author | Mateusz Kocielski <shm@php.net> | 2014-03-18 09:51:39 +0100 |
---|---|---|
committer | Mateusz Kocielski <shm@php.net> | 2014-03-18 09:51:39 +0100 |
commit | ccae70b7650046fd5692a15b7148dac1862a65a3 (patch) | |
tree | e2a650e00db0d14865cbb6e810ba6319b1b03b18 /sapi/phpdbg/phpdbg.c | |
parent | a28389b2ab890058cab541ec92e2d53f4b5faf3f (diff) | |
download | php-git-ccae70b7650046fd5692a15b7148dac1862a65a3.tar.gz |
Fix phpdbg build on FreeBSD
Added missing netinet/in.h header.
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r-- | sapi/phpdbg/phpdbg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index 6cb1645e65..7e0e2bafcd 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -35,6 +35,7 @@ # include <sys/select.h> # include <sys/time.h> # include <sys/types.h> +# include <netinet/in.h> # include <unistd.h> # include <arpa/inet.h> #endif /* }}} */ |