From 8583b0d30a4f34a59914f3d1fe8ef82b0e399855 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bruno=20Pr=C3=A9mont?= Date: Tue, 10 Jul 2007 23:30:57 +0200 Subject: [PATCH] configure.in: Use the custom CFLAGS and LDFLAGS when testing for the upsclient library. --- configure.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.in b/configure.in index 0772a9b9..5b3a54a6 100644 --- a/configure.in +++ b/configure.in @@ -1256,6 +1256,10 @@ then fi if test "x$with_libupsclient" = "xyes" then + CFLAGS_ORIG=$CFLAGS + CFLAGS="$CFLAGS $with_upsclient_cflags" + LDFLAGS_ORIG=$LDFLAGS + LDFLAGS="$LDFLAGS $with_upsclient_libs" AC_CHECK_LIB(upsclient, upscli_connect, [ BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_upsclient_cflags" @@ -1266,6 +1270,8 @@ then [ with_libupsclient="no" ]) + CFLAGS=$CFLAGS_ORIG + LDFLAGS=$LDFLAGS_ORIG fi if test "x$with_libupsclient" = "xyes" then -- 2.11.0