mirror of
https://github.com/php/php-src.git
synced 2024-12-15 12:54:57 +08:00
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5: - Fixed bug #66381 (__ss_family was changed on AIX 5.3)
This commit is contained in:
commit
37897e258d
@ -109,6 +109,10 @@ php_socket *socket_import_file_descriptor(PHP_SOCKET sock TSRMLS_DC);
|
||||
#define phpext_sockets_ptr NULL
|
||||
#endif
|
||||
|
||||
#if defined(_AIX) && !defined(HAVE_SA_SS_FAMILY)
|
||||
# define ss_family __ss_family
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
@ -56,9 +56,6 @@
|
||||
# define IS_INVALID_SOCKET(a) (a->bsd_socket < 0)
|
||||
# define set_errno(a) (errno = a)
|
||||
# include "php_sockets.h"
|
||||
# if defined(_AIX) && !defined(HAVE_SA_SS_FAMILY)
|
||||
# define ss_family __ss_family
|
||||
# endif
|
||||
# if HAVE_IF_NAMETOINDEX
|
||||
# include <net/if.h>
|
||||
# endif
|
||||
|
Loading…
Reference in New Issue
Block a user