Fix build when have_libsoup_client_certs=no
This fixes a build failure with older libsoup versions that do not have the client certificates feature. Closes: #294 Approved by: cgwalters
This commit is contained in:
parent
574805b0f3
commit
441c03ba9e
|
|
@ -273,6 +273,7 @@ session_thread_set_proxy_cb (ThreadClosure *thread_closure,
|
||||||
proxy_uri, NULL);
|
proxy_uri, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAVE_LIBSOUP_CLIENT_CERTS
|
||||||
static void
|
static void
|
||||||
session_thread_set_tls_interaction_cb (ThreadClosure *thread_closure,
|
session_thread_set_tls_interaction_cb (ThreadClosure *thread_closure,
|
||||||
gpointer data)
|
gpointer data)
|
||||||
|
|
@ -288,6 +289,7 @@ session_thread_set_tls_interaction_cb (ThreadClosure *thread_closure,
|
||||||
SOUP_SESSION_TLS_INTERACTION,
|
SOUP_SESSION_TLS_INTERACTION,
|
||||||
interaction, NULL);
|
interaction, NULL);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void
|
static void
|
||||||
session_thread_set_tls_database_cb (ThreadClosure *thread_closure,
|
session_thread_set_tls_database_cb (ThreadClosure *thread_closure,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue