annotate src/fftw-3.3.3/missing @ 83:ae30d91d2ffe

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