missing 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. #! /bin/sh
  2. # Common stub for a few missing GNU programs while installing.
  3. scriptversion=2012-01-06.13; # UTC
  4. # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
  5. # 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
  6. # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2, or (at your option)
  10. # any later version.
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # 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/>.
  17. # As a special exception to the GNU General Public License, if you
  18. # distribute this file as part of a program that contains a
  19. # configuration script generated by Autoconf, you may include it under
  20. # the same distribution terms that you use for the rest of that program.
  21. if test $# -eq 0; then
  22. echo 1>&2 "Try \`$0 --help' for more information"
  23. exit 1
  24. fi
  25. run=:
  26. sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p'
  27. sed_minuso='s/.* -o \([^ ]*\).*/\1/p'
  28. # In the cases where this matters, `missing' is being run in the
  29. # srcdir already.
  30. if test -f configure.ac; then
  31. configure_ac=configure.ac
  32. else
  33. configure_ac=configure.in
  34. fi
  35. msg="missing on your system"
  36. case $1 in
  37. --run)
  38. # Try to run requested program, and just exit if it succeeds.
  39. run=
  40. shift
  41. "$@" && exit 0
  42. # Exit code 63 means version mismatch. This often happens
  43. # when the user try to use an ancient version of a tool on
  44. # a file that requires a minimum version. In this case we
  45. # we should proceed has if the program had been absent, or
  46. # if --run hadn't been passed.
  47. if test $? = 63; then
  48. run=:
  49. msg="probably too old"
  50. fi
  51. ;;
  52. -h|--h|--he|--hel|--help)
  53. echo "\
  54. $0 [OPTION]... PROGRAM [ARGUMENT]...
  55. Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
  56. error status if there is no known handling for PROGRAM.
  57. Options:
  58. -h, --help display this help and exit
  59. -v, --version output version information and exit
  60. --run try to run the given command, and emulate it if it fails
  61. Supported PROGRAM values:
  62. aclocal touch file \`aclocal.m4'
  63. autoconf touch file \`configure'
  64. autoheader touch file \`config.h.in'
  65. autom4te touch the output file, or create a stub one
  66. automake touch all \`Makefile.in' files
  67. bison create \`y.tab.[ch]', if possible, from existing .[ch]
  68. flex create \`lex.yy.c', if possible, from existing .c
  69. help2man touch the output file
  70. lex create \`lex.yy.c', if possible, from existing .c
  71. makeinfo touch the output file
  72. yacc create \`y.tab.[ch]', if possible, from existing .[ch]
  73. Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and
  74. \`g' are ignored when checking the name.
  75. Send bug reports to <bug-automake@gnu.org>."
  76. exit $?
  77. ;;
  78. -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
  79. echo "missing $scriptversion (GNU Automake)"
  80. exit $?
  81. ;;
  82. -*)
  83. echo 1>&2 "$0: Unknown \`$1' option"
  84. echo 1>&2 "Try \`$0 --help' for more information"
  85. exit 1
  86. ;;
  87. esac
  88. # normalize program name to check for.
  89. program=`echo "$1" | sed '
  90. s/^gnu-//; t
  91. s/^gnu//; t
  92. s/^g//; t'`
  93. # Now exit if we have it, but it failed. Also exit now if we
  94. # don't have it and --version was passed (most likely to detect
  95. # the program). This is about non-GNU programs, so use $1 not
  96. # $program.
  97. case $1 in
  98. lex*|yacc*)
  99. # Not GNU programs, they don't have --version.
  100. ;;
  101. *)
  102. if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
  103. # We have it, but it failed.
  104. exit 1
  105. elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
  106. # Could not run --version or --help. This is probably someone
  107. # running `$TOOL --version' or `$TOOL --help' to check whether
  108. # $TOOL exists and not knowing $TOOL uses missing.
  109. exit 1
  110. fi
  111. ;;
  112. esac
  113. # If it does not exist, or fails to run (possibly an outdated version),
  114. # try to emulate it.
  115. case $program in
  116. aclocal*)
  117. echo 1>&2 "\
  118. WARNING: \`$1' is $msg. You should only need it if
  119. you modified \`acinclude.m4' or \`${configure_ac}'. You might want
  120. to install the \`Automake' and \`Perl' packages. Grab them from
  121. any GNU archive site."
  122. touch aclocal.m4
  123. ;;
  124. autoconf*)
  125. echo 1>&2 "\
  126. WARNING: \`$1' is $msg. You should only need it if
  127. you modified \`${configure_ac}'. You might want to install the
  128. \`Autoconf' and \`GNU m4' packages. Grab them from any GNU
  129. archive site."
  130. touch configure
  131. ;;
  132. autoheader*)
  133. echo 1>&2 "\
  134. WARNING: \`$1' is $msg. You should only need it if
  135. you modified \`acconfig.h' or \`${configure_ac}'. You might want
  136. to install the \`Autoconf' and \`GNU m4' packages. Grab them
  137. from any GNU archive site."
  138. files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
  139. test -z "$files" && files="config.h"
  140. touch_files=
  141. for f in $files; do
  142. case $f in
  143. *:*) touch_files="$touch_files "`echo "$f" |
  144. sed -e 's/^[^:]*://' -e 's/:.*//'`;;
  145. *) touch_files="$touch_files $f.in";;
  146. esac
  147. done
  148. touch $touch_files
  149. ;;
  150. automake*)
  151. echo 1>&2 "\
  152. WARNING: \`$1' is $msg. You should only need it if
  153. you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
  154. You might want to install the \`Automake' and \`Perl' packages.
  155. Grab them from any GNU archive site."
  156. find . -type f -name Makefile.am -print |
  157. sed 's/\.am$/.in/' |
  158. while read f; do touch "$f"; done
  159. ;;
  160. autom4te*)
  161. echo 1>&2 "\
  162. WARNING: \`$1' is needed, but is $msg.
  163. You might have modified some files without having the
  164. proper tools for further handling them.
  165. You can get \`$1' as part of \`Autoconf' from any GNU
  166. archive site."
  167. file=`echo "$*" | sed -n "$sed_output"`
  168. test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
  169. if test -f "$file"; then
  170. touch $file
  171. else
  172. test -z "$file" || exec >$file
  173. echo "#! /bin/sh"
  174. echo "# Created by GNU Automake missing as a replacement of"
  175. echo "# $ $@"
  176. echo "exit 0"
  177. chmod +x $file
  178. exit 1
  179. fi
  180. ;;
  181. bison*|yacc*)
  182. echo 1>&2 "\
  183. WARNING: \`$1' $msg. You should only need it if
  184. you modified a \`.y' file. You may need the \`Bison' package
  185. in order for those modifications to take effect. You can get
  186. \`Bison' from any GNU archive site."
  187. rm -f y.tab.c y.tab.h
  188. if test $# -ne 1; then
  189. eval LASTARG=\${$#}
  190. case $LASTARG in
  191. *.y)
  192. SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
  193. if test -f "$SRCFILE"; then
  194. cp "$SRCFILE" y.tab.c
  195. fi
  196. SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
  197. if test -f "$SRCFILE"; then
  198. cp "$SRCFILE" y.tab.h
  199. fi
  200. ;;
  201. esac
  202. fi
  203. if test ! -f y.tab.h; then
  204. echo >y.tab.h
  205. fi
  206. if test ! -f y.tab.c; then
  207. echo 'main() { return 0; }' >y.tab.c
  208. fi
  209. ;;
  210. lex*|flex*)
  211. echo 1>&2 "\
  212. WARNING: \`$1' is $msg. You should only need it if
  213. you modified a \`.l' file. You may need the \`Flex' package
  214. in order for those modifications to take effect. You can get
  215. \`Flex' from any GNU archive site."
  216. rm -f lex.yy.c
  217. if test $# -ne 1; then
  218. eval LASTARG=\${$#}
  219. case $LASTARG in
  220. *.l)
  221. SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
  222. if test -f "$SRCFILE"; then
  223. cp "$SRCFILE" lex.yy.c
  224. fi
  225. ;;
  226. esac
  227. fi
  228. if test ! -f lex.yy.c; then
  229. echo 'main() { return 0; }' >lex.yy.c
  230. fi
  231. ;;
  232. help2man*)
  233. echo 1>&2 "\
  234. WARNING: \`$1' is $msg. You should only need it if
  235. you modified a dependency of a manual page. You may need the
  236. \`Help2man' package in order for those modifications to take
  237. effect. You can get \`Help2man' from any GNU archive site."
  238. file=`echo "$*" | sed -n "$sed_output"`
  239. test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
  240. if test -f "$file"; then
  241. touch $file
  242. else
  243. test -z "$file" || exec >$file
  244. echo ".ab help2man is required to generate this page"
  245. exit $?
  246. fi
  247. ;;
  248. makeinfo*)
  249. echo 1>&2 "\
  250. WARNING: \`$1' is $msg. You should only need it if
  251. you modified a \`.texi' or \`.texinfo' file, or any other file
  252. indirectly affecting the aspect of the manual. The spurious
  253. call might also be the consequence of using a buggy \`make' (AIX,
  254. DU, IRIX). You might want to install the \`Texinfo' package or
  255. the \`GNU make' package. Grab either from any GNU archive site."
  256. # The file to touch is that specified with -o ...
  257. file=`echo "$*" | sed -n "$sed_output"`
  258. test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
  259. if test -z "$file"; then
  260. # ... or it is the one specified with @setfilename ...
  261. infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
  262. file=`sed -n '
  263. /^@setfilename/{
  264. s/.* \([^ ]*\) *$/\1/
  265. p
  266. q
  267. }' $infile`
  268. # ... or it is derived from the source name (dir/f.texi becomes f.info)
  269. test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
  270. fi
  271. # If the file does not exist, the user really needs makeinfo;
  272. # let's fail without touching anything.
  273. test -f $file || exit 1
  274. touch $file
  275. ;;
  276. *)
  277. echo 1>&2 "\
  278. WARNING: \`$1' is needed, and is $msg.
  279. You might have modified some files without having the
  280. proper tools for further handling them. Check the \`README' file,
  281. it often tells you about the needed prerequisites for installing
  282. this package. You may also peek at any GNU archive site, in case
  283. some other package would contain this missing \`$1' program."
  284. exit 1
  285. ;;
  286. esac
  287. exit 0
  288. # Local variables:
  289. # eval: (add-hook 'write-file-hooks 'time-stamp)
  290. # time-stamp-start: "scriptversion="
  291. # time-stamp-format: "%:y-%02m-%02d.%02H"
  292. # time-stamp-time-zone: "UTC"
  293. # time-stamp-end: "; # UTC"
  294. # End: