From 5f07935d90bd52c9fc643b726024f328b35b5fbb Mon Sep 17 00:00:00 2001 From: Nickolay V. Shmyrev Date: Mon, 14 Nov 2005 20:26:35 +0000 Subject: Release 0.5.0 2005-11-14 Nickolay V. Shmyrev * NEWS: * configure.ac: Release 0.5.0 2005-11-14 Nickolay V. Shmyrev * comics/Makefile.am: * configure.ac: * shell/ev-document-types.c: (ev_document_types_add_filters): More advanced handling of custom mime type installation. --- (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index e72c105..48a937a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT(evince, 0.4.0) +AC_INIT(evince, 0.5.0) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AM_CONFIG_HEADER(config.h) @@ -272,9 +272,19 @@ AC_ARG_ENABLE(comics, [AC_HELP_STRING([--enable-comics], [Compile with support for comic book archives])],enable_comics=yes,enable_comics=no) if test "x$enable_comics" = "xyes"; then AC_DEFINE([ENABLE_COMICS], [1], [Enable support for comics.]) + fi AM_CONDITIONAL(ENABLE_COMICS, test x$enable_comics = xyes) +AC_PATH_PROG(UPDATE_MIME_DB, update-mime-database, no) +AC_SUBST(UPDATE_MIME_DB) + +AC_ARG_ENABLE(update-mimedb, + AC_HELP_STRING([--disable-update-mimedb], + [disable the update-mime-database after install [default=no]]),, + enable_update_mimedb=yes) +AM_CONDITIONAL(ENABLE_UPDATE_MIMEDB, test x$enable_update_mimedb = xyes) + dnl ================== End of comic book checks ============================================ dnl =================== Mime types list ==================================================== -- cgit v0.9.1