forked from Mirror/frr
[build] Linux netlink doesn't need IF_PROC
2008-08-16 Stephen Hemminger <stephen.hemminger@vyatta.com> * configure.ac: If netlink is available, then that is how the initial routes and interfaces should be read, rather than through /proc, so don't set IF_PROC. Signed-off-by: Paul Jakma <paul@quagga.net>
This commit is contained in:
parent
4cde931e2d
commit
cadfb2cd81
17
configure.ac
17
configure.ac
|
@ -931,14 +931,15 @@ fi
|
|||
dnl -----------------------
|
||||
dnl check proc file system.
|
||||
dnl -----------------------
|
||||
if test -r /proc/net/dev; then
|
||||
AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
|
||||
IF_PROC=if_proc.o
|
||||
fi
|
||||
|
||||
if test -r /proc/net/if_inet6; then
|
||||
AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
|
||||
IF_PROC=if_proc.o
|
||||
if test "$netlink" != yes; then
|
||||
if test -r /proc/net/dev; then
|
||||
AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
|
||||
IF_PROC=if_proc.o
|
||||
fi
|
||||
if test -r /proc/net/if_inet6; then
|
||||
AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
|
||||
IF_PROC=if_proc.o
|
||||
fi
|
||||
fi
|
||||
AC_SUBST(IF_PROC)
|
||||
|
||||
|
|
Loading…
Reference in a new issue