kalle Thu May 22 22:06:15 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src NEWS
/php-src/ext/standard config.w32
Log:
[DOC] enable inet_pton() and inet_ntop() on Windows
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.965.2.182&r2=1.2027.2.547.2.965.2.183&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.965.2.182
php-src/NEWS:1.2027.2.547.2.965.2.183
--- php-src/NEWS:1.2027.2.547.2.965.2.182 Sun May 18 22:07:23 2008
+++ php-src/NEWS Thu May 22 22:06:14 2008
@@ -107,6 +107,7 @@
behavior. (Stas)
- Added forward_static_call(_array) to complete LSB. (Mike Lively)
- Added native support for asinh(), acosh(), atanh(), log1p() and expm1()
(Kalle)
+- inet_pton() and inet_ntop() is now available on Windows platforms (Kalle)
- Improved PHP runtime speed and memory usage:
. Use IS_CV for direct access to $this variable. (Dmitry)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/config.w32?r1=1.4.2.2.2.1.2.1&r2=1.4.2.2.2.1.2.2&diff_format=u
Index: php-src/ext/standard/config.w32
diff -u php-src/ext/standard/config.w32:1.4.2.2.2.1.2.1
php-src/ext/standard/config.w32:1.4.2.2.2.1.2.2
--- php-src/ext/standard/config.w32:1.4.2.2.2.1.2.1 Fri Oct 5 15:00:08 2007
+++ php-src/ext/standard/config.w32 Thu May 22 22:06:15 2008
@@ -1,8 +1,11 @@
// vim:ft=javascript
-// $Id: config.w32,v 1.4.2.2.2.1.2.1 2007/10/05 15:00:08 jani Exp $
+// $Id: config.w32,v 1.4.2.2.2.1.2.2 2008/05/22 22:06:15 kalle Exp $
ARG_WITH("config-file-scan-dir", "Dir to check for additional php ini files",
"");
+
AC_DEFINE("PHP_CONFIG_FILE_SCAN_DIR", PHP_CONFIG_FILE_SCAN_DIR);
+AC_DEFINE("HAVE_INET_PTON", 1);
+AC_DEFINE("HAVE_INET_NTOP", 1);
CHECK_HEADER_ADD_INCLUDE("timelib_config.h", "CFLAGS_STANDARD",
"ext/date/lib");