annotate src/libogg-1.3.0/compile @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 98c1576536ae
children
rev   line source
cannam@86 1 #! /bin/sh
cannam@86 2 # Wrapper for compilers which do not understand `-c -o'.
cannam@86 3
cannam@86 4 scriptversion=2009-10-06.20; # UTC
cannam@86 5
cannam@86 6 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 Free Software
cannam@86 7 # Foundation, Inc.
cannam@86 8 # Written by Tom Tromey <tromey@cygnus.com>.
cannam@86 9 #
cannam@86 10 # This program is free software; you can redistribute it and/or modify
cannam@86 11 # it under the terms of the GNU General Public License as published by
cannam@86 12 # the Free Software Foundation; either version 2, or (at your option)
cannam@86 13 # any later version.
cannam@86 14 #
cannam@86 15 # This program is distributed in the hope that it will be useful,
cannam@86 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@86 17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cannam@86 18 # GNU General Public License for more details.
cannam@86 19 #
cannam@86 20 # You should have received a copy of the GNU General Public License
cannam@86 21 # along with this program. If not, see <http://www.gnu.org/licenses/>.
cannam@86 22
cannam@86 23 # As a special exception to the GNU General Public License, if you
cannam@86 24 # distribute this file as part of a program that contains a
cannam@86 25 # configuration script generated by Autoconf, you may include it under
cannam@86 26 # the same distribution terms that you use for the rest of that program.
cannam@86 27
cannam@86 28 # This file is maintained in Automake, please report
cannam@86 29 # bugs to <bug-automake@gnu.org> or send patches to
cannam@86 30 # <automake-patches@gnu.org>.
cannam@86 31
cannam@86 32 case $1 in
cannam@86 33 '')
cannam@86 34 echo "$0: No command. Try \`$0 --help' for more information." 1>&2
cannam@86 35 exit 1;
cannam@86 36 ;;
cannam@86 37 -h | --h*)
cannam@86 38 cat <<\EOF
cannam@86 39 Usage: compile [--help] [--version] PROGRAM [ARGS]
cannam@86 40
cannam@86 41 Wrapper for compilers which do not understand `-c -o'.
cannam@86 42 Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
cannam@86 43 arguments, and rename the output as expected.
cannam@86 44
cannam@86 45 If you are trying to build a whole package this is not the
cannam@86 46 right script to run: please start by reading the file `INSTALL'.
cannam@86 47
cannam@86 48 Report bugs to <bug-automake@gnu.org>.
cannam@86 49 EOF
cannam@86 50 exit $?
cannam@86 51 ;;
cannam@86 52 -v | --v*)
cannam@86 53 echo "compile $scriptversion"
cannam@86 54 exit $?
cannam@86 55 ;;
cannam@86 56 esac
cannam@86 57
cannam@86 58 ofile=
cannam@86 59 cfile=
cannam@86 60 eat=
cannam@86 61
cannam@86 62 for arg
cannam@86 63 do
cannam@86 64 if test -n "$eat"; then
cannam@86 65 eat=
cannam@86 66 else
cannam@86 67 case $1 in
cannam@86 68 -o)
cannam@86 69 # configure might choose to run compile as `compile cc -o foo foo.c'.
cannam@86 70 # So we strip `-o arg' only if arg is an object.
cannam@86 71 eat=1
cannam@86 72 case $2 in
cannam@86 73 *.o | *.obj)
cannam@86 74 ofile=$2
cannam@86 75 ;;
cannam@86 76 *)
cannam@86 77 set x "$@" -o "$2"
cannam@86 78 shift
cannam@86 79 ;;
cannam@86 80 esac
cannam@86 81 ;;
cannam@86 82 *.c)
cannam@86 83 cfile=$1
cannam@86 84 set x "$@" "$1"
cannam@86 85 shift
cannam@86 86 ;;
cannam@86 87 *)
cannam@86 88 set x "$@" "$1"
cannam@86 89 shift
cannam@86 90 ;;
cannam@86 91 esac
cannam@86 92 fi
cannam@86 93 shift
cannam@86 94 done
cannam@86 95
cannam@86 96 if test -z "$ofile" || test -z "$cfile"; then
cannam@86 97 # If no `-o' option was seen then we might have been invoked from a
cannam@86 98 # pattern rule where we don't need one. That is ok -- this is a
cannam@86 99 # normal compilation that the losing compiler can handle. If no
cannam@86 100 # `.c' file was seen then we are probably linking. That is also
cannam@86 101 # ok.
cannam@86 102 exec "$@"
cannam@86 103 fi
cannam@86 104
cannam@86 105 # Name of file we expect compiler to create.
cannam@86 106 cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
cannam@86 107
cannam@86 108 # Create the lock directory.
cannam@86 109 # Note: use `[/\\:.-]' here to ensure that we don't use the same name
cannam@86 110 # that we are using for the .o file. Also, base the name on the expected
cannam@86 111 # object file name, since that is what matters with a parallel build.
cannam@86 112 lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
cannam@86 113 while true; do
cannam@86 114 if mkdir "$lockdir" >/dev/null 2>&1; then
cannam@86 115 break
cannam@86 116 fi
cannam@86 117 sleep 1
cannam@86 118 done
cannam@86 119 # FIXME: race condition here if user kills between mkdir and trap.
cannam@86 120 trap "rmdir '$lockdir'; exit 1" 1 2 15
cannam@86 121
cannam@86 122 # Run the compile.
cannam@86 123 "$@"
cannam@86 124 ret=$?
cannam@86 125
cannam@86 126 if test -f "$cofile"; then
cannam@86 127 test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
cannam@86 128 elif test -f "${cofile}bj"; then
cannam@86 129 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
cannam@86 130 fi
cannam@86 131
cannam@86 132 rmdir "$lockdir"
cannam@86 133 exit $ret
cannam@86 134
cannam@86 135 # Local Variables:
cannam@86 136 # mode: shell-script
cannam@86 137 # sh-indentation: 2
cannam@86 138 # eval: (add-hook 'write-file-hooks 'time-stamp)
cannam@86 139 # time-stamp-start: "scriptversion="
cannam@86 140 # time-stamp-format: "%:y-%02m-%02d.%02H"
cannam@86 141 # time-stamp-time-zone: "UTC"
cannam@86 142 # time-stamp-end: "; # UTC"
cannam@86 143 # End: