From: Christian Persch Date: Thu, 4 Jun 2009 18:06:49 +0000 (+0200) Subject: Enable maintainer mode by default X-Git-Tag: EVINCE_2_27_3~27 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=32662ae69e12c36c5e177dc2729a0bb6dcf9ac79;p=evince.git Enable maintainer mode by default Instead of disabled by default. --- diff --git a/configure.ac b/configure.ac index 7551137f..286eb7b5 100644 --- a/configure.ac +++ b/configure.ac @@ -41,12 +41,15 @@ m4_define([ev_binary_version],[ev_document_lt_current]) AC_PREREQ([2.57]) AC_INIT([Evince],[ev_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=evince],[evince]) -AM_INIT_AUTOMAKE([1.9 dist-bzip2 no-dist-gzip]) +AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip]) -AM_CONFIG_HEADER(config.h) -AC_CONFIG_MACRO_DIR(m4) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIR([m4]) -AM_MAINTAINER_MODE +if test -z "$enable_maintainer_mode"; then + enable_maintainer_mode=yes +fi +AM_MAINTAINER_MODE([enable]) AM_PROG_LIBTOOL