gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 15/116: curl_setup: Improve detection of CURL_WINDO


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 15/116: curl_setup: Improve detection of CURL_WINDOWS_APP
Date: Tue, 05 Dec 2017 14:50:45 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 9e76dbe054c3726833317b8c474bfed37367ee0e
Author: Martin Storsjo <address@hidden>
AuthorDate: Fri Oct 27 11:21:01 2017 +0300

    curl_setup: Improve detection of CURL_WINDOWS_APP
    
    If WINAPI_FAMILY is defined, it should be safe to try to include
    winapifamily.h to check what the define evaluates to.
    
    This should fix detection of CURL_WINDOWS_APP if building with
    _WIN32_WINNT set to 0x0600.
    
    Closes #2025
---
 lib/curl_setup.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/curl_setup.h b/lib/curl_setup.h
index 402ebc03d..efd8281a4 100644
--- a/lib/curl_setup.h
+++ b/lib/curl_setup.h
@@ -751,7 +751,7 @@ endings either CRLF or LF so 't' is appropriate.
 
 /* Detect Windows App environment which has a restricted access
  * to the Win32 APIs. */
-# if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0602)
+# if (defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0602)) || 
defined(WINAPI_FAMILY)
 #  include <winapifamily.h>
 #  if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && \
      !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]