]>
Commit | Line | Data |
---|---|---|
1 | # Bootstrap configuration. | |
2 | ||
3 | # Copyright (C) 2006-2012 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 | # gnulib modules used by this package. | |
19 | gnulib_modules=' | |
20 | announce-gen argmatch assert calloc-posix close closeout config-h c-strcase | |
21 | configmake | |
22 | dirname | |
23 | do-release-commit-and-tag | |
24 | error extensions fdl fopen-safer gendocs getopt-gnu | |
25 | gettext git-version-gen gitlog-to-changelog | |
26 | gpl-3.0 hash inttypes isnan javacomp-script | |
27 | javaexec-script ldexpl maintainer-makefile malloc-gnu | |
28 | mbswidth obstack perror progname | |
29 | quote quotearg | |
30 | readme-release | |
31 | realloc-posix | |
32 | spawn-pipe stdbool stpcpy strdup-posix strerror strtoul strverscmp | |
33 | unistd unistd-safer unlocked-io update-copyright unsetenv verify | |
34 | warnings | |
35 | xalloc | |
36 | xalloc-die | |
37 | xconcat-filename | |
38 | xmemdup0 | |
39 | xstrndup | |
40 | ||
41 | fprintf-posix printf-posix snprintf-posix sprintf-posix | |
42 | vsnprintf-posix vsprintf-posix | |
43 | ' | |
44 | ||
45 | # Additional xgettext options to use. Use "\\\newline" to break lines. | |
46 | XGETTEXT_OPTIONS=$XGETTEXT_OPTIONS'\\\ | |
47 | --from-code=UTF-8\\\ | |
48 | --flag=asprintf:2:c-format\\\ | |
49 | --flag=complain:1:c-format --flag=complain_at:2:c-format\\\ | |
50 | --flag=fatal:1:c-format --flag=fatal_at:2:c-format\\\ | |
51 | --flag=warn:1:c-format --flag=warn_at:2:c-format\\\ | |
52 | --flag=unexpected_end:2:c-format\\\ | |
53 | ' | |
54 | XGETTEXT_OPTIONS_RUNTIME=$XGETTEXT_OPTIONS'\\\ | |
55 | --keyword=YY_ \\\ | |
56 | ' | |
57 | ||
58 | # Gettext supplies these files, but we don't need them since | |
59 | # we don't have an intl subdirectory. | |
60 | excluded_files=' | |
61 | m4/glibc2.m4 | |
62 | m4/intdiv0.m4 | |
63 | m4/intl.m4 | |
64 | m4/intldir.m4 | |
65 | m4/intmax.m4 | |
66 | m4/lcmessage.m4 | |
67 | m4/lock.m4 | |
68 | m4/longdouble.m4 | |
69 | m4/signed.m4 | |
70 | m4/uintmax_t.m4 | |
71 | m4/ulonglong.m4 | |
72 | m4/visibility.m4 | |
73 | ' | |
74 | ||
75 | gnulib_tool_option_extras='--symlink --makefile-name=gnulib.mk' | |
76 | ||
77 | bootstrap_post_import_hook() | |
78 | { | |
79 | # Massage lib/gnulib.mk before using it later in the bootstrapping process. | |
80 | etc/prefix-gnulib-mk --lib-name=$gnulib_name lib/$gnulib_mk | |
81 | ||
82 | # Ensure that ChangeLog exists, for automake. | |
83 | test -f ChangeLog || touch ChangeLog | |
84 | } | |
85 | ||
86 | bootstrap_epilogue() | |
87 | { | |
88 | # Make sure we don't need src/bison, which usually doesn't exist at | |
89 | # the time of a bootstrap. | |
90 | touch src/parse-gram.[ch] | |
91 | ||
92 | perl -pi -e "s/\@PACKAGE\@/$package/g" README-release | |
93 | } | |
94 | ||
95 | # Keep our bootstrap script in sync with gnulib's. If we ever need to | |
96 | # maintain our own bootstrap script again, set this to false, remove | |
97 | # the bootstrap entry from the file .x-update-copyright, and add any | |
98 | # needed copyright years to the copyright statement in the bootstrap | |
99 | # script. | |
100 | bootstrap_sync=true |