diff --git a/Changes b/Changes index 419bb35ee..40aca5a36 100644 --- a/Changes +++ b/Changes @@ -1471,3 +1471,5 @@ - Fixed charsys config error message sometimes saying stuff about set::accept-language, which should be set::allowed-nickchars (the former does not exist). Reported and patch provided by avb (#0003122). +- Fixed compile bug on Solaris due to missing INADDR_NONE, fix provided by Schak + (#0003125). diff --git a/include/inet.h b/include/inet.h index 18db4e46d..52eebcf4a 100644 --- a/include/inet.h +++ b/include/inet.h @@ -81,3 +81,6 @@ struct sockaddr_storage #endif /* SOCKADDR_IN_HAS_LEN */ #endif /* HAVE_STRUCT_SOCKADDR_STORAGE */ +#ifndef INADDR_NONE +#define INADDR_NONE 0xffffffff +#endif