[PATCH 1/3] build: avoid the export of NETCACHE variable
- From: Víctor Manuel Jáquez Leal <vjaquez igalia com>
- To: grilo-list gnome org
- Subject: [PATCH 1/3] build: avoid the export of NETCACHE variable
- Date: Tue, 22 Nov 2011 16:57:15 +0100
NETCACHE variables is not used for compiler tasks, so the PKG_CHECK_MODULES
can be replaced by a PKG_CHECK_EXISTS, which does not export an automake
variable, as we only need to know if cache operations are supported in libsoup
given the version number.
Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez igalia com>
---
configure.ac | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index f4a06a2..2e61724 100644
--- a/configure.ac
+++ b/configure.ac
@@ -117,9 +117,9 @@ PKG_CHECK_MODULES(NET, libsoup-2.4,
HAVE_LIBSOUP=yes,
HAVE_LIBSOUP=no)
-PKG_CHECK_MODULES(NETCACHE, libsoup-2.4 >= 2.33.4,
- HAVE_CACHED_LIBSOUP=yes,
- HAVE_CACHED_LIBSOUP=no)
+PKG_CHECK_EXISTS([libsoup-2.4 >= 2.33.4],
+ [HAVE_CACHED_LIBSOUP=yes],
+ [HAVE_CACHED_LIBSOUP=no])
AC_ARG_ENABLE([grl_net],
AS_HELP_STRING([--enable-grl-net],
[Enable Grilo Net library (default: auto)]),
--
1.7.7.1
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]