gnulib: sync submodule to latest
[coreutils.git] / bootstrap.conf
blobe61e241011ade18adfa07fa4c5caf5861fb88ba2
1 # Bootstrap configuration.
3 # Copyright (C) 2006-2009 Free Software Foundation, Inc.
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.
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.
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/>.
19 # We don't need these modules.
20 avoided_gnulib_modules='
21         --avoid=canonicalize-lgpl
22         --avoid=dummy
23         --avoid=lock
26 # These modules are obsolete and can probably be removed soon,
27 # but leave them in for now to minimize changes.
28 obsolete_gnulib_modules='
29         atexit memchr memcmp memcpy memmove memset rename
30         strcspn strtod strtol utime
33 # gnulib modules used by this package.
34 gnulib_modules="
35         $avoided_gnulib_modules
36         $obsolete_gnulib_modules
37         acl alloca announce-gen argmatch
38         argv-iter
39         assert
40         autobuild
41         backupfile base64
42         c-strcase c-strtod
43         c-strtold calloc canon-host canonicalize chown cloexec
44         config-h configmake
45         closein closeout
46         crypto/md5
47         crypto/sha1
48         crypto/sha256
49         crypto/sha512
50         cycle-check
51         d-ino d-type diacrit dirfd dirname dup2
52         error euidaccess exclude exitfail fchdir fcntl fcntl-safer fdl
53         file-type fileblocks filemode filenamecat filevercmp fnmatch-gnu
54         fopen-safer
55         fprintftime
56         fseeko
57         fsusage ftruncate
58         ftello
59         fts getdate getgroups gethrxtime
60         gendocs
61         getline getloadavg getndelim2 getopt getpagesize getpass-gnu
62         gettext gettime gettimeofday getugroups getusershell
63         git-version-gen
64         gitlog-to-changelog
65         gnu-make gnumakefile gnupload
66         group-member hard-locale hash hash-pjw host-os human idcache
67         ignore-value
68         inttostr inttypes isapipe
69         lchmod lchown lib-ignore linebuffer link-follow
70         long-options lstat malloc
71         manywarnings
72         mbrtowc
73         mbswidth
74         memcasecmp mempcpy
75         memrchr mgetgroups
76         mkancesdirs mkdir mkdir-p mkstemp mktime modechange
77         mountlist mpsort obstack pathmax perl physmem
78         posix-shell
79         posixtm
80         posixver
81         progname
82         propername
83         putenv
84         quote quotearg raise readlink areadlink-with-size
85         randint
86         randperm
87         readtokens
88         readtokens0 readutmp
89         realloc regex rename-dest-slash rmdir rmdir-errno
90         root-dev-ino
91         rpmatch
92         safe-read same
93         save-cwd savedir savewd
94         selinux-at
95         settime sig2str sigaction ssize_t stat-macros
96         stat-time stdbool stdlib-safer stpcpy
97         stpncpy
98         strdup
99         strftime
100         strpbrk strtoimax strtoumax strverscmp sys_stat timespec tzset
101         unicodeio unistd-safer unlink-busy unlinkdir unlocked-io
102         uptime
103         useless-if-before-free
104         userspec utimecmp utimens
105         vasprintf-posix
106         vc-list-files
107         verify version-etc-fsf verror
108         warnings
109         wcwidth winsz-ioctl winsz-termios write-any-file
110         xalloc
111         xfreopen
112         xgetcwd xgethostname
113         xmemcoll xnanosleep
114         xprintf
115         xprintf-posix
116         xstrtod xstrtoimax
117         xstrtol xstrtold xstrtoumax yesno
120 # Other locale categories that need message catalogs.
121 EXTRA_LOCALE_CATEGORIES=LC_TIME
123 # Additional xgettext options to use.  Use "\\\newline" to break lines.
124 XGETTEXT_OPTIONS=$XGETTEXT_OPTIONS'\\\
125  --flag=asnprintf:3:c-format\\\
126  --flag=asprintf:2:c-format\\\
127  --flag=error:3:c-format\\\
128  --flag=error_at_line:5:c-format\\\
129  --flag=vasnprintf:3:c-format\\\
130  --flag=vasprintf:2:c-format\\\
131  --flag=verror:3:c-format\\\
132  --flag=verror_at_line:5:c-format\\\
133  --flag=wrapf:1:c-format\\\
134  --flag=xasprintf:1:c-format\\\
135  --flag=xfprintf:2:c-format\\\
136  --flag=xprintf:1:c-format\\\
137  --from-code=UTF-8\\\
140 # Append these, since we use the propername module.
141 see_manual='"This is a proper name. See the gettext manual, section Names."'
142 see_manual=\'"$see_manual"\'
143 XGETTEXT_OPTIONS=$XGETTEXT_OPTIONS'\\\
144  --keyword=proper_name:1,'"$see_manual"'\\\
145  --keyword=proper_name_utf8:1,'"$see_manual"'\\\
148 # If "AM_GNU_GETTEXT(external" or "AM_GNU_GETTEXT([external]"
149 # appears in configure.ac, exclude some unnecessary files.
150 # Without grep's -E option (not portable enough, pre-configure),
151 # the following test is ugly.  Also, this depends on the existence
152 # of configure.ac, not the obsolescent-named configure.in.  But if
153 # you're using this infrastructure, you should care about such things.
155 gettext_external=0
156 grep '^[         ]*AM_GNU_GETTEXT(external\>' configure.ac > /dev/null &&
157   gettext_external=1
158 grep '^[         ]*AM_GNU_GETTEXT(\[external\]' configure.ac > /dev/null &&
159   gettext_external=1
161 if test $gettext_external = 1; then
162   # Gettext supplies these files, but we don't need them since
163   # we don't have an intl subdirectory.
164   excluded_files='
165       m4/glibc2.m4
166       m4/intdiv0.m4
167       m4/lcmessage.m4
168       m4/lock.m4
169       m4/uintmax_t.m4
170       m4/ulonglong.m4
171       m4/visibility.m4
172   '
175 gnulib_tool_option_extras="--tests-base=$bt/gnulib-tests --with-tests"
177 # Build prerequisites
178 buildreq="\
179 autoconf   2.61
180 automake   1.10a
181 autopoint  -
182 bison      -
183 gettext    -
184 git        1.4.4
185 gperf      -
186 gzip       -
187 makeinfo   -
188 perl       5.5
189 rsync      -
190 tar        -
193 # Automake requires that ChangeLog exist.
194 touch ChangeLog