[file-roller] configure.ac: don't give an error if the nautilus libraries could not be found
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [file-roller] configure.ac: don't give an error if the nautilus libraries could not be found
- Date: Mon, 27 Aug 2012 19:04:52 +0000 (UTC)
commit 3c645945592180594ce76800143aa0a66a2cc7b4
Author: Paolo Bacchilega <paobac src gnome org>
Date: Mon Aug 27 20:23:41 2012 +0200
configure.ac: don't give an error if the nautilus libraries could not be found
configure.ac | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 0f7c38e..3f78bc9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -104,18 +104,18 @@ AC_ARG_ENABLE([nautilus_actions],
if test x"$enable_nautilus_actions" != x"no" ; then
PKG_CHECK_MODULES(NAUTILUS, \
- libnautilus-extension >= $NAUTILUS_REQUIRED \
- glib-2.0 \
- gio-2.0)
- AC_SUBST(NAUTILUS_CFLAGS)
- AC_SUBST(NAUTILUS_LIBS)
+ [libnautilus-extension >= $NAUTILUS_REQUIRED \
+ glib-2.0 \
+ gio-2.0],
+ [enable_nautilus_actions=yes],
+ [enable_nautilus_actions=no])
+ NAUTILUS_EXTENSION_DIR=`$PKG_CONFIG --variable=extensiondir libnautilus-extension`
fi
-AM_CONDITIONAL(ENABLE_NAUTILUS_ACTIONS, test x"$enable_nautilus_actions" != x"no")
-
-
-NAUTILUS_EXTENSION_DIR=`$PKG_CONFIG --variable=extensiondir libnautilus-extension`
+AC_SUBST(NAUTILUS_CFLAGS)
+AC_SUBST(NAUTILUS_LIBS)
AC_SUBST(NAUTILUS_EXTENSION_DIR)
+AM_CONDITIONAL(ENABLE_NAUTILUS_ACTIONS, test x"$enable_nautilus_actions" != x"no")
dnl ******************************
dnl
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]