From 051a0a4b3253ed83406e5158d751f6215c5a39f3 Mon Sep 17 00:00:00 2001 From: infirit Date: Thu, 31 Oct 2013 12:58:13 +0100 Subject: Fix typo in open-terminal check --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3b79583..5133da3 100644 --- a/configure.ac +++ b/configure.ac @@ -79,7 +79,7 @@ AC_ARG_ENABLE([open-terminal], [enable_open_terminal=$enableval], [enable_open_terminal=yes]) -if test "x$enable_open-terminal" = "xyes"; then +if test "x$enable_open_terminal" = "xyes"; then PKG_CHECK_MODULES(OPENTERMINAL, glib-2.0 >= $GLIB_REQUIRED mate-desktop-2.0 >= $LIBMATE_DESKTOP_REQUIRED) -- cgit v1.2.1 From 8c1bbf0dfda08ed1c278018f7ee9e5887efd2b57 Mon Sep 17 00:00:00 2001 From: infirit Date: Thu, 31 Oct 2013 13:00:02 +0100 Subject: Improve summary --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index 5133da3..fc78956 100644 --- a/configure.ac +++ b/configure.ac @@ -179,6 +179,12 @@ AC_OUTPUT([ ]) echo " +caja-extensions-$VERSION: + prefix: ${prefix} + compiler: ${CC} + caja-extension dir ${ac_with_cajadir} + Gtk+ version: ${GTK_API_VERSION} + Plugins to be build: Image Converter: $enable_image_converter Open Terminal: $enable_open_terminal -- cgit v1.2.1 From 3a73f001091efb46993acadafd942a54335ca204 Mon Sep 17 00:00:00 2001 From: infirit Date: Thu, 31 Oct 2013 13:00:45 +0100 Subject: INCLUDES -> AM_CPPFLAGS --- gksu/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gksu/Makefile.am b/gksu/Makefile.am index 4180075..be1bb7d 100644 --- a/gksu/Makefile.am +++ b/gksu/Makefile.am @@ -1,6 +1,5 @@ AM_CFLAGS = -g -O2 -Wall -INCLUDES = ${CAJA_CFLAGS} -AM_CPPFLAGS = -DLOCALEDIR=\"$(datadir)/locale\" -DDATA_DIR=\"$(datadir)\" -DPREFIX=\"$(prefix)\" +AM_CPPFLAGS = -DLOCALEDIR=\"$(datadir)/locale\" -DDATA_DIR=\"$(datadir)\" -DPREFIX=\"$(prefix)\" $(CAJA_CFLAGS) caja_extensiondir=$(libdir)/caja/extensions-2.0 caja_extension_LTLIBRARIES = libcaja-gksu.la -- cgit v1.2.1