You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2009/05/31 09:53:07 UTC

svn commit: r780378 - /httpd/mod_ftp/trunk/build/Makefile.apxs

Author: wrowe
Date: Sun May 31 07:53:07 2009
New Revision: 780378

URL: http://svn.apache.org/viewvc?rev=780378&view=rev
Log:
Fix solaris (apxs-style) detection of netinet/ip.h

Modified:
    httpd/mod_ftp/trunk/build/Makefile.apxs

Modified: httpd/mod_ftp/trunk/build/Makefile.apxs
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/build/Makefile.apxs?rev=780378&r1=780377&r2=780378&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/build/Makefile.apxs (original)
+++ httpd/mod_ftp/trunk/build/Makefile.apxs Sun May 31 07:53:07 2009
@@ -57,7 +57,8 @@
 	@echo "#include <arpa/ftp.h>" > $@
 
 conftest_netinet_ip_h.c:
-	@echo "#include <netinet/ip.h>" > $@
+	@echo "#include <sys/socket.h>" > $@
+	@echo "#include <netinet/ip.h>" >> $@
 
 conftest_struct_msghdr_msg_control.c:
 	@echo "#include <sys/types.h>" > $@