summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 600c8b6)
raw | patch | inline | side by side (parent: 600c8b6)
author | Marc Fournier <marc.fournier@camptocamp.com> | |
Sun, 13 Sep 2015 22:03:44 +0000 (00:03 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Sun, 13 Sep 2015 22:03:44 +0000 (00:03 +0200) |
Current versions of libganglia don't ship the ganglia-config utility
anymore. Change the configure script to not expect it to be in $PATH and
provide sensible defaults instead.
Fix #1129
anymore. Change the configure script to not expect it to be in $PATH and
provide sensible defaults instead.
Fix #1129
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index 41c36cb595a18ca1fe3408607be73fa20a395929..18e055e766f31bd567bf20a356c06d7daa2a5822 100644 (file)
--- a/configure.ac
+++ b/configure.ac
@@ -1852,30 +1852,33 @@ AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Pat
GANGLIA_LDFLAGS="-L$withval/lib"
with_libganglia="yes"
else
- with_libganglia_config="ganglia-config"
with_libganglia="$withval"
fi; fi; fi
],
[
- with_libganglia_config="ganglia-config"
with_libganglia="yes"
])
-if test "x$with_libganglia" = "xyes" && test "x$with_libganglia_config" != "x"
+if test "x$with_libganglia" = "xyes"
then
- if test "x$GANGLIA_CPPFLAGS" = "x"
+ if test "x$with_libganglia_config" != "x"
then
- GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
- fi
+ if test "x$GANGLIA_CPPFLAGS" = "x"
+ then
+ GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
+ fi
- if test "x$GANGLIA_LDFLAGS" = "x"
- then
- GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
- fi
+ if test "x$GANGLIA_LDFLAGS" = "x"
+ then
+ GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
+ fi
- if test "x$GANGLIA_LIBS" = "x"
- then
- GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
+ if test "x$GANGLIA_LIBS" = "x"
+ then
+ GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
+ fi
+ else
+ GANGLIA_LIBS="-lganglia"
fi
fi