diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 084eb3b273..ac42055dc6 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -203,7 +203,7 @@ jobs: - { build: 'cmake' , sys: 'msys' , env: 'x86_64' , tflags: '' , config: '-DENABLE_DEBUG=ON -DENABLE_THREADED_RESOLVER=OFF', install: 'openssl-devel libssh2-devel', name: 'default' } - { build: 'autotools', sys: 'msys' , env: 'x86_64' , tflags: '' , config: '--with-openssl', install: 'openssl-devel libssh2-devel', name: 'default R' } # MinGW - - { build: 'autotools', sys: 'mingw64' , env: 'x86_64' , tflags: 'skiprun', config: '--enable-debug --with-openssl --disable-threaded-resolver --disable-curldebug --enable-static=no --without-zlib', install: 'mingw-w64-x86_64-openssl mingw-w64-x86_64-libssh2', name: 'default' } + - { build: 'autotools', sys: 'mingw64' , env: 'x86_64' , tflags: 'skiprun', config: '--enable-debug --with-openssl --disable-threaded-resolver --disable-curldebug --enable-static=no --without-zlib CPPFLAGS=-D_WIN32_WINNT=0x0501', install: 'mingw-w64-x86_64-openssl mingw-w64-x86_64-libssh2', name: 'default XP' } - { build: 'autotools', sys: 'mingw64' , env: 'x86_64' , tflags: '' , config: '--enable-debug --with-openssl --enable-windows-unicode --enable-ares --with-openssl-quic --enable-shared=no', install: 'mingw-w64-x86_64-openssl mingw-w64-x86_64-nghttp3 mingw-w64-x86_64-libssh2', name: 'c-ares U' } - { build: 'cmake' , sys: 'mingw64' , env: 'x86_64' , tflags: '' , config: '-DENABLE_DEBUG=ON -DBUILD_SHARED_LIBS=OFF -DCURL_USE_SCHANNEL=ON -DENABLE_UNICODE=ON -DENABLE_ARES=ON', install: 'mingw-w64-x86_64-libssh2', type: 'Debug', name: 'schannel c-ares U' } # WARNING: libssh uses hard-coded world-writable paths (/etc/..., ~/.ssh/) to diff --git a/CMakeLists.txt b/CMakeLists.txt index 31f6f1b1e4..6e046c8b3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1609,14 +1609,17 @@ if(WIN32) endif() # Pre-fill detection results based on target OS version - if(HAVE_WIN32_WINNT AND HAVE_WIN32_WINNT GREATER_EQUAL 0x0600 AND # Windows Vista or newer - (MINGW OR MSVC) AND - NOT WINCE AND NOT WINDOWS_STORE) - set(HAVE_IF_NAMETOINDEX 1) - else() - set(HAVE_IF_NAMETOINDEX 0) + if(_CURL_PREFILL) + if(NOT HAVE_WIN32_WINNT OR HAVE_WIN32_WINNT LESS 0x0600 OR # older than Windows Vista + (MINGW AND MINGW64_VERSION VERSION_LESS 2.0) OR + WINCE OR WINDOWS_STORE) + set(HAVE_IF_NAMETOINDEX 0) + unset(HAVE_IF_NAMETOINDEX CACHE) + elseif(MSVC OR MINGW) + set(HAVE_IF_NAMETOINDEX 1) + unset(HAVE_IF_NAMETOINDEX CACHE) + endif() endif() - unset(HAVE_IF_NAMETOINDEX CACHE) endif() if(NOT WIN32) @@ -1772,12 +1775,14 @@ check_function_exists("eventfd" HAVE_EVENTFD) check_symbol_exists("ftruncate" "unistd.h" HAVE_FTRUNCATE) check_symbol_exists("getpeername" "${CURL_INCLUDES}" HAVE_GETPEERNAME) # winsock2.h unistd.h proto/bsdsocket.h check_symbol_exists("getsockname" "${CURL_INCLUDES}" HAVE_GETSOCKNAME) # winsock2.h unistd.h proto/bsdsocket.h -check_function_exists("if_nametoindex" HAVE_IF_NAMETOINDEX) # iphlpapi.h (Windows Vista+ non-UWP), net/if.h check_function_exists("getrlimit" HAVE_GETRLIMIT) check_function_exists("setlocale" HAVE_SETLOCALE) check_function_exists("setrlimit" HAVE_SETRLIMIT) -if(NOT WIN32) +if(WIN32) + check_symbol_exists("if_nametoindex" "winsock2.h;iphlpapi.h" HAVE_IF_NAMETOINDEX) # Windows Vista+ non-UWP +else() + check_function_exists("if_nametoindex" HAVE_IF_NAMETOINDEX) # net/if.h check_function_exists("realpath" HAVE_REALPATH) check_function_exists("sched_yield" HAVE_SCHED_YIELD) check_symbol_exists("strcasecmp" "string.h" HAVE_STRCASECMP) diff --git a/appveyor.yml b/appveyor.yml index fc8d49152e..cbba5fec00 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -61,7 +61,7 @@ environment: SCHANNEL: 'ON' DEBUG: 'OFF' CURLDEBUG: 'ON' - - job_name: 'CMake, VS2010, Debug, x64, OpenSSL 1.0.2 + Schannel, Shared, Build-tests & examples' + - job_name: 'CMake, VS2010, Debug, x64, OpenSSL 1.0.2 + Schannel, Shared, Build-tests & examples, XP' APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2013' PRJ_GEN: 'Visual Studio 10 2010' TARGET: '-A x64' diff --git a/configure.ac b/configure.ac index 1d4746c8c4..6e33598603 100644 --- a/configure.ac +++ b/configure.ac @@ -4224,7 +4224,6 @@ AC_CHECK_FUNCS([\ getpwuid_r \ getrlimit \ gettimeofday \ - if_nametoindex \ mach_absolute_time \ pipe \ pipe2 \ @@ -4238,8 +4237,27 @@ AC_CHECK_FUNCS([\ utimes \ ]) -if test "$curl_cv_native_windows" != 'yes'; then +if test "$curl_cv_native_windows" = 'yes'; then + AC_MSG_CHECKING([for if_nametoindex on Windows]) + AC_LINK_IFELSE([ + AC_LANG_PROGRAM([[ + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN + #endif + #include + #include + ]],[[ + if_nametoindex(""); + ]]) + ],[ + AC_MSG_RESULT([yes]) + AC_DEFINE(HAVE_IF_NAMETOINDEX, 1, [if you have the 'if_nametoindex' function]) + ],[ + AC_MSG_RESULT([no]) + ]) +else AC_CHECK_FUNCS([\ + if_nametoindex \ realpath \ sched_yield \ ])