AppVeyor reports that the windows build fails because HOST_NAME_MAX is not defined.
Fixes: 2229f3ecc136 ("ovn: Add hostname to Chassis.") Reported-at: https://ci.appveyor.com/project/blp/ovs/build/1.0.1472 Signed-off-by: Russell Bryant <russ...@ovn.org> --- ovn/controller/chassis.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ovn/controller/chassis.c b/ovn/controller/chassis.c index 1e2aaec..4109b0c 100644 --- a/ovn/controller/chassis.c +++ b/ovn/controller/chassis.c @@ -26,6 +26,11 @@ VLOG_DEFINE_THIS_MODULE(chassis); +#ifndef HOST_NAME_MAX +/* For windows. */ +#define HOST_NAME_MAX 255 +#endif /* HOST_NAME_MAX */ + void chassis_register_ovs_idl(struct ovsdb_idl *ovs_idl) { -- 2.5.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev