Fix byte-compile error
[riece] / bootstrap.conf
1 # Bootstrap configuration.
2
3 # Copyright (C) 2006-2014 Free Software Foundation, Inc.
4
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # gnulib modules used by this package.
20 gnulib_modules="
21 git-version-gen
22 gitlog-to-changelog
23 "
24
25 # Additional xgettext options to use.  Use "\\\newline" to break lines.
26 XGETTEXT_OPTIONS=$XGETTEXT_OPTIONS'\\\
27  --from-code=UTF-8\\\
28  --flag=asprintf:2:c-format --flag=vasprintf:2:c-format\\\
29  --flag=asnprintf:3:c-format --flag=vasnprintf:3:c-format\\\
30  --flag=wrapf:1:c-format\\\
31 '
32
33 # If "AM_GNU_GETTEXT(external" or "AM_GNU_GETTEXT([external]"
34 # appears in configure.ac, exclude some unnecessary files.
35 # Without grep's -E option (not portable enough, pre-configure),
36 # the following test is ugly.  Also, this depends on the existence
37 # of configure.ac, not the obsolescent-named configure.in.  But if
38 # you're using this infrastructure, you should care about such things.
39
40 gettext_external=0
41 grep '^[         ]*AM_GNU_GETTEXT(external\>' configure.ac > /dev/null &&
42   gettext_external=1
43 grep '^[         ]*AM_GNU_GETTEXT(\[external\]' configure.ac > /dev/null &&
44   gettext_external=1
45
46 if test $gettext_external = 1; then
47   # Gettext supplies these files, but we don't need them since
48   # we don't have an intl subdirectory.
49   excluded_files='
50       m4/glibc2.m4
51       m4/intdiv0.m4
52       m4/lcmessage.m4
53       m4/lock.m4
54       m4/printf-posix.m4
55       m4/size_max.m4
56       m4/uintmax_t.m4
57       m4/ulonglong.m4
58       m4/visibility.m4
59       m4/xsize.m4
60   '
61 fi
62
63 # Build prerequisites
64 buildreq="\
65 autoconf   2.59
66 automake   1.9.6
67 git        1.5.5
68 tar        -
69 "
70
71 bootstrap_post_import_hook ()
72 {
73   # Automake requires that ChangeLog exist.
74   touch ChangeLog || return 1
75 }