This is the mail archive of the cygwin-cvs@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[newlib-cygwin] * net.cc: Define _NETIOAPI_H_ to accomodate newer w32api.


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=d337c37417a3358fa54afac0c1b395bf93f3f01f

commit d337c37417a3358fa54afac0c1b395bf93f3f01f
Author: Takashi Yano <takashi.yano@nifty.ne.jp>
Date:   Wed May 27 12:56:31 2015 +0200

    * net.cc: Define _NETIOAPI_H_ to accomodate newer w32api.
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/ChangeLog | 4 ++++
 winsup/cygwin/net.cc    | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 3ecbc6b..42f34d7 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2015-05-27  Takashi Yano  <takashi.yano@nifty.ne.jp>
+
+	* net.cc: Define _NETIOAPI_H_ to accomodate newer w32api.
+
 2015-05-03  Corinna Vinschen  <corinna@vinschen.de>
 
 	* include/cygwin/version.h (CYGWIN_VERSION_DLL_MINOR): Bump to 2.
diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc
index eaf6eb8..e94eb50 100644
--- a/winsup/cygwin/net.cc
+++ b/winsup/cygwin/net.cc
@@ -18,7 +18,8 @@ details. */
 	  if_indextoname functions in iphlpapi.h since Vista.
    TODO:  Convert if_nametoindex to cygwin_if_nametoindex and call
 	  system functions on Vista and later. */
-#define _INC_NETIOAPI
+#define _INC_NETIOAPI	/* w32api < 4.0 */
+#define _NETIOAPI_H_
 #include "winsup.h"
 #ifdef __x86_64__
 /* 2014-04-24: Current Mingw headers define sockaddr_in6 using u_long (8 byte)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]