libm4: fix path_truncate() regressions on OS/2.
[m4/ericb.git] / bootstrap.conf
blobb48b6501e84fb38f9c49f2e7f6d3f91021d93799
1 # bootstrap.conf (GNU M4) version 2010-09-10
2 # Written by Gary V. Vaughan, 2010
4 # Copyright (C) 2010, 2013-2014 Free Software Foundation, Inc.
6 # This file is part of GNU M4.
8 # GNU M4 is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # GNU M4 is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 ## -------------- ##
23 ## Configuration. ##
24 ## -------------- ##
26 copyright_holder="Free Software Foundation, Inc."
28 # List of programs (and minimum versions) required to bootstrap, maintain
29 # and release Libtool.
30 buildreq='
31         help2man   1.29        http://www.gnu.org/s/help2man
32         makeinfo   4.13        http://www.gnu.org/s/texinfo
33         xz         -           http://tukaani.org/xz
36 # Instructions on how to install packages in $buildreq.
37 buildreq_readme=HACKING
39 # A file only visible in a vcs working directory.
40 checkout_only_file=HACKING
42 # Local gnulib submodule path.
43 gnulib_path=build-aux/gnulib
45 # Additional gnulib-tool options to use.
46 gnulib_tool_options=$gnulib_tool_options'
47         --libtool
50 # gnulib_modules must remain empty in order to get --update style
51 # gnulib-tool invocations, so we add the bootstrap components here.
52 gnulib_non_module_files=$gnulib_non_module_files"
53         build-aux/bootstrap.in
54         build-aux/extract-trace
55         build-aux/funclib.sh
56         build-aux/inline-source
57         build-aux/options-parser"
59 # List dependencies here too; we don't extract them, otherwise dependent
60 # modules could end up being imported to src/ *and* gnu/!
61 src_modules='
62 getopt-gnu
63 getopt-posix
64 version-etc-fsf
65 version-etc
66 xstrtol
69 # What ignore files to maintain.
70 vc_ignore=".gitignore"
73 ## --------------- ##
74 ## Hook functions. ##
75 ## --------------- ##
78 # m4_precopy_git_version_gen
79 # --------------------------
80 # Autopoint gets confused if git-version-gen is missing.
81 m4_precopy_git_version_gen ()
83     $debug_cmd
85     $require_build_aux
87     func_gnulib_tool_copy_file build-aux/git-version-gen $build_aux/git-version-gen
89 func_add_hook func_prep m4_precopy_git_version_gen
92 # m4_install_texinfo_diff_driver
93 # ------------------------------
94 # Help git to do a better job of merging texinfo files.
95 m4_install_texinfo_diff_driver ()
97     $debug_cmd
99     $require_git
101     test true = "$GIT" || {
102       if $GIT config diff.texinfo.funcname >/dev/null ; then
103         :
104       else
105         func_echo "initializing git texinfo diff driver"
106         git config diff.texinfo.funcname '^@node[ \t][ \t]*\\([^,][^,]*\\)'
107       fi
108     }
110 func_add_hook func_prep m4_install_texinfo_diff_driver
113 # m4_copy_src_modules
114 # -------------------
115 # Copy $src_modules from gnulib to src directory.
116 m4_copy_src_modules ()
118     $debug_cmd
120     $require_gnulib_tool
122     test true = "$gnulib_tool" || {
123       $require_macro_dir
125       for file in `$gnulib_tool --extract-filelist $src_modules | sort -u`
126       do
127         maybe_exit_cmd=:
129         func_basename $file
130         dest=$func_basename_result
132         case $file in
133           lib/*) dest=src/$dest ;;
134           m4/*)  dest=$macro_dir/$dest ;;
135           *)     func_error "$file: unknown file"
136                  maybe_exit_cmd="exit $EXIT_FAILURE"
137                  dest= ;;
138         esac
140         # Be sure to show all copying errors before bailing out
141         if test -n "$dest"; then
142           func_gnulib_tool_copy_file "$file" "$dest"
143         fi
144       done
146       $maybe_exit_cmd
147     }
149 func_add_hook func_gnulib_tool m4_copy_src_modules
152 # Local variables:
153 # mode: shell-script
154 # sh-indentation: 2
155 # eval: (add-hook 'write-file-hooks 'time-stamp)
156 # time-stamp-start: "# bootstrap.conf (GNU M4) version "
157 # time-stamp-format: "%:y-%02m-%02d"
158 # time-stamp-end: "$"
159 # End: