|
1 | 1 | dnl Process this file with autoconf to produce a configure script. |
2 | | -dnl $PostgreSQL: pgsql/configure.in,v 1.424 2005/08/24 21:32:37 pgsql Exp $ |
| 2 | +dnl $PostgreSQL: pgsql/configure.in,v 1.425 2005/08/25 02:28:03 tgl Exp $ |
3 | 3 | dnl |
4 | 4 | dnl Developers, please strive to achieve this order: |
5 | 5 | dnl |
|
883 | 883 |
|
884 | 884 | AC_REPLACE_FUNCS([crypt fseeko getopt getrusage inet_aton random rint srandom strdup strerror strtol strtoul unsetenv]) |
885 | 885 |
|
886 | | -# system's version of getaddrinfo(), if any, may be used only if we found |
887 | | -# a definition for struct addrinfo; see notes in src/include/getaddrinfo.h |
| 886 | +# System's version of getaddrinfo(), if any, may be used only if we found |
| 887 | +# a definition for struct addrinfo; see notes in src/include/getaddrinfo.h. |
| 888 | +# (Note: the AC_REPLACE_FUNCS probe fails on Windows, where the available |
| 889 | +# versions of getaddrinfo don't follow normal C call protocol. This is OK |
| 890 | +# because we want to use our own getaddrinfo.c on Windows anyway.) |
888 | 891 | if test x"$ac_cv_type_struct_addrinfo" = xyes ; then |
889 | 892 | AC_REPLACE_FUNCS([getaddrinfo]) |
890 | 893 | else |
|