minfrin commented on a change in pull request #8: URL: https://github.com/apache/tomcat-native/pull/8#discussion_r532251725
########## File path: native/include/tcn.h ########## @@ -281,11 +281,20 @@ typedef struct { #define APR_INET6 APR_INET #endif +#ifdef APR_UNIX #define GET_S_FAMILY(T, F) \ if (F == 0) T = APR_UNSPEC; \ else if (F == 1) T = APR_INET; \ else if (F == 2) T = APR_INET6; \ + else if (F == 3) T = APR_UNIX; \ Review comment: My compiler doesn't like this one - doesn't seem possible to put an ifdef inside a macro. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org