diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2001-06-19 16:41:03 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2001-06-19 16:41:03 +0000 |
commit | bdea3cd76838e8f9a656c2476374f637e4e4a0d3 (patch) | |
tree | 45f342223edeb69e65259e73fff4ab1b068ed449 /aczsh.m4 | |
parent | 0672033cfc5bd1c8db810fd9c038f94472439a0c (diff) | |
download | zsh-bdea3cd76838e8f9a656c2476374f637e4e4a0d3.tar.gz zsh-bdea3cd76838e8f9a656c2476374f637e4e4a0d3.tar.xz zsh-bdea3cd76838e8f9a656c2476374f637e4e4a0d3.zip |
Add socklen_t to possible SOCKLEN_T types.
Diffstat (limited to 'aczsh.m4')
-rw-r--r-- | aczsh.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aczsh.m4 b/aczsh.m4 index d1419e21e..4ac1f6f2e 100644 --- a/aczsh.m4 +++ b/aczsh.m4 @@ -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>], |