diff options
author | paul <paul> | 2004-05-11 10:49:35 +0000 |
---|---|---|
committer | paul <paul> | 2004-05-11 10:49:35 +0000 |
commit | 19877dd2dcc9f2a9ce7ca557441ac1fc4f80faa1 (patch) | |
tree | 194ab1a447e445b0c6570e16f4ccaf37128a5792 /zebra | |
parent | dd669bb0e7102a5896925f98203fa991560748b7 (diff) |
2004-05-11 Paul Jakma <paul@dishone.st>
* configure.ac: Add solaris support for the zebra/*_solaris
method's, based on Sowmini's patches.
* zebra/Makefile.am: support for IOCTL_METHOD, as per Sowmini's
patch.
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/ChangeLog | 4 | ||||
-rw-r--r-- | zebra/Makefile.am | 12 |
2 files changed, 11 insertions, 5 deletions
diff --git a/zebra/ChangeLog b/zebra/ChangeLog index 053f9e87..8381cf32 100644 --- a/zebra/ChangeLog +++ b/zebra/ChangeLog @@ -1,3 +1,7 @@ +2004-05-11 Paul Jakma <paul@dishone.st> + + * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch. + 2004-05-09 Paul Jakma <paul@dishone.st> * zserv.c: (zsend_route_multipath) Set the nexthop_num diff --git a/zebra/Makefile.am b/zebra/Makefile.am index 6f8e9542..61fdaeae 100644 --- a/zebra/Makefile.am +++ b/zebra/Makefile.am @@ -14,14 +14,15 @@ rt_method = @RT_METHOD@ rtread_method = @RTREAD_METHOD@ kernel_method = @KERNEL_METHOD@ other_method = @OTHER_METHOD@ +ioctl_method = @IOCTL_METHOD@ -otherobj = $(ipforward) $(if_method) $(if_proc) $(rt_method) \ - $(rtread_method) $(kernel_method) $(other_method) +otherobj = $(ioctl_method) $(ipforward) $(if_method) $(if_proc) \ + $(rt_method) $(rtread_method) $(kernel_method) $(other_method) sbin_PROGRAMS = zebra zebra_SOURCES = \ - zserv.c main.c interface.c connected.c ioctl.c zebra_rib.c \ + zserv.c main.c interface.c connected.c zebra_rib.c \ redistribute.c debug.c rtadv.c zebra_snmp.c zebra_vty.c noinst_HEADERS = \ @@ -32,11 +33,12 @@ zebra_LDADD = ../lib/libzebra.a $(otherobj) $(LIBCAP) $(LIB_IPV6) zebra_DEPENDENCIES = $(otherobj) -EXTRA_DIST = if_ioctl.c if_netlink.c if_proc.c if_sysctl.c \ - ipforward_aix.c ipforward_ews.c ipforward_proc.c \ +EXTRA_DIST = if_ioctl.c if_ioctl_solaris.c if_netlink.c if_proc.c \ + if_sysctl.c ipforward_aix.c ipforward_ews.c ipforward_proc.c \ ipforward_solaris.c ipforward_sysctl.c rt_ioctl.c rt_netlink.c \ rt_socket.c rtread_netlink.c rtread_proc.c rtread_sysctl.c \ rtread_getmsg.c kernel_socket.c kernel_netlink.c mtu_kvm.c \ + ioctl.c ioctl_solaris.c \ GNOME-SMI GNOME-PRODUCT-ZEBRA-MIB #client : client_main.o ../lib/libzebra.a |