Commit 52d2552d 52d2552d23daa6cb48ed26396ba2fa374a168100 by Sergey Poznyakoff

Update for gnulib v0.0-4270-g18aae5b.

* bootstrap.conf: Build included listings in doc/texinfo.
* configure.ac: Require gettext 0.18
* doc/texinfo/Makefile.am: Remove the .c.inc rules.
* doc/texinfo/maint.mk: New file.
* lib/Makefile.am (libmuaux_la_SOURCES): Replace with libmuaux_a_SOURCES.
1 parent c22a0737
...@@ -14,6 +14,7 @@ ChangeLog ...@@ -14,6 +14,7 @@ ChangeLog
14 INSTALL 14 INSTALL
15 Makefile 15 Makefile
16 Makefile.in 16 Makefile.in
17 TAGS
17 aclocal.m4 18 aclocal.m4
18 autom4te.cache 19 autom4te.cache
19 build-aux 20 build-aux
......
...@@ -97,3 +97,6 @@ do ...@@ -97,3 +97,6 @@ do
97 test -d $mbox/cur || mkdir $mbox/cur 97 test -d $mbox/cur || mkdir $mbox/cur
98 test -d $mbox/tmp || mkdir $mbox/tmp 98 test -d $mbox/tmp || mkdir $mbox/tmp
99 done 99 done
100
101 # Create included listings for texinfo docs.
102 make -C doc/texinfo -f maint.mk
......
...@@ -98,7 +98,7 @@ status_tcpwrap=maybe ...@@ -98,7 +98,7 @@ status_tcpwrap=maybe
98 98
99 dnl Internationalization macros. 99 dnl Internationalization macros.
100 AM_GNU_GETTEXT([external], [need-ngettext]) 100 AM_GNU_GETTEXT([external], [need-ngettext])
101 AM_GNU_GETTEXT_VERSION(0.17) 101 AM_GNU_GETTEXT_VERSION(0.18)
102 AM_ICONV 102 AM_ICONV
103 AC_CHECK_HEADERS(iconv.h) 103 AC_CHECK_HEADERS(iconv.h)
104 AC_CHECK_TYPE(iconv_t,:, 104 AC_CHECK_TYPE(iconv_t,:,
......
...@@ -77,16 +77,7 @@ mailutils_TEXINFOS = \ ...@@ -77,16 +77,7 @@ mailutils_TEXINFOS = \
77 $(RENDITION_TEXI)\ 77 $(RENDITION_TEXI)\
78 $(INCFILES) 78 $(INCFILES)
79 79
80 ## Fake configure into including srcdir to VPATH:
81 s=${srcdir}:${top_srcdir}/examples/
82 VPATH = $(s)
83
84 SUFFIXES=.c .inc
85 .c.inc:
86 sed -f $(mu_aux_dir)/texify.sed $< > $@
87
88 DISTCLEANFILES=*.pgs *.kys *.vrs 80 DISTCLEANFILES=*.pgs *.kys *.vrs
89 MAINTAINERCLEANFILES=$(INCFILES)
90 clean-local: 81 clean-local:
91 rm -rf manual 82 rm -rf manual
92 83
......
1 # GNU Mailutils -- a suite of utilities for electronic mail
2 # Copyright (C) 2010 Free Software Foundation, Inc.
3 #
4 # This library is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU Lesser General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public License
15 # along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>.
16
17 mu_aux_dir = ../../mu-aux
18
19 .SUFFIXES: .c .inc
20 .c.inc:
21 sed -f $(mu_aux_dir)/texify.sed $< > $@
22
23 all: addr.inc http.inc mailcap.inc numaddr.inc sfrom.inc url-parse.inc
24
25 addr.inc: ../../libmailutils/tests/addr.c
26 http.inc: ../../examples/http.inc
27 mailcap.inc: ../../libmailutils/tests/mailcap.c
28 numaddr.inc: ../../examples/numaddr.inc
29 sfrom.inc: ../../examples/sfrom.inc
30 url-parse.inc: ../../libmailutils/tests/url-parse.inc
31
...@@ -22,7 +22,7 @@ include gnulib.mk ...@@ -22,7 +22,7 @@ include gnulib.mk
22 22
23 INCLUDES = @MU_LIB_COMMON_INCLUDES@ 23 INCLUDES = @MU_LIB_COMMON_INCLUDES@
24 24
25 libmuaux_la_SOURCES += \ 25 libmuaux_a_SOURCES += \
26 daemon.c\ 26 daemon.c\
27 mailcap.c\ 27 mailcap.c\
28 mu_dbm.c\ 28 mu_dbm.c\
......