mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
[DOC] enable inet_pton() and inet_ntop() on Windows
This commit is contained in:
parent
066a330877
commit
dd9fb9b0cd
2 changed files with 4 additions and 0 deletions
1
NEWS
1
NEWS
|
@ -107,6 +107,7 @@ PHP NEWS
|
||||||
behavior. (Stas)
|
behavior. (Stas)
|
||||||
- Added forward_static_call(_array) to complete LSB. (Mike Lively)
|
- Added forward_static_call(_array) to complete LSB. (Mike Lively)
|
||||||
- Added native support for asinh(), acosh(), atanh(), log1p() and expm1() (Kalle)
|
- 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:
|
- Improved PHP runtime speed and memory usage:
|
||||||
. Use IS_CV for direct access to $this variable. (Dmitry)
|
. Use IS_CV for direct access to $this variable. (Dmitry)
|
||||||
|
|
|
@ -2,7 +2,10 @@
|
||||||
// $Id$
|
// $Id$
|
||||||
|
|
||||||
ARG_WITH("config-file-scan-dir", "Dir to check for additional php ini files", "");
|
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("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");
|
CHECK_HEADER_ADD_INCLUDE("timelib_config.h", "CFLAGS_STANDARD", "ext/date/lib");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue