mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-23 17:01:05 +02:00
Add socklen_t to possible SOCKLEN_T types.
This commit is contained in:
parent
0672033cfc
commit
bdea3cd768
2 changed files with 5 additions and 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>
|
2001-06-19 Andrej Borsenkow <bor@zsh.org>
|
||||||
|
|
||||||
* 14973: acconfig.h, aczsh.m4, zshconfig.ac, Src/Modules/zftp.c:
|
* 14973: acconfig.h, aczsh.m4, zshconfig.ac, Src/Modules/zftp.c:
|
||||||
|
|
2
aczsh.m4
2
aczsh.m4
|
@ -695,7 +695,7 @@ AC_DEFUN([zsh_CHECK_SOCKLEN_T],[
|
||||||
[base type of the third argument to accept],
|
[base type of the third argument to accept],
|
||||||
[zsh_cv_type_socklen_t],
|
[zsh_cv_type_socklen_t],
|
||||||
[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(
|
AC_TRY_COMPILE(
|
||||||
[#include <sys/types.h>
|
[#include <sys/types.h>
|
||||||
#include <sys/socket.h>],
|
#include <sys/socket.h>],
|
||||||
|
|
Loading…
Reference in a new issue