From 389ce9f37de662fa58ae293058e34d469e546790 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Sun, 24 Oct 2010 23:20:40 +0100 Subject: Another compatibility fix: AI_ADDRCONFIG doesn't exist on some systems. --- lib/proxy.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/proxy.c') diff --git a/lib/proxy.c b/lib/proxy.c index e7d35351..b79afea4 100644 --- a/lib/proxy.c +++ b/lib/proxy.c @@ -52,6 +52,9 @@ char proxypass[128] = ""; #ifndef AI_NUMERICSERV #define AI_NUMERICSERV 0 #endif +#ifndef AI_ADDRCONFIG +#define AI_ADDRCONFIG 0 +#endif struct PHB { b_event_handler func, proxy_func; -- cgit v1.2.3