annotate src/fftw-3.3.3/missing @ 107:71c914cf6201

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