diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2014-05-07 15:49:39 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2014-05-07 15:49:39 +0100 |
commit | c3bd2bdcf493ba6c6dcd5bde4a67b8e0beeb21eb (patch) | |
tree | d29b1d9f9526715107c1f703c92276dcb823ab25 /tests | |
parent | cf94d498e68b4138d83ab321b42f1df6dd8f1426 (diff) |
tests: fix compilation of souphttpsrc test for libsoup 2.40 for real
https://bugzilla.gnome.org/show_bug.cgi?id=727329
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check/elements/souphttpsrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/elements/souphttpsrc.c b/tests/check/elements/souphttpsrc.c index 13c0aca12..4df322088 100644 --- a/tests/check/elements/souphttpsrc.c +++ b/tests/check/elements/souphttpsrc.c @@ -30,7 +30,7 @@ #include <libsoup/soup.h> #include <gst/check/gstcheck.h> -#if !defined(SOUP_CHECK_VERSION) || !SOUP_CHECK_VERSION(2, 44, 0) +#if !defined(SOUP_MINOR_VERSION) || SOUP_MINOR_VERSION < 44 #define SoupStatus SoupKnownStatusCode #endif |