gzip: fdatasync output dir before unlinking
[debian/gzip] / bootstrap.conf
1 # Bootstrap configuration.
2
3 # Copyright (C) 2006-2007, 2009-2016 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 announce-gen
25 calloc
26 close
27 closein
28 dirname-lgpl
29 fclose
30 fcntl
31 fcntl-safer
32 fdl
33 fdatasync
34 fdopendir
35 fprintf-posix
36 fsync
37 getopt-gnu
38 git-version-gen
39 gitlog-to-changelog
40 gnu-make
41 gnu-web-doc-update
42 gnumakefile
43 gnupload
44 ignore-value
45 intprops
46 largefile
47 lib-ignore
48 lstat
49 maintainer-makefile
50 malloc-gnu
51 manywarnings
52 openat-safer
53 perror
54 printf-posix
55 readme-release
56 realloc-gnu
57 savedir
58 stat-time
59 sys_stat
60 time
61 unistd-safer
62 unlinkat
63 update-copyright
64 utimens
65 xalloc
66 yesno
67 '
68
69 # Additional gnulib-tool options to use.  Use "\newline" to break lines.
70 # We don't need the getline and rpmatch, since yesno doesn't do i18n.
71 gnulib_tool_option_extras="\
72  --avoid getline\
73  --avoid rpmatch\
74  --symlink\
75  --makefile-name=gnulib.mk\
76 "
77
78
79 # Create build-aux, since 'bootstrap' won't do that for us.
80 mkdir -p build-aux
81
82 # Build prerequisites
83 buildreq="\
84 autoconf   2.61
85 automake   1.11
86 autopoint  -
87 gettext    -
88 git        1.4.4
89 makeinfo   -
90 perl       5.5
91 rsync      -
92 tar        -
93 "
94
95 bootstrap_epilogue()
96 {
97   perl -pi -e "s/\@PACKAGE\@/$package/g" README-release
98 }
99
100 # Automake requires that ChangeLog exist.
101 touch ChangeLog || exit 1