summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 961ead7)
raw | patch | inline | side by side (parent: 961ead7)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sat, 23 Apr 2016 13:00:26 +0000 (15:00 +0200) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Tue, 10 May 2016 09:25:21 +0000 (11:25 +0200) |
There's no need to save LDFLAGS when we're just
checking a header.
(cherry picked from commit 38068ecc7922ace29bb6af3f8ee5568c3fe96c08)
checking a header.
(cherry picked from commit 38068ecc7922ace29bb6af3f8ee5568c3fe96c08)
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index 5e4c309ac0b110a815a9f6a6de105ab66fe9e501..c4fe39acf92f6694d2463cf248883e8167bb95b1 100644 (file)
--- a/configure.ac
+++ b/configure.ac
@@ -3824,15 +3824,11 @@ AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrd
if test "x$with_librrd" = "xyes"
then
SAVE_CPPFLAGS="$CPPFLAGS"
- SAVE_LDFLAGS="$LDFLAGS"
-
CPPFLAGS="$CPPFLAGS $librrd_cflags"
- LDFLAGS="$LDFLAGS $librrd_ldflags"
AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
CPPFLAGS="$SAVE_CPPFLAGS"
- LDFLAGS="$SAVE_LDFLAGS"
fi
if test "x$with_librrd" = "xyes"
then