- Don't include opt_global.h, it is always included implicitly.

- Include opt_device_polling.h
This commit is contained in:
Gleb Smirnoff 2005-10-05 10:07:27 +00:00
parent 0c06364148
commit 2afb277f09
2 changed files with 3 additions and 2 deletions

View File

@ -77,11 +77,13 @@
# include "opt_inet.h" /* INET */
# include "opt_inet6.h" /* INET6 */
# include "opt_netgraph.h" /* NETGRAPH */
# ifdef HAVE_KERNEL_OPTION_HEADERS
# include "opt_device_polling.h" /* DEVICE_POLLING */
# endif
# ifndef NETGRAPH
# define NETGRAPH 0
# endif
# define P2P 0 /* not in FreeBSD */
# include "opt_global.h"/* ALTQ, DEVICE_POLLING */
# if (__FreeBSD_version >= 500000)
# define NSPPP 1 /* No count devices in FreeBSD 5 */
# include "opt_bpf.h" /* DEV_BPF */

View File

@ -18,7 +18,6 @@ opt_netgraph.h:
echo "#define NETGRAPH 1" > ${.TARGET}
opt_global.h:
echo "#define ALTQ 1" > ${.TARGET}
echo "#define DEVICE_POLLING 0" >> ${.TARGET}
opt_bpf.h: # FreeBSD-5:
echo "#define DEV_BPF 1" > ${.TARGET}