mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-02 18:57:46 +00:00
Merge pull request #4216 from pks-t/pks/debian-test-failures
Debian HTTPS feature test failure
This commit is contained in:
commit
5700ee9c23
@ -238,6 +238,7 @@ ENDIF()
|
||||
|
||||
IF (WIN32 AND WINHTTP)
|
||||
ADD_DEFINITIONS(-DGIT_WINHTTP)
|
||||
ADD_DEFINITIONS(-DGIT_HTTPS)
|
||||
|
||||
# Since MinGW does not come with headers or an import library for winhttp,
|
||||
# we have to include a private header and generate our own import library
|
||||
@ -546,11 +547,13 @@ ENDIF()
|
||||
|
||||
IF (SECURITY_FOUND)
|
||||
ADD_DEFINITIONS(-DGIT_SECURE_TRANSPORT)
|
||||
ADD_DEFINITIONS(-DGIT_HTTPS)
|
||||
INCLUDE_DIRECTORIES(${SECURITY_INCLUDE_DIR})
|
||||
ENDIF ()
|
||||
|
||||
IF (OPENSSL_FOUND)
|
||||
ADD_DEFINITIONS(-DGIT_OPENSSL)
|
||||
ADD_DEFINITIONS(-DGIT_HTTPS)
|
||||
INCLUDE_DIRECTORIES(${OPENSSL_INCLUDE_DIR})
|
||||
SET(SSL_LIBRARIES ${OPENSSL_LIBRARIES})
|
||||
ENDIF()
|
||||
|
@ -31,7 +31,7 @@ int git_libgit2_features(void)
|
||||
#ifdef GIT_THREADS
|
||||
| GIT_FEATURE_THREADS
|
||||
#endif
|
||||
#if defined(GIT_OPENSSL) || defined(GIT_WINHTTP) || defined(GIT_SECURE_TRANSPORT)
|
||||
#ifdef GIT_HTTPS
|
||||
| GIT_FEATURE_HTTPS
|
||||
#endif
|
||||
#if defined(GIT_SSH)
|
||||
|
@ -17,7 +17,9 @@ void test_core_features__0(void)
|
||||
cl_assert((caps & GIT_FEATURE_THREADS) == 0);
|
||||
#endif
|
||||
|
||||
#ifdef GIT_HTTPS
|
||||
cl_assert((caps & GIT_FEATURE_HTTPS) != 0);
|
||||
#endif
|
||||
|
||||
#if defined(GIT_SSH)
|
||||
cl_assert((caps & GIT_FEATURE_SSH) != 0);
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
static git_repository *g_repo;
|
||||
|
||||
#if defined(GIT_OPENSSL) || defined(GIT_WINHTTP) || defined(GIT_SECURE_TRANSPORT)
|
||||
#ifdef GIT_HTTPS
|
||||
static bool g_has_ssl = true;
|
||||
#else
|
||||
static bool g_has_ssl = false;
|
||||
|
Loading…
Reference in New Issue
Block a user