diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | aczsh.m4 | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2001-06-19 Bart Schaefer <schaefer@zsh.org> + + * 14976: aczsh.m4: Add socklen_t to possible SOCKLEN_T types. + 2001-06-19 Andrej Borsenkow <bor@zsh.org> * 14973: acconfig.h, aczsh.m4, zshconfig.ac, Src/Modules/zftp.c: @@ -695,7 +695,7 @@ AC_DEFUN([zsh_CHECK_SOCKLEN_T],[ [base type of the third argument to accept], [zsh_cv_type_socklen_t], [zsh_cv_type_socklen_t= - for zsh_type in int "unsigned long" size_t ; do + for zsh_type in socklen_t int "unsigned long" size_t ; do AC_TRY_COMPILE( [#include <sys/types.h> #include <sys/socket.h>], |