Author: wrowe
Date: Thu May 1 07:43:51 2008
New Revision: 652538
URL: http://svn.apache.org/viewvc?rev=652538&view=rev
Log:
Clean up slop from new netinet/ip.h test
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=652538&r1=652537&r2=652538&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/build/Makefile.apxs (original)
+++ httpd/mod_ftp/trunk/build/Makefile.apxs Thu May 1 07:43:51 2008
@@ -16,8 +16,11 @@
builddir=.
srcdir=.
-CLEAN_TARGETS = conftest_fchmod.c conftest_arpa_ftp_h.c *.loT
-TARGETS = conftest_fchmod conftest_arpa_ftp_h
+CLEAN_TARGETS = conftest_fchmod.c conftest_arpa_ftp_h.c \
+ conftest_netinet_ip_h.c \
+ *.loT
+TARGETS = conftest_fchmod conftest_arpa_ftp_h \
+ conftest_netinet_ip_h
PROGRAM_LDADD =
PROGRAM_DEPENDENCIES =
@@ -30,6 +33,9 @@
conftest_arpa_ftp_h: conftest_arpa_ftp_h.lo
@echo "success" > $@
+conftest_netinet_ip_h: conftest_netinet_ip_h.lo
+ @echo "success" > $@
+
conftest_fchmod.c:
@echo "#include <sys/types.h>" > $@
@echo "#include <sys/stat.h>" >> $@
@@ -38,3 +44,6 @@
conftest_arpa_ftp_h.c:
@echo "#include <arpa/ftp.h>" > $@
+conftest_netinet_ip_h.c:
+ @echo "#include <netinet/ip.h>" > $@
+
|