Port to Oracle Solaris Studio 12.4
[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 verify
66 xalloc
67 yesno
68 '
69
70 # Additional gnulib-tool options to use.  Use "\newline" to break lines.
71 # We don't need the getline and rpmatch, since yesno doesn't do i18n.
72 gnulib_tool_option_extras="\
73  --avoid getline\
74  --avoid rpmatch\
75  --symlink\
76  --makefile-name=gnulib.mk\
77 "
78
79
80 # Create build-aux, since 'bootstrap' won't do that for us.
81 mkdir -p build-aux
82
83 # Build prerequisites
84 buildreq="\
85 autoconf   2.61
86 automake   1.11
87 autopoint  -
88 gettext    -
89 git        1.4.4
90 makeinfo   -
91 perl       5.5
92 rsync      -
93 tar        -
94 "
95
96 bootstrap_epilogue()
97 {
98   perl -pi -e "s/\@PACKAGE\@/$package/g" README-release
99 }
100
101 # Automake requires that ChangeLog exist.
102 touch ChangeLog || exit 1