diff --git a/ChangeLog.txt b/ChangeLog.txt index 8c6ce28e14..2d7fa7fad3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,12 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2015-10-09 13:38 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + * src/rtl/hbsocket.c + ! fixed typo (unnecessary parenthesis) in previous commit + * enabled getnameinfo() in MSVS 2015 builds + ; thanks to Viktor for the information about above items + 2015-10-09 11:13 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) * src/rtl/hbsocket.c * enabled inet_pton(), inet_ntop() and getaddrinfo() in MSVS 2015 builds diff --git a/src/rtl/hbsocket.c b/src/rtl/hbsocket.c index 119f3f3b85..0373486e5c 100644 --- a/src/rtl/hbsocket.c +++ b/src/rtl/hbsocket.c @@ -166,10 +166,11 @@ # elif defined( __POCC__ ) && ! defined( __XCC__ ) # define HB_HAS_SOCKADDR_STORAGE # elif defined( _MSC_VER ) -# if _MSC_VER >= 1900 ) +# if _MSC_VER >= 1900 # define HB_HAS_INET_PTON # define HB_HAS_INET_NTOP # define HB_HAS_ADDRINFO +# define HB_HAS_NAMEINFO # endif # endif # define HB_IS_INET_NTOA_MT_SAFE