aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/configure
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2009-03-02 17:16:13 -0300
committerLeandro A. F. Pereira <leandro@hardinfo.org>2009-03-02 17:16:13 -0300
commitf9c171825eefe8c43fc52eaeb57e96b7810b4fe9 (patch)
treee244da6a8011b6b29e4cbd0b64f285ab49ff486b /hardinfo2/configure
parentdb21d0eeeab0430f28060f5846e3cf8c8ae5a93c (diff)
Port to libsoup 2.4 (patch by Dan Winship, https://bugzilla.redhat.com/show_bug.cgi?id=430960)
Diffstat (limited to 'hardinfo2/configure')
-rwxr-xr-xhardinfo2/configure10
1 files changed, 5 insertions, 5 deletions
diff --git a/hardinfo2/configure b/hardinfo2/configure
index c3d14c04..e763b935 100755
--- a/hardinfo2/configure
+++ b/hardinfo2/configure
@@ -135,16 +135,16 @@ fi
# ---------------------------------------------------------------------------
SOUP=-1
-MIN_VERSION="2.2.7"
+MIN_VERSION="2.3.0.1"
echo -n "Checking for libsoup version >= ${MIN_VERSION}... "
for i in `which pkg-config`; do
- $i --errors-to-stdout libsoup-2.2 \
+ $i --errors-to-stdout libsoup-2.4 \
--atleast-version=$MIN_VERSION > /dev/null
case $? in
0)
- SOUP_FLAGS=`pkg-config libsoup-2.2 --cflags --static`
- SOUP_LIBS=`pkg-config libsoup-2.2 --libs --static`
- echo "found `pkg-config libsoup-2.2 --modversion`"
+ SOUP_FLAGS=`pkg-config libsoup-2.4 --cflags --static`
+ SOUP_LIBS=`pkg-config libsoup-2.4 --libs --static`
+ echo "found `pkg-config libsoup-2.4 --modversion`"
SOUP=1
break ;;
*)