Re: Support for AIX 7.1
"James K. Lowden" <[email protected]>
| Newsgroups | gmane.comp.db.tds.freetds |
|---|---|
| Message-ID | <[email protected]> |
On Thu, 03 May 2012 10:14:37 +0200 Sebastien FLAESCH <[email protected]> wrote: > The configure script could run without problem (I will send you the > config.log, James) ... > I have no time to fix the issues, but if you provide me diff patches > I am willing to test the compilation on our AIX 7.1 ... The config.log you sent me indicates sys/socket.h is found, but the error messages > mem.c:1070: warning: implicit declaration of function 'socketpair' > mem.c:1070: error: 'AF_UNIX' undeclared (first use in this function) indicate sys/socket.h was not included, and my version of mem.c doesn't seem to include it. I would add #if HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif /* HAVE_SYS_SOCKET_H */ to mem.c and make sure both of these $ grep SOCKET build/include/config.h #define HAVE_SOCKETPAIR 1 #define HAVE_SYS_SOCKET_H 1 are defined as 1 in your config.h (as I think they are). Please let us know if that helps. --jkl