From: Marvin Schmidt Date: Sun, 30 Aug 2009 15:37:30 +0000 (+0200) Subject: Fix timeout-test without SSL support X-Git-Tag: LIBSOUP_2_27_92~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43aa9aa94ba426886902544092abb10a938794b0;p=platform%2Fupstream%2Flibsoup.git Fix timeout-test without SSL support http://bugzilla.gnome.org/show_bug.cgi?id=593563 --- diff --git a/tests/timeout-test.c b/tests/timeout-test.c index 73cad70..663df8e 100644 --- a/tests/timeout-test.c +++ b/tests/timeout-test.c @@ -99,6 +99,7 @@ main (int argc, char **argv) g_free (fast_uri); g_free (slow_uri); +#ifdef HAVE_SSL debug_printf (1, "https\n"); server = soup_test_server_new_ssl (TRUE); soup_server_add_handler (server, NULL, server_handler, NULL, NULL); @@ -109,6 +110,7 @@ main (int argc, char **argv) do_timeout_tests (fast_uri, slow_uri); g_free (fast_uri); g_free (slow_uri); +#endif test_cleanup (); return errors != 0;