Merge branch 'PHP-5.6'

* PHP-5.6:
  - Fixed bug #66381 (__ss_family was changed on AIX 5.3)
This commit is contained in:
Felipe Pena 2014-01-01 09:57:03 -02:00
commit 57a6209051
2 changed files with 4 additions and 3 deletions

View File

@ -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
/*

View File

@ -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