1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Build ipx_ip.c only if options IPXIP is defined. No functional change.

This commit is contained in:
Robert Watson 2007-02-26 11:55:34 +00:00
parent fac61393b9
commit c724ad6648
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=167015
2 changed files with 1 additions and 3 deletions

View File

@ -1846,7 +1846,7 @@ netipsec/xform_tcp.c optional fast_ipsec tcp_signature
netipx/ipx.c optional ipx
netipx/ipx_cksum.c optional ipx
netipx/ipx_input.c optional ipx
netipx/ipx_ip.c optional ipx
netipx/ipx_ip.c optional ipx ipxip
netipx/ipx_outputfl.c optional ipx
netipx/ipx_pcb.c optional ipx
netipx/ipx_proto.c optional ipx

View File

@ -69,7 +69,6 @@ __FBSDID("$FreeBSD$");
#include "opt_inet.h"
#include "opt_ipx.h"
#ifdef IPXIP
#ifndef INET
#error The option IPXIP requires option INET.
#endif
@ -470,4 +469,3 @@ ipxip_rtchange(struct in_addr *dst)
}
}
}
#endif /* IPXIP */