php-src/ext
Gustavo Lopes af1b90d62b Fix bug and hopefully build on WinSDK 6.1
There build was failing on rmtools on the sockets extension for two reasons:

  1. IPV6_TCLASS and IPV6_RECVTCLASS not being defined. These are probably
  recent additions to SDK. Windows 7 doesn't event seem to have complete
  support for IPV6_TCLASS, not accepting in WSASendMsg(). The parts that
  needed this constant were not guarded by #ifdefs. They are now.

  2. The constants EWOULDBLOCK and EINPROGRESS not being defined. These
  were only defined in php_network.h, outside of the extension, and not
  all source files included this header. Nevertheless, a macro defined in
  php_sockets.h needed these constants. When this macro was used in files
  that did not include php_network.h, the compilation would fail.
  Surprisingly, the build did not fail when using the 7.1 Windows SDK
  (more likely, the CRT headers used in VC10), as somehow errno.h was
  being included through some other standard header. This would make the
  constant EWOULDBLOCK defined; however, it would be defined to the wrong
  value. In the winsock context, WSAEWOULDBLOCK should be used instead.
  Because we have difficulty using Windows-only constants in the code, we
  (re)define EWOULDBLOCK to WSAEWOULDBLOCK. This has the obvious
  disavantage we may miss problems like this again in the future.
2013-02-03 01:36:14 +01:00
..
bcmath Happy New Year 2013-01-01 16:37:09 +08:00
bz2 Happy New Year 2013-01-01 16:37:09 +08:00
calendar Happy New Year 2013-01-01 16:37:09 +08:00
com_dotnet Happy New Year 2013-01-01 16:37:09 +08:00
ctype Happy New Year 2013-01-01 16:37:09 +08:00
curl forgot this file :( 2013-01-29 15:02:55 -08:00
date Fixed bug #63988 (Two Date tests fail) only for PHP-5.5 2013-01-18 15:49:36 +08:00
dba Bug #62489: dba_insert not working as expected 2013-01-15 09:30:44 +01:00
dom Happy New Year 2013-01-01 16:37:09 +08:00
enchant fix enchant compilation under vc11 2013-02-01 12:43:26 +01:00
ereg Happy New Year 2013-01-01 16:37:09 +08:00
exif Happy New Year 2013-01-01 16:37:09 +08:00
fileinfo Happy New Year 2013-01-01 16:37:09 +08:00
filter Happy New Year 2013-01-01 16:37:09 +08:00
ftp Happy New Year 2013-01-01 16:37:09 +08:00
gd allow for libpng 1.5.x 2013-01-28 13:23:31 +01:00
gettext Happy New Year 2013-01-01 16:37:09 +08:00
gmp Happy New Year 2013-01-01 16:37:09 +08:00
hash Happy New Year 2013-01-01 16:37:09 +08:00
iconv Happy New Year 2013-01-01 16:37:09 +08:00
imap Happy New Year 2013-01-01 16:37:09 +08:00
interbase Happy New Year 2013-01-01 16:37:09 +08:00
intl Fixed paramter count 2013-01-29 19:19:51 +01:00
json Happy New Year 2013-01-01 16:37:09 +08:00
ldap Happy New Year 2013-01-01 16:37:09 +08:00
libxml Happy New Year 2013-01-01 16:37:09 +08:00
mbstring Happy New Year 2013-01-01 16:37:09 +08:00
mcrypt Happy New Year 2013-01-01 16:37:09 +08:00
mssql Happy New Year 2013-01-01 16:37:09 +08:00
mysql Happy New Year 2013-01-01 16:37:09 +08:00
mysqli Merge branch 'PHP-5.4' into PHP-5.5 2013-01-10 14:53:46 +01:00
mysqlnd fix valgrind warning 2013-01-22 16:48:39 +01:00
oci8 Happy New Year 2013-01-01 16:37:09 +08:00
odbc Happy New Year 2013-01-01 16:37:09 +08:00
openssl Merge branch 'PHP-5.4' into PHP-5.5 2013-01-31 00:33:46 +01:00
pcntl Happy New Year 2013-01-01 16:37:09 +08:00
pcre Happy New Year 2013-01-01 16:37:09 +08:00
pdo Fix test related to change for #bug64007 and also fix in newInstanceArgs 2013-01-22 16:58:40 +08:00
pdo_dblib Happy New Year 2013-01-01 16:37:09 +08:00
pdo_firebird Happy New Year 2013-01-01 16:37:09 +08:00
pdo_mysql Happy New Year 2013-01-01 16:37:09 +08:00
pdo_oci Fixed bug #57702 (Multi-row BLOB fetches) 2013-01-15 15:31:49 +08:00
pdo_odbc Happy New Year 2013-01-01 16:37:09 +08:00
pdo_pgsql Happy New Year 2013-01-01 16:37:09 +08:00
pdo_sqlite Fix bug #63916: PDO::PARAM_INT casts to 32bit int internally even on 64bit builds in pdo_sqlite 2013-01-14 17:59:11 +01:00
pgsql Bug #46408: Fix double formatting for PostgreSQL bound parameters 2013-01-14 21:23:52 +01:00
phar Merge branch 'PHP-5.4' into PHP-5.5 2013-01-06 10:23:21 +08:00
posix Happy New Year 2013-01-01 16:37:09 +08:00
pspell Happy New Year 2013-01-01 16:37:09 +08:00
readline Happy New Year 2013-01-01 16:37:09 +08:00
recode Happy New Year 2013-01-01 16:37:09 +08:00
reflection Fix test related to change for #bug64007 and also fix in newInstanceArgs 2013-01-22 16:58:40 +08:00
session complete zts fix 2013-01-29 12:12:34 -08:00
shmop Happy New Year 2013-01-01 16:37:09 +08:00
simplexml Happy New Year 2013-01-01 16:37:09 +08:00
skeleton Replace $Revision$ with $Id$ in keyword expansion enable files 2012-03-20 17:53:47 +01:00
snmp Merge branch 'PHP-5.4' into PHP-5.5 2013-02-01 12:32:00 +01:00
soap Happy New Year 2013-01-01 16:37:09 +08:00
sockets Fix bug and hopefully build on WinSDK 6.1 2013-02-03 01:36:14 +01:00
spl Fixed bug #64106: Segfault on SplFixedArray[][x] = y when extended 2013-01-30 20:40:02 +01:00
sqlite3 Merge branch 'PHP-5.4' into PHP-5.5 2013-01-14 17:36:07 +01:00
standard complete zts fix 2013-01-29 12:12:34 -08:00
sybase_ct Happy New Year 2013-01-01 16:37:09 +08:00
sysvmsg Happy New Year 2013-01-01 16:37:09 +08:00
sysvsem Happy New Year 2013-01-01 16:37:09 +08:00
sysvshm Happy New Year 2013-01-01 16:37:09 +08:00
tidy Happy New Year 2013-01-01 16:37:09 +08:00
tokenizer Happy New Year 2013-01-01 16:37:09 +08:00
wddx Happy New Year 2013-01-01 16:37:09 +08:00
xml Happy New Year 2013-01-01 16:37:09 +08:00
xmlreader Happy New Year 2013-01-01 16:37:09 +08:00
xmlrpc Happy New Year 2013-01-01 16:37:09 +08:00
xmlwriter Happy New Year 2013-01-01 16:37:09 +08:00
xsl Happy New Year 2013-01-01 16:37:09 +08:00
zip Happy New Year 2013-01-01 16:37:09 +08:00
zlib remove set but not used variables 2013-01-02 16:48:46 +01:00
ext_skel
ext_skel_win32.php