Reflect renaming: mreadlink-with-size -> areadlink-with-size.
[platform/upstream/coreutils.git] / bootstrap.conf
1 # Bootstrap configuration.
2
3 # Copyright (C) 2006, 2007 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 # We don't need these modules, even though gnulib-tool mistakenly
20 # includes them because of gettext and fchdir dependencies.
21 avoided_gnulib_modules='
22         --avoid=lock
23         --avoid=canonicalize-lgpl
24 '
25
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 free memchr memcmp memcpy memmove memset rename
30         strcspn strtod strtol utime
31 '
32
33 # gnulib modules used by this package.
34 gnulib_modules="
35         $avoided_gnulib_modules
36         $obsolete_gnulib_modules
37         acl alloca announce-gen argmatch assert
38         autobuild
39         backupfile base64
40         c-strcase c-strtod
41         c-strtold calloc canon-host canonicalize chown cloexec
42         config-h configmake
43         closein closeout
44         crypto/md5 crypto/sha1
45         cycle-check
46         d-ino d-type diacrit dirfd dirname dup2
47         error euidaccess exclude exitfail fchdir fcntl fcntl-safer fdl
48         file-set
49         file-type fileblocks filemode filenamecat fnmatch-gnu
50         fopen-safer
51         fprintftime
52         fseeko
53         fsusage ftruncate
54         ftello
55         fts getdate getgroups gethrxtime
56         getline getloadavg getndelim2 getopt getpagesize getpass-gnu
57         gettext gettime gettimeofday getugroups getusershell gnupload
58         group-member hard-locale hash hash-pjw host-os human idcache
59         inttostr inttypes isapipe
60         lchmod lchown lib-ignore linebuffer link-follow
61         long-options lstat malloc mbswidth memcasecmp mempcpy
62         memrchr mgetgroups
63         mkancesdirs mkdir mkdir-p mkstemp mktime modechange
64         mountlist mpsort obstack pathmax perl physmem posixtm posixver putenv
65         quote quotearg raise readlink areadlink-with-size readtokens
66         readtokens0 readutmp
67         realloc regex rename-dest-slash rmdir rmdir-errno
68         root-dev-ino
69         rpmatch
70         safe-read same
71         save-cwd savedir savewd
72         selinux-at
73         settime sig2str ssize_t stat-macros
74         stat-time stdbool stdlib-safer stpcpy strftime
75         strpbrk strtoimax strtoumax strverscmp sys_stat timespec tzset
76         unicodeio unistd-safer unlink-busy unlinkdir unlocked-io
77         uptime userspec utimecmp utimens vasprintf verify version-etc-fsf
78         wcwidth winsz-ioctl winsz-termios write-any-file
79         xalloc xgetcwd xgethostname
80         xmemcoll xnanosleep xstrtod xstrtoimax
81         xstrtol xstrtold xstrtoumax yesno
82 "
83
84 # Other locale categories that need message catalogs.
85 EXTRA_LOCALE_CATEGORIES=LC_TIME
86
87 # Additional xgettext options to use.  Use "\\\newline" to break lines.
88 XGETTEXT_OPTIONS=$XGETTEXT_OPTIONS'\\\
89  --from-code=UTF-8\\\
90  --flag=asprintf:2:c-format --flag=vasprintf:2:c-format\\\
91  --flag=asnprintf:3:c-format --flag=vasnprintf:3:c-format\\\
92  --flag=wrapf:1:c-format\\\
93 '
94
95 # If "AM_GNU_GETTEXT(external" or "AM_GNU_GETTEXT([external]"
96 # appears in configure.ac, exclude some unnecessary files.
97 # Without grep's -E option (not portable enough, pre-configure),
98 # the following test is ugly.  Also, this depends on the existence
99 # of configure.ac, not the obsolescent-named configure.in.  But if
100 # you're using this infrastructure, you should care about such things.
101
102 gettext_external=0
103 grep '^[         ]*AM_GNU_GETTEXT(external\>' configure.ac > /dev/null &&
104   gettext_external=1
105 grep '^[         ]*AM_GNU_GETTEXT(\[external\]' configure.ac > /dev/null &&
106   gettext_external=1
107
108 if test $gettext_external = 1; then
109   # Gettext supplies these files, but we don't need them since
110   # we don't have an intl subdirectory.
111   excluded_files='
112       m4/glibc2.m4
113       m4/intdiv0.m4
114       m4/lcmessage.m4
115       m4/lock.m4
116       m4/uintmax_t.m4
117       m4/ulonglong.m4
118       m4/visibility.m4
119   '
120 fi