build: use more gnulib modules for better POSIX compliance
[debian/gzip] / bootstrap.conf
1 # Bootstrap configuration.
2
3 # Copyright (C) 2006-2009 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 # gzip doesn't use gettext.
20 IMPORT_FROM_GETTEXT=no
21
22 # gnulib modules used by this package.
23 gnulib_modules='
24         calloc
25         close
26         closein
27         fclose
28         fcntl
29         fcntl-safer
30         fdl
31         fprintf-posix
32         getopt-gnu
33         git-version-gen
34         gitlog-to-changelog
35         gnu-make
36         gnumakefile
37         lstat
38         maintainer-makefile
39         malloc
40         perror
41         printf-posix
42         realloc
43         stat-time
44         sys_stat
45         time
46         update-copyright
47         utimens
48         xalloc
49         yesno
50 '
51
52 # Additional gnulib-tool options to use.  Use "\newline" to break lines.
53 # We don't need the getline and rpmatch, since yesno doesn't do i18n.
54 gnulib_tool_option_extras="\
55  --avoid getline\
56  --avoid rpmatch\
57 "
58
59 # Create build-aux, since 'bootstrap' won't do that for us.
60 mkdir -p build-aux
61
62 # Build prerequisites
63 buildreq="\
64 autoconf   2.61
65 automake   1.11
66 autopoint  -
67 gettext    -
68 git        1.4.4
69 makeinfo   -
70 perl       5.5
71 rsync      -
72 tar        -
73 "
74
75 # Automake requires that ChangeLog exist.
76 touch ChangeLog || exit 1