Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions sapi/fpm/fpm/fpm_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

#include <php_config.h>

#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif

/* Solaris does not have it */
#ifndef INADDR_NONE
# define INADDR_NONE (-1)
Expand Down
Loading