1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

libreplace: undef AI_ADDRCONFIG on QNX 6.3.0 (fix bug #6630)

Some of the functions in source3/lib/util_sock.c use AI_ADDRCONFIG.  On QNX
6.3.0, this macro is defined but, if it's used, getaddrinfo will fail.  This
prevents smbd from opening any sockets.

If I undefine AI_ADDRCONFIG on such systems and allow
lib/replace/system/network.h to define it to be 0, this works around the issue.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Matt Kraai 2009-08-12 08:49:24 +02:00 committed by Stefan Metzmacher
parent e96338bf2b
commit 91d13b68be

View File

@ -195,6 +195,20 @@ int rep_socketpair(int d, int type, int protocol, int sv[2]);
#endif
#endif
/*
* Some of the functions in source3/lib/util_sock.c use AI_ADDRCONFIG. On QNX
* 6.3.0, this macro is defined but, if it's used, getaddrinfo will fail. This
* prevents smbd from opening any sockets.
*
* If I undefine AI_ADDRCONFIG on such systems and define it to be 0,
* this works around the issue.
*/
#ifdef __QNX__
#include <sys/neutrino.h>
#if _NTO_VERSION == 630
#undef AI_ADDRCONFIG
#endif
#endif
#ifndef AI_ADDRCONFIG
/*
* logic copied from AI_NUMERICHOST