diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-10-24 23:20:40 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-10-24 23:20:40 +0100 |
commit | 389ce9f37de662fa58ae293058e34d469e546790 (patch) | |
tree | 9536e3551c959e4b9c2cecb39a4073910596da11 /lib/proxy.c | |
parent | 9a0ee1a7cd8a9cc50bafe44b5ecf3bbdf5cc50d6 (diff) |
Another compatibility fix: AI_ADDRCONFIG doesn't exist on some systems.
Diffstat (limited to 'lib/proxy.c')
-rw-r--r-- | lib/proxy.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; |