diff options
author | Jeff Trawick <trawick@apache.org> | 2000-06-24 04:01:28 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-06-24 04:01:28 +0200 |
commit | de5c9c1eda39049c41d35363f7a84f0a9f03a894 (patch) | |
tree | fb774554188dca57cdb0ef221b97b9e28fd03f38 /server | |
parent | Fix a couple of problems associated with recognizing when file (diff) | |
download | apache2-de5c9c1eda39049c41d35363f7a84f0a9f03a894.tar.xz apache2-de5c9c1eda39049c41d35363f7a84f0a9f03a894.zip |
OS/390 needs arpa/inet.h for htonl().
Submitted by: Greg Ames
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85681 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r-- | server/config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/config.c b/server/config.c index 1d2f58fa83..fae6451c8b 100644 --- a/server/config.c +++ b/server/config.c @@ -84,6 +84,9 @@ #include "http_main.h" #include "http_vhost.h" #include "util_cfgtree.h" +#ifdef HAVE_ARPA_INET_H +#include <arpa/inet.h> +#endif API_VAR_EXPORT const char *ap_server_argv0; |