The R Project SVN R

Rev

Rev 15168 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15168 Rev 16212
Line 76... Line 76...
76
  tar          try tar, gnutar, gtar, then tar without non-portable flags
76
  tar          try tar, gnutar, gtar, then tar without non-portable flags
77
  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]"
77
  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]"
78
    ;;
78
    ;;
79
 
79
 
80
  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
80
  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
81
    echo "missing 0.3 - GNU automake"
81
    echo "missing 0.4 - GNU automake"
82
    ;;
82
    ;;
83
 
83
 
84
  -*)
84
  -*)
85
    echo 1>&2 "$0: Unknown \`$1' option"
85
    echo 1>&2 "$0: Unknown \`$1' option"
86
    echo 1>&2 "Try \`$0 --help' for more information"
86
    echo 1>&2 "Try \`$0 --help' for more information"
87
    exit 1
87
    exit 1
88
    ;;
88
    ;;
89
 
89
 
90
  aclocal)
90
  aclocal)
-
 
91
    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
-
 
92
       # We have it, but it failed.
-
 
93
       exit 1
-
 
94
    fi
-
 
95
 
91
    echo 1>&2 "\
96
    echo 1>&2 "\
92
WARNING: \`$1' is missing on your system.  You should only need it if
97
WARNING: \`$1' is missing on your system.  You should only need it if
93
         you modified \`acinclude.m4' or \`${configure_ac}'.  You might want
98
         you modified \`acinclude.m4' or \`${configure_ac}'.  You might want
94
         to install the \`Automake' and \`Perl' packages.  Grab them from
99
         to install the \`Automake' and \`Perl' packages.  Grab them from
95
         any GNU archive site."
100
         any GNU archive site."
96
    touch aclocal.m4
101
    touch aclocal.m4
97
    ;;
102
    ;;
98
 
103
 
99
  autoconf)
104
  autoconf)
-
 
105
    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
-
 
106
       # We have it, but it failed.
-
 
107
       exit 1
-
 
108
    fi
-
 
109
 
100
    echo 1>&2 "\
110
    echo 1>&2 "\
101
WARNING: \`$1' is missing on your system.  You should only need it if
111
WARNING: \`$1' is missing on your system.  You should only need it if
102
         you modified \`${configure_ac}'.  You might want to install the
112
         you modified \`${configure_ac}'.  You might want to install the
103
         \`Autoconf' and \`GNU m4' packages.  Grab them from any GNU
113
         \`Autoconf' and \`GNU m4' packages.  Grab them from any GNU
104
         archive site."
114
         archive site."
105
    touch configure
115
    touch configure
106
    ;;
116
    ;;
107
 
117
 
108
  autoheader)
118
  autoheader)
-
 
119
    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
-
 
120
       # We have it, but it failed.
-
 
121
       exit 1
-
 
122
    fi
-
 
123
 
109
    echo 1>&2 "\
124
    echo 1>&2 "\
110
WARNING: \`$1' is missing on your system.  You should only need it if
125
WARNING: \`$1' is missing on your system.  You should only need it if
111
         you modified \`acconfig.h' or \`${configure_ac}'.  You might want
126
         you modified \`acconfig.h' or \`${configure_ac}'.  You might want
112
         to install the \`Autoconf' and \`GNU m4' packages.  Grab them
127
         to install the \`Autoconf' and \`GNU m4' packages.  Grab them
113
         from any GNU archive site."
128
         from any GNU archive site."
Line 123... Line 138...
123
    done
138
    done
124
    touch $touch_files
139
    touch $touch_files
125
    ;;
140
    ;;
126
 
141
 
127
  automake)
142
  automake)
-
 
143
    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
-
 
144
       # We have it, but it failed.
-
 
145
       exit 1
-
 
146
    fi
-
 
147
 
128
    echo 1>&2 "\
148
    echo 1>&2 "\
129
WARNING: \`$1' is missing on your system.  You should only need it if
149
WARNING: \`$1' is missing on your system.  You should only need it if
130
         you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
150
         you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
131
         You might want to install the \`Automake' and \`Perl' packages.
151
         You might want to install the \`Automake' and \`Perl' packages.
132
         Grab them from any GNU archive site."
152
         Grab them from any GNU archive site."
133
    find . -type f -name Makefile.am -print |
153
    find . -type f -name Makefile.am -print |
134
	   sed 's/\.am$/.in/' |
154
	   sed 's/\.am$/.in/' |
135
	   while read f; do touch "$f"; done
155
	   while read f; do touch "$f"; done
136
    ;;
156
    ;;
137
 
157
 
-
 
158
  autom4te)
-
 
159
    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
-
 
160
       # We have it, but it failed.
-
 
161
       exit 1
-
 
162
    fi
-
 
163
 
-
 
164
    echo 1>&2 "\
-
 
165
WARNING: \`$1' is needed, and you do not seem to have it handy on your
-
 
166
         system.  You might have modified some files without having the
-
 
167
         proper tools for further handling them.
-
 
168
         You can get \`$1Help2man' as part of \`Autoconf' from any GNU
-
 
169
         archive site."
-
 
170
 
-
 
171
    file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
-
 
172
    test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
-
 
173
    if test -f "$file"; then
-
 
174
	touch $file
-
 
175
    else
-
 
176
	test -z "$file" || exec >$file
-
 
177
	echo "#! /bin/sh"
-
 
178
	echo "# Created by GNU Automake missing as a replacement of"
-
 
179
	echo "#  $ $@"
-
 
180
	echo "exit 0"
-
 
181
	chmod +x $file
-
 
182
	exit 1
-
 
183
    fi
-
 
184
    ;;
-
 
185
 
138
  bison|yacc)
186
  bison|yacc)
139
    echo 1>&2 "\
187
    echo 1>&2 "\
140
WARNING: \`$1' is missing on your system.  You should only need it if
188
WARNING: \`$1' is missing on your system.  You should only need it if
141
         you modified a \`.y' file.  You may need the \`Bison' package
189
         you modified a \`.y' file.  You may need the \`Bison' package
142
         in order for those modifications to take effect.  You can get
190
         in order for those modifications to take effect.  You can get
Line 187... Line 235...
187
	echo 'main() { return 0; }' >lex.yy.c
235
	echo 'main() { return 0; }' >lex.yy.c
188
    fi
236
    fi
189
    ;;
237
    ;;
190
 
238
 
191
  help2man)
239
  help2man)
-
 
240
    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
-
 
241
       # We have it, but it failed.
-
 
242
       exit 1
-
 
243
    fi
-
 
244
 
192
    echo 1>&2 "\
245
    echo 1>&2 "\
193
WARNING: \`$1' is missing on your system.  You should only need it if
246
WARNING: \`$1' is missing on your system.  You should only need it if
194
	 you modified a dependency of a manual page.  You may need the
247
	 you modified a dependency of a manual page.  You may need the
195
	 \`Help2man' package in order for those modifications to take
248
	 \`Help2man' package in order for those modifications to take
196
	 effect.  You can get \`Help2man' from any GNU archive site."
249
	 effect.  You can get \`Help2man' from any GNU archive site."
Line 207... Line 260...
207
	exit 1
260
	exit 1
208
    fi
261
    fi
209
    ;;
262
    ;;
210
 
263
 
211
  makeinfo)
264
  makeinfo)
212
    if test -z "$run" && (makeinfo --version > /dev/null 2>&1); then
265
    if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then
213
       # We have makeinfo, but it failed.
266
       # We have makeinfo, but it failed.
214
       exit 1
267
       exit 1
215
    fi
268
    fi
216
 
269
 
217
    echo 1>&2 "\
270
    echo 1>&2 "\