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