Codebase list nemo-fileroller / c4c65f4
New upstream version 3.2.1 Maximiliano Curia 7 years ago
2 changed file(s) with 3 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
00 # Initialization
11
2 AC_INIT([nemo-fileroller],3.2.0)
2 AC_INIT([nemo-fileroller],3.2.1)
33
44 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
55
1919 AM_PROG_LIBTOOL
2020
2121 # Check for pkg-config
22 AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
23 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
24 if test "x$HAVE_PKGCONFIG" = "xno"; then
25 AC_MSG_ERROR(you need to have pkgconfig installed !)
26 fi
22 PKG_PROG_PKG_CONFIG
2723
2824 PKG_CHECK_MODULES(NEMO, libnemo-extension >= $NEMO_REQUIRED)
2925 PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRED)
392392 {
393393 GList *ret = NULL;
394394
395 ret = g_list_append (ret, _("Nemo Fileroller:::Allows managing of archives from the context menu"));
395 ret = g_list_append (ret, ("Nemo Fileroller:::Allows managing of archives from the context menu"));
396396
397397 return ret;
398398 }