~ubuntu-branches/ubuntu/karmic/gnupg2/karmic-updates

« back to all changes in this revision

Viewing changes to scripts/compile

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-10-04 10:25:53 UTC
  • mfrom: (5.1.15 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081004102553-fv62pp8dsitxli47
Tags: 2.0.9-3.1
* Non-maintainer upload.
* agent/gpg-agent.c: Deinit the threading library before exec'ing
  the command to run in --daemon mode. And because that still doesn't
  restore the sigprocmask, do that manually. Closes: #499569

Show diffs side-by-side

added added

removed removed

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