source: rtems/tools/cpu/generic/configure @ 8cdb582

4.104.114.84.95
Last change on this file since 8cdb582 was 8cdb582, checked in by Joel Sherrill <joel.sherrill@…>, on 04/12/99 at 15:41:33

Patch from Ralf Corsepius <corsepiu@…>:

This patch addresses a few minor issues and contains a few (minor)
preparations for automake.

  • configure.in: Fix for handing c/src/tests subdirectory handling (FIX)
  • aclocal/rtems-top.m4: + Add TARGET_SUBDIR and --with-target-subdir (preparation of future

enhancements for cross-compiling)

+ Activate RTEMS_ROOT handling (automake preparation)

  • automake/*.am: replace comments "#" with "##" so that comments won't get included into Makefile.in's anymore
  • c/update-tools/* automake support (NEW)
  • ./autogen update/enhancement (cf. ./autogen for details)

After applying this patch please run:

./autogen
cvs add c/update-tools/configure.in
cvs add c/update-tools/Makefile.am
cvs add c/update-tools/aclocal.m4

  • Property mode set to 100644
File size: 41.6 KB
Line 
1#! /bin/sh
2
3# Guess values for system-dependent variables and create Makefiles.
4# Generated automatically using autoconf version 2.13
5# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
6#
7# This configure script is free software; the Free Software Foundation
8# gives unlimited permission to copy, distribute and modify it.
9
10# Defaults:
11ac_help=
12ac_default_prefix=/usr/local
13# Any additions from configure.in:
14ac_help="$ac_help
15  --with-target-subdir=DIR"
16
17# Initialize some variables set by options.
18# The variables have the same names as the options, with
19# dashes changed to underlines.
20build=NONE
21cache_file=./config.cache
22exec_prefix=NONE
23host=NONE
24no_create=
25nonopt=NONE
26no_recursion=
27prefix=NONE
28program_prefix=NONE
29program_suffix=NONE
30program_transform_name=s,x,x,
31silent=
32site=
33srcdir=
34target=NONE
35verbose=
36x_includes=NONE
37x_libraries=NONE
38bindir='${exec_prefix}/bin'
39sbindir='${exec_prefix}/sbin'
40libexecdir='${exec_prefix}/libexec'
41datadir='${prefix}/share'
42sysconfdir='${prefix}/etc'
43sharedstatedir='${prefix}/com'
44localstatedir='${prefix}/var'
45libdir='${exec_prefix}/lib'
46includedir='${prefix}/include'
47oldincludedir='/usr/include'
48infodir='${prefix}/info'
49mandir='${prefix}/man'
50
51# Initialize some other variables.
52subdirs=
53MFLAGS= MAKEFLAGS=
54SHELL=${CONFIG_SHELL-/bin/sh}
55# Maximum number of lines to put in a shell here document.
56ac_max_here_lines=12
57
58ac_prev=
59for ac_option
60do
61
62  # If the previous option needs an argument, assign it.
63  if test -n "$ac_prev"; then
64    eval "$ac_prev=\$ac_option"
65    ac_prev=
66    continue
67  fi
68
69  case "$ac_option" in
70  -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
71  *) ac_optarg= ;;
72  esac
73
74  # Accept the important Cygnus configure options, so we can diagnose typos.
75
76  case "$ac_option" in
77
78  -bindir | --bindir | --bindi | --bind | --bin | --bi)
79    ac_prev=bindir ;;
80  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
81    bindir="$ac_optarg" ;;
82
83  -build | --build | --buil | --bui | --bu)
84    ac_prev=build ;;
85  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
86    build="$ac_optarg" ;;
87
88  -cache-file | --cache-file | --cache-fil | --cache-fi \
89  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
90    ac_prev=cache_file ;;
91  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
92  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
93    cache_file="$ac_optarg" ;;
94
95  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
96    ac_prev=datadir ;;
97  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
98  | --da=*)
99    datadir="$ac_optarg" ;;
100
101  -disable-* | --disable-*)
102    ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
103    # Reject names that are not valid shell variable names.
104    if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
105      { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
106    fi
107    ac_feature=`echo $ac_feature| sed 's/-/_/g'`
108    eval "enable_${ac_feature}=no" ;;
109
110  -enable-* | --enable-*)
111    ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
112    # Reject names that are not valid shell variable names.
113    if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
114      { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
115    fi
116    ac_feature=`echo $ac_feature| sed 's/-/_/g'`
117    case "$ac_option" in
118      *=*) ;;
119      *) ac_optarg=yes ;;
120    esac
121    eval "enable_${ac_feature}='$ac_optarg'" ;;
122
123  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
124  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
125  | --exec | --exe | --ex)
126    ac_prev=exec_prefix ;;
127  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
128  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
129  | --exec=* | --exe=* | --ex=*)
130    exec_prefix="$ac_optarg" ;;
131
132  -gas | --gas | --ga | --g)
133    # Obsolete; use --with-gas.
134    with_gas=yes ;;
135
136  -help | --help | --hel | --he)
137    # Omit some internal or obsolete options to make the list less imposing.
138    # This message is too long to be a string in the A/UX 3.1 sh.
139    cat << EOF
140Usage: configure [options] [host]
141Options: [defaults in brackets after descriptions]
142Configuration:
143  --cache-file=FILE       cache test results in FILE
144  --help                  print this message
145  --no-create             do not create output files
146  --quiet, --silent       do not print \`checking...' messages
147  --version               print the version of autoconf that created configure
148Directory and file names:
149  --prefix=PREFIX         install architecture-independent files in PREFIX
150                          [$ac_default_prefix]
151  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
152                          [same as prefix]
153  --bindir=DIR            user executables in DIR [EPREFIX/bin]
154  --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
155  --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
156  --datadir=DIR           read-only architecture-independent data in DIR
157                          [PREFIX/share]
158  --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
159  --sharedstatedir=DIR    modifiable architecture-independent data in DIR
160                          [PREFIX/com]
161  --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
162  --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
163  --includedir=DIR        C header files in DIR [PREFIX/include]
164  --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
165  --infodir=DIR           info documentation in DIR [PREFIX/info]
166  --mandir=DIR            man documentation in DIR [PREFIX/man]
167  --srcdir=DIR            find the sources in DIR [configure dir or ..]
168  --program-prefix=PREFIX prepend PREFIX to installed program names
169  --program-suffix=SUFFIX append SUFFIX to installed program names
170  --program-transform-name=PROGRAM
171                          run sed PROGRAM on installed program names
172EOF
173    cat << EOF
174Host type:
175  --build=BUILD           configure for building on BUILD [BUILD=HOST]
176  --host=HOST             configure for HOST [guessed]
177  --target=TARGET         configure for TARGET [TARGET=HOST]
178Features and packages:
179  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
180  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
181  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
182  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
183  --x-includes=DIR        X include files are in DIR
184  --x-libraries=DIR       X library files are in DIR
185EOF
186    if test -n "$ac_help"; then
187      echo "--enable and --with options recognized:$ac_help"
188    fi
189    exit 0 ;;
190
191  -host | --host | --hos | --ho)
192    ac_prev=host ;;
193  -host=* | --host=* | --hos=* | --ho=*)
194    host="$ac_optarg" ;;
195
196  -includedir | --includedir | --includedi | --included | --include \
197  | --includ | --inclu | --incl | --inc)
198    ac_prev=includedir ;;
199  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
200  | --includ=* | --inclu=* | --incl=* | --inc=*)
201    includedir="$ac_optarg" ;;
202
203  -infodir | --infodir | --infodi | --infod | --info | --inf)
204    ac_prev=infodir ;;
205  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
206    infodir="$ac_optarg" ;;
207
208  -libdir | --libdir | --libdi | --libd)
209    ac_prev=libdir ;;
210  -libdir=* | --libdir=* | --libdi=* | --libd=*)
211    libdir="$ac_optarg" ;;
212
213  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
214  | --libexe | --libex | --libe)
215    ac_prev=libexecdir ;;
216  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
217  | --libexe=* | --libex=* | --libe=*)
218    libexecdir="$ac_optarg" ;;
219
220  -localstatedir | --localstatedir | --localstatedi | --localstated \
221  | --localstate | --localstat | --localsta | --localst \
222  | --locals | --local | --loca | --loc | --lo)
223    ac_prev=localstatedir ;;
224  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
225  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
226  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
227    localstatedir="$ac_optarg" ;;
228
229  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
230    ac_prev=mandir ;;
231  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
232    mandir="$ac_optarg" ;;
233
234  -nfp | --nfp | --nf)
235    # Obsolete; use --without-fp.
236    with_fp=no ;;
237
238  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
239  | --no-cr | --no-c)
240    no_create=yes ;;
241
242  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
243  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
244    no_recursion=yes ;;
245
246  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
247  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
248  | --oldin | --oldi | --old | --ol | --o)
249    ac_prev=oldincludedir ;;
250  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
251  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
252  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
253    oldincludedir="$ac_optarg" ;;
254
255  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
256    ac_prev=prefix ;;
257  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
258    prefix="$ac_optarg" ;;
259
260  -program-prefix | --program-prefix | --program-prefi | --program-pref \
261  | --program-pre | --program-pr | --program-p)
262    ac_prev=program_prefix ;;
263  -program-prefix=* | --program-prefix=* | --program-prefi=* \
264  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
265    program_prefix="$ac_optarg" ;;
266
267  -program-suffix | --program-suffix | --program-suffi | --program-suff \
268  | --program-suf | --program-su | --program-s)
269    ac_prev=program_suffix ;;
270  -program-suffix=* | --program-suffix=* | --program-suffi=* \
271  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
272    program_suffix="$ac_optarg" ;;
273
274  -program-transform-name | --program-transform-name \
275  | --program-transform-nam | --program-transform-na \
276  | --program-transform-n | --program-transform- \
277  | --program-transform | --program-transfor \
278  | --program-transfo | --program-transf \
279  | --program-trans | --program-tran \
280  | --progr-tra | --program-tr | --program-t)
281    ac_prev=program_transform_name ;;
282  -program-transform-name=* | --program-transform-name=* \
283  | --program-transform-nam=* | --program-transform-na=* \
284  | --program-transform-n=* | --program-transform-=* \
285  | --program-transform=* | --program-transfor=* \
286  | --program-transfo=* | --program-transf=* \
287  | --program-trans=* | --program-tran=* \
288  | --progr-tra=* | --program-tr=* | --program-t=*)
289    program_transform_name="$ac_optarg" ;;
290
291  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
292  | -silent | --silent | --silen | --sile | --sil)
293    silent=yes ;;
294
295  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
296    ac_prev=sbindir ;;
297  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
298  | --sbi=* | --sb=*)
299    sbindir="$ac_optarg" ;;
300
301  -sharedstatedir | --sharedstatedir | --sharedstatedi \
302  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
303  | --sharedst | --shareds | --shared | --share | --shar \
304  | --sha | --sh)
305    ac_prev=sharedstatedir ;;
306  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
307  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
308  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
309  | --sha=* | --sh=*)
310    sharedstatedir="$ac_optarg" ;;
311
312  -site | --site | --sit)
313    ac_prev=site ;;
314  -site=* | --site=* | --sit=*)
315    site="$ac_optarg" ;;
316
317  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
318    ac_prev=srcdir ;;
319  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
320    srcdir="$ac_optarg" ;;
321
322  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
323  | --syscon | --sysco | --sysc | --sys | --sy)
324    ac_prev=sysconfdir ;;
325  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
326  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
327    sysconfdir="$ac_optarg" ;;
328
329  -target | --target | --targe | --targ | --tar | --ta | --t)
330    ac_prev=target ;;
331  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
332    target="$ac_optarg" ;;
333
334  -v | -verbose | --verbose | --verbos | --verbo | --verb)
335    verbose=yes ;;
336
337  -version | --version | --versio | --versi | --vers)
338    echo "configure generated by autoconf version 2.13"
339    exit 0 ;;
340
341  -with-* | --with-*)
342    ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
343    # Reject names that are not valid shell variable names.
344    if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
345      { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
346    fi
347    ac_package=`echo $ac_package| sed 's/-/_/g'`
348    case "$ac_option" in
349      *=*) ;;
350      *) ac_optarg=yes ;;
351    esac
352    eval "with_${ac_package}='$ac_optarg'" ;;
353
354  -without-* | --without-*)
355    ac_package=`echo $ac_option|sed -e 's/-*without-//'`
356    # Reject names that are not valid shell variable names.
357    if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
358      { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
359    fi
360    ac_package=`echo $ac_package| sed 's/-/_/g'`
361    eval "with_${ac_package}=no" ;;
362
363  --x)
364    # Obsolete; use --with-x.
365    with_x=yes ;;
366
367  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
368  | --x-incl | --x-inc | --x-in | --x-i)
369    ac_prev=x_includes ;;
370  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
371  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
372    x_includes="$ac_optarg" ;;
373
374  -x-libraries | --x-libraries | --x-librarie | --x-librari \
375  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
376    ac_prev=x_libraries ;;
377  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
378  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
379    x_libraries="$ac_optarg" ;;
380
381  -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
382    ;;
383
384  *)
385    if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
386      echo "configure: warning: $ac_option: invalid host type" 1>&2
387    fi
388    if test "x$nonopt" != xNONE; then
389      { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
390    fi
391    nonopt="$ac_option"
392    ;;
393
394  esac
395done
396
397if test -n "$ac_prev"; then
398  { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
399fi
400
401trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
402
403# File descriptor usage:
404# 0 standard input
405# 1 file creation
406# 2 errors and warnings
407# 3 some systems may open it to /dev/tty
408# 4 used on the Kubota Titan
409# 6 checking for... messages and results
410# 5 compiler messages saved in config.log
411if test "$silent" = yes; then
412  exec 6>/dev/null
413else
414  exec 6>&1
415fi
416exec 5>./config.log
417
418echo "\
419This file contains any messages produced by compilers while
420running configure, to aid debugging if configure makes a mistake.
421" 1>&5
422
423# Strip out --no-create and --no-recursion so they do not pile up.
424# Also quote any args containing shell metacharacters.
425ac_configure_args=
426for ac_arg
427do
428  case "$ac_arg" in
429  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
430  | --no-cr | --no-c) ;;
431  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
432  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
433  *" "*|*"      "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
434  ac_configure_args="$ac_configure_args '$ac_arg'" ;;
435  *) ac_configure_args="$ac_configure_args $ac_arg" ;;
436  esac
437done
438
439# NLS nuisances.
440# Only set these to C if already set.  These must not be set unconditionally
441# because not all systems understand e.g. LANG=C (notably SCO).
442# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
443# Non-C LC_CTYPE values break the ctype check.
444if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
445if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
446if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
447if test "${LC_CTYPE+set}"    = set; then LC_CTYPE=C;    export LC_CTYPE;    fi
448
449# confdefs.h avoids OS command line length limits that DEFS can exceed.
450rm -rf conftest* confdefs.h
451# AIX cpp loses on an empty file, so make sure it contains at least a newline.
452echo > confdefs.h
453
454# A filename unique to this package, relative to the directory that
455# configure is in, which we can look for to find out if srcdir is correct.
456ac_unique_file=size_rtems.in
457
458# Find the source files, if location was not specified.
459if test -z "$srcdir"; then
460  ac_srcdir_defaulted=yes
461  # Try the directory containing this script, then its parent.
462  ac_prog=$0
463  ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
464  test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
465  srcdir=$ac_confdir
466  if test ! -r $srcdir/$ac_unique_file; then
467    srcdir=..
468  fi
469else
470  ac_srcdir_defaulted=no
471fi
472if test ! -r $srcdir/$ac_unique_file; then
473  if test "$ac_srcdir_defaulted" = yes; then
474    { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
475  else
476    { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
477  fi
478fi
479srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
480
481# Prefer explicitly selected file to automatically selected ones.
482if test -z "$CONFIG_SITE"; then
483  if test "x$prefix" != xNONE; then
484    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
485  else
486    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
487  fi
488fi
489for ac_site_file in $CONFIG_SITE; do
490  if test -r "$ac_site_file"; then
491    echo "loading site script $ac_site_file"
492    . "$ac_site_file"
493  fi
494done
495
496if test -r "$cache_file"; then
497  echo "loading cache $cache_file"
498  . $cache_file
499else
500  echo "creating cache $cache_file"
501  > $cache_file
502fi
503
504ac_ext=c
505# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
506ac_cpp='$CPP $CPPFLAGS'
507ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
508ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
509cross_compiling=$ac_cv_prog_cc_cross
510
511ac_exeext=
512ac_objext=o
513if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
514  # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
515  if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
516    ac_n= ac_c='
517' ac_t='        '
518  else
519    ac_n=-n ac_c= ac_t=
520  fi
521else
522  ac_n= ac_c='\c' ac_t=
523fi
524
525
526ac_aux_dir=
527for ac_dir in ../../../../../.. $srcdir/../../../../../..; do
528  if test -f $ac_dir/install-sh; then
529    ac_aux_dir=$ac_dir
530    ac_install_sh="$ac_aux_dir/install-sh -c"
531    break
532  elif test -f $ac_dir/install.sh; then
533    ac_aux_dir=$ac_dir
534    ac_install_sh="$ac_aux_dir/install.sh -c"
535    break
536  fi
537done
538if test -z "$ac_aux_dir"; then
539  { echo "configure: error: can not find install-sh or install.sh in ../../../../../.. $srcdir/../../../../../.." 1>&2; exit 1; }
540fi
541ac_config_guess=$ac_aux_dir/config.guess
542ac_config_sub=$ac_aux_dir/config.sub
543ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
544
545
546# Check whether --with-target-subdir or --without-target-subdir was given.
547if test "${with_target_subdir+set}" = set; then
548  withval="$with_target_subdir"
549  TARGET_SUBDIR="$withval"
550else
551  TARGET_SUBDIR="."
552fi
553
554
555RTEMS_TOPdir="../../../../../..";
556
557
558PROJECT_ROOT=`pwd`/$RTEMS_TOPdir;
559test "$TARGET_SUBDIR" = "." || PROJECT_ROOT="$PROJECT_ROOT/.."
560
561
562echo $ac_n "checking for RTEMS Version""... $ac_c" 1>&6
563echo "configure:564: checking for RTEMS Version" >&5
564if test -r "${srcdir}/${RTEMS_TOPdir}/VERSION"; then
565RTEMS_VERSION=`grep Version ${srcdir}/${RTEMS_TOPdir}/VERSION | \
566sed -e 's%RTEMS[        ]*Version[      ]*\(.*\)[       ]*%\1%g'`
567else
568{ echo "configure: error: Unable to find ${RTEMS_TOPdir}/VERSION" 1>&2; exit 1; }
569fi
570if test -z "$RTEMS_VERSION"; then
571{ echo "configure: error: Unable to determine version" 1>&2; exit 1; }
572fi
573echo "$ac_t""$RTEMS_VERSION" 1>&6
574
575RTEMS_ROOT='$(top_srcdir)'/$RTEMS_TOPdir;
576
577
578
579# Do some error checking and defaulting for the host and target type.
580# The inputs are:
581#    configure --host=HOST --target=TARGET --build=BUILD NONOPT
582#
583# The rules are:
584# 1. You are not allowed to specify --host, --target, and nonopt at the
585#    same time.
586# 2. Host defaults to nonopt.
587# 3. If nonopt is not specified, then host defaults to the current host,
588#    as determined by config.guess.
589# 4. Target and build default to nonopt.
590# 5. If nonopt is not specified, then target and build default to host.
591
592# The aliases save the names the user supplied, while $host etc.
593# will get canonicalized.
594case $host---$target---$nonopt in
595NONE---*---* | *---NONE---* | *---*---NONE) ;;
596*) { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } ;;
597esac
598
599
600# Make sure we can run config.sub.
601if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then :
602else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
603fi
604
605echo $ac_n "checking host system type""... $ac_c" 1>&6
606echo "configure:607: checking host system type" >&5
607
608host_alias=$host
609case "$host_alias" in
610NONE)
611  case $nonopt in
612  NONE)
613    if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then :
614    else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; }
615    fi ;;
616  *) host_alias=$nonopt ;;
617  esac ;;
618esac
619
620host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias`
621host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
622host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
623host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
624echo "$ac_t""$host" 1>&6
625
626echo $ac_n "checking target system type""... $ac_c" 1>&6
627echo "configure:628: checking target system type" >&5
628
629target_alias=$target
630case "$target_alias" in
631NONE)
632  case $nonopt in
633  NONE) target_alias=$host_alias ;;
634  *) target_alias=$nonopt ;;
635  esac ;;
636esac
637
638target=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $target_alias`
639target_cpu=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
640target_vendor=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
641target_os=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
642echo "$ac_t""$target" 1>&6
643
644echo $ac_n "checking build system type""... $ac_c" 1>&6
645echo "configure:646: checking build system type" >&5
646
647build_alias=$build
648case "$build_alias" in
649NONE)
650  case $nonopt in
651  NONE) build_alias=$host_alias ;;
652  *) build_alias=$nonopt ;;
653  esac ;;
654esac
655
656build=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $build_alias`
657build_cpu=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
658build_vendor=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
659build_os=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
660echo "$ac_t""$build" 1>&6
661
662test "$host_alias" != "$target_alias" &&
663  test "$program_prefix$program_suffix$program_transform_name" = \
664    NONENONEs,x,x, &&
665  program_prefix=${target_alias}-
666
667
668
669echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6
670echo "configure:671: checking rtems target cpu" >&5
671case "${target}" in
672  # hpux unix port should go here
673  i[3456]86-go32-rtems*)
674        target_cpu=i386
675        ;;
676  i[3456]86-pc-linux*)          # unix "simulator" port
677        target_cpu=unix
678        ;;
679  i[3456]86-*freebsd2*)         # unix "simulator" port
680        target_cpu=unix
681        ;;
682  no_cpu-*rtems*)
683        target_cpu=no_cpu
684        ;;
685  ppc*-*rtems*)
686        target_cpu=powerpc
687        ;;
688  sparc-sun-solaris*)           # unix "simulator" port
689        target_cpu=unix
690        ;;
691  *)
692        target_cpu=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
693        ;;
694esac
695echo "$ac_t""$target_cpu" 1>&6
696
697
698# Find a good install program.  We prefer a C program (faster),
699# so one script is as good as another.  But avoid the broken or
700# incompatible versions:
701# SysV /etc/install, /usr/sbin/install
702# SunOS /usr/etc/install
703# IRIX /sbin/install
704# AIX /bin/install
705# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
706# AFS /usr/afsws/bin/install, which mishandles nonexistent args
707# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
708# ./install, which can be erroneously created by make from ./install.sh.
709echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
710echo "configure:711: checking for a BSD compatible install" >&5
711if test -z "$INSTALL"; then
712if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
713  echo $ac_n "(cached) $ac_c" 1>&6
714else
715    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
716  for ac_dir in $PATH; do
717    # Account for people who put trailing slashes in PATH elements.
718    case "$ac_dir/" in
719    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
720    *)
721      # OSF1 and SCO ODT 3.0 have their own names for install.
722      # Don't use installbsd from OSF since it installs stuff as root
723      # by default.
724      for ac_prog in ginstall scoinst install; do
725        if test -f $ac_dir/$ac_prog; then
726          if test $ac_prog = install &&
727            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
728            # AIX install.  It has an incompatible calling convention.
729            :
730          else
731            ac_cv_path_install="$ac_dir/$ac_prog -c"
732            break 2
733          fi
734        fi
735      done
736      ;;
737    esac
738  done
739  IFS="$ac_save_IFS"
740
741fi
742  if test "${ac_cv_path_install+set}" = set; then
743    INSTALL="$ac_cv_path_install"
744  else
745    # As a last resort, use the slow shell script.  We don't cache a
746    # path for INSTALL within a source directory, because that will
747    # break other packages using the cache if that directory is
748    # removed, or if the path is relative.
749    INSTALL="$ac_install_sh"
750  fi
751fi
752echo "$ac_t""$INSTALL" 1>&6
753
754# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
755# It thinks the first close brace ends the variable substitution.
756test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
757
758test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
759
760test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
761
762echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
763echo "configure:764: checking whether build environment is sane" >&5
764# Just in case
765sleep 1
766echo timestamp > conftestfile
767# Do `set' in a subshell so we don't clobber the current shell's
768# arguments.  Must try -L first in case configure is actually a
769# symlink; some systems play weird games with the mod time of symlinks
770# (eg FreeBSD returns the mod time of the symlink's containing
771# directory).
772if (
773   set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
774   if test "$*" = "X"; then
775      # -L didn't work.
776      set X `ls -t $srcdir/configure conftestfile`
777   fi
778   if test "$*" != "X $srcdir/configure conftestfile" \
779      && test "$*" != "X conftestfile $srcdir/configure"; then
780
781      # If neither matched, then we have a broken ls.  This can happen
782      # if, for instance, CONFIG_SHELL is bash and it inherits a
783      # broken ls alias from the environment.  This has actually
784      # happened.  Such a system could not be considered "sane".
785      { echo "configure: error: ls -t appears to fail.  Make sure there is not a broken
786alias in your environment" 1>&2; exit 1; }
787   fi
788
789   test "$2" = conftestfile
790   )
791then
792   # Ok.
793   :
794else
795   { echo "configure: error: newly created file is older than distributed files!
796Check your system clock" 1>&2; exit 1; }
797fi
798rm -f conftest*
799echo "$ac_t""yes" 1>&6
800if test "$program_transform_name" = s,x,x,; then
801  program_transform_name=
802else
803  # Double any \ or $.  echo might interpret backslashes.
804  cat <<\EOF_SED > conftestsed
805s,\\,\\\\,g; s,\$,$$,g
806EOF_SED
807  program_transform_name="`echo $program_transform_name|sed -f conftestsed`"
808  rm -f conftestsed
809fi
810test "$program_prefix" != NONE &&
811  program_transform_name="s,^,${program_prefix},; $program_transform_name"
812# Use a double $ so make ignores it.
813test "$program_suffix" != NONE &&
814  program_transform_name="s,\$\$,${program_suffix},; $program_transform_name"
815
816# sed with no file args requires a program.
817test "$program_transform_name" = "" && program_transform_name="s,x,x,"
818
819echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
820echo "configure:821: checking whether ${MAKE-make} sets \${MAKE}" >&5
821set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
822if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
823  echo $ac_n "(cached) $ac_c" 1>&6
824else
825  cat > conftestmake <<\EOF
826all:
827        @echo 'ac_maketemp="${MAKE}"'
828EOF
829# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
830eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
831if test -n "$ac_maketemp"; then
832  eval ac_cv_prog_make_${ac_make}_set=yes
833else
834  eval ac_cv_prog_make_${ac_make}_set=no
835fi
836rm -f conftestmake
837fi
838if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
839  echo "$ac_t""yes" 1>&6
840  SET_MAKE=
841else
842  echo "$ac_t""no" 1>&6
843  SET_MAKE="MAKE=${MAKE-make}"
844fi
845
846
847PACKAGE=rtems-exec-score-tools-generic
848
849VERSION=$RTEMS_VERSION
850
851if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
852  { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
853fi
854
855
856
857missing_dir=`cd $ac_aux_dir && pwd`
858echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
859echo "configure:860: checking for working aclocal" >&5
860# Run test in a subshell; some versions of sh will print an error if
861# an executable is not found, even if stderr is redirected.
862# Redirect stdin to placate older versions of autoconf.  Sigh.
863if (aclocal --version) < /dev/null > /dev/null 2>&1; then
864   ACLOCAL=aclocal
865   echo "$ac_t""found" 1>&6
866else
867   ACLOCAL="$missing_dir/missing aclocal"
868   echo "$ac_t""missing" 1>&6
869fi
870
871echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
872echo "configure:873: checking for working autoconf" >&5
873# Run test in a subshell; some versions of sh will print an error if
874# an executable is not found, even if stderr is redirected.
875# Redirect stdin to placate older versions of autoconf.  Sigh.
876if (autoconf --version) < /dev/null > /dev/null 2>&1; then
877   AUTOCONF=autoconf
878   echo "$ac_t""found" 1>&6
879else
880   AUTOCONF="$missing_dir/missing autoconf"
881   echo "$ac_t""missing" 1>&6
882fi
883
884echo $ac_n "checking for working automake""... $ac_c" 1>&6
885echo "configure:886: checking for working automake" >&5
886# Run test in a subshell; some versions of sh will print an error if
887# an executable is not found, even if stderr is redirected.
888# Redirect stdin to placate older versions of autoconf.  Sigh.
889if (automake --version) < /dev/null > /dev/null 2>&1; then
890   AUTOMAKE=automake
891   echo "$ac_t""found" 1>&6
892else
893   AUTOMAKE="$missing_dir/missing automake"
894   echo "$ac_t""missing" 1>&6
895fi
896
897echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
898echo "configure:899: checking for working autoheader" >&5
899# Run test in a subshell; some versions of sh will print an error if
900# an executable is not found, even if stderr is redirected.
901# Redirect stdin to placate older versions of autoconf.  Sigh.
902if (autoheader --version) < /dev/null > /dev/null 2>&1; then
903   AUTOHEADER=autoheader
904   echo "$ac_t""found" 1>&6
905else
906   AUTOHEADER="$missing_dir/missing autoheader"
907   echo "$ac_t""missing" 1>&6
908fi
909
910echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
911echo "configure:912: checking for working makeinfo" >&5
912# Run test in a subshell; some versions of sh will print an error if
913# an executable is not found, even if stderr is redirected.
914# Redirect stdin to placate older versions of autoconf.  Sigh.
915if (makeinfo --version) < /dev/null > /dev/null 2>&1; then
916   MAKEINFO=makeinfo
917   echo "$ac_t""found" 1>&6
918else
919   MAKEINFO="$missing_dir/missing makeinfo"
920   echo "$ac_t""missing" 1>&6
921fi
922
923
924
925
926for ac_prog in bash ksh sh
927do
928# Extract the first word of "$ac_prog", so it can be a program name with args.
929set dummy $ac_prog; ac_word=$2
930echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
931echo "configure:932: checking for $ac_word" >&5
932if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then
933  echo $ac_n "(cached) $ac_c" 1>&6
934else
935  case "$KSH" in
936  /*)
937  ac_cv_path_KSH="$KSH" # Let the user override the test with a path.
938  ;;
939  ?:/*)                 
940  ac_cv_path_KSH="$KSH" # Let the user override the test with a dos path.
941  ;;
942  *)
943  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
944  ac_dummy="$PATH"
945  for ac_dir in $ac_dummy; do
946    test -z "$ac_dir" && ac_dir=.
947    if test -f $ac_dir/$ac_word; then
948      ac_cv_path_KSH="$ac_dir/$ac_word"
949      break
950    fi
951  done
952  IFS="$ac_save_ifs"
953  ;;
954esac
955fi
956KSH="$ac_cv_path_KSH"
957if test -n "$KSH"; then
958  echo "$ac_t""$KSH" 1>&6
959else
960  echo "$ac_t""no" 1>&6
961fi
962
963test -n "$KSH" && break
964done
965
966if test -z "$KSH"; then
967{ echo "configure: error: ***
968    Cannot determine a usable shell bash/ksh/sh
969    Please contact your system administrator " 1>&2; exit 1; };
970fi
971
972
973
974# tooldir='$(exec_prefix)/'$target_alias
975# Temporary work-around until building in source tree is supported
976tooldir='$(PROJECT_ROOT)'
977
978
979project_includedir='$(tooldir)'/include
980
981
982project_libdir='$(tooldir)/lib$(MULTISUBDIR)'
983
984
985project_bindir='$(tooldir)/bin'
986
987
988
989
990trap '' 1 2 15
991cat > confcache <<\EOF
992# This file is a shell script that caches the results of configure
993# tests run on this system so they can be shared between configure
994# scripts and configure runs.  It is not useful on other systems.
995# If it contains results you don't want to keep, you may remove or edit it.
996#
997# By default, configure uses ./config.cache as the cache file,
998# creating it if it does not exist already.  You can give configure
999# the --cache-file=FILE option to use a different cache file; that is
1000# what configure does when it calls configure scripts in
1001# subdirectories, so they share the cache.
1002# Giving --cache-file=/dev/null disables caching, for debugging configure.
1003# config.status only pays attention to the cache file if you give it the
1004# --recheck option to rerun configure.
1005#
1006EOF
1007# The following way of writing the cache mishandles newlines in values,
1008# but we know of no workaround that is simple, portable, and efficient.
1009# So, don't put newlines in cache variables' values.
1010# Ultrix sh set writes to stderr and can't be redirected directly,
1011# and sets the high bit in the cache file unless we assign to the vars.
1012(set) 2>&1 |
1013  case `(ac_space=' '; set | grep ac_space) 2>&1` in
1014  *ac_space=\ *)
1015    # `set' does not quote correctly, so add quotes (double-quote substitution
1016    # turns \\\\ into \\, and sed turns \\ into \).
1017    sed -n \
1018      -e "s/'/'\\\\''/g" \
1019      -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p"
1020    ;;
1021  *)
1022    # `set' quotes correctly as required by POSIX, so do not add quotes.
1023    sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p'
1024    ;;
1025  esac >> confcache
1026if cmp -s $cache_file confcache; then
1027  :
1028else
1029  if test -w $cache_file; then
1030    echo "updating cache $cache_file"
1031    cat confcache > $cache_file
1032  else
1033    echo "not updating unwritable cache $cache_file"
1034  fi
1035fi
1036rm -f confcache
1037
1038trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
1039
1040test "x$prefix" = xNONE && prefix=$ac_default_prefix
1041# Let make expand exec_prefix.
1042test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
1043
1044# Any assignment to VPATH causes Sun make to only execute
1045# the first set of double-colon rules, so remove it if not needed.
1046# If there is a colon in the path, we need to keep it.
1047if test "x$srcdir" = x.; then
1048  ac_vpsub='/^[         ]*VPATH[        ]*=[^:]*$/d'
1049fi
1050
1051trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
1052
1053# Transform confdefs.h into DEFS.
1054# Protect against shell expansion while executing Makefile rules.
1055# Protect against Makefile macro expansion.
1056cat > conftest.defs <<\EOF
1057s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g
1058s%[     `~#$^&*(){}\\|;'"<>?]%\\&%g
1059s%\[%\\&%g
1060s%\]%\\&%g
1061s%\$%$$%g
1062EOF
1063DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '`
1064rm -f conftest.defs
1065
1066
1067# Without the "./", some shells look in PATH for config.status.
1068: ${CONFIG_STATUS=./config.status}
1069
1070echo creating $CONFIG_STATUS
1071rm -f $CONFIG_STATUS
1072cat > $CONFIG_STATUS <<EOF
1073#! /bin/sh
1074# Generated automatically by configure.
1075# Run this file to recreate the current configuration.
1076# This directory was configured as follows,
1077# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
1078#
1079# $0 $ac_configure_args
1080#
1081# Compiler output produced by configure, useful for debugging
1082# configure, is in ./config.log if it exists.
1083
1084ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
1085for ac_option
1086do
1087  case "\$ac_option" in
1088  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
1089    echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
1090    exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
1091  -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
1092    echo "$CONFIG_STATUS generated by autoconf version 2.13"
1093    exit 0 ;;
1094  -help | --help | --hel | --he | --h)
1095    echo "\$ac_cs_usage"; exit 0 ;;
1096  *) echo "\$ac_cs_usage"; exit 1 ;;
1097  esac
1098done
1099
1100ac_given_srcdir=$srcdir
1101ac_given_INSTALL="$INSTALL"
1102
1103trap 'rm -fr `echo "Makefile
1104size_rtems" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
1105EOF
1106cat >> $CONFIG_STATUS <<EOF
1107
1108# Protect against being on the right side of a sed subst in config.status.
1109sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g;
1110 s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF
1111$ac_vpsub
1112$extrasub
1113s%@SHELL@%$SHELL%g
1114s%@CFLAGS@%$CFLAGS%g
1115s%@CPPFLAGS@%$CPPFLAGS%g
1116s%@CXXFLAGS@%$CXXFLAGS%g
1117s%@FFLAGS@%$FFLAGS%g
1118s%@DEFS@%$DEFS%g
1119s%@LDFLAGS@%$LDFLAGS%g
1120s%@LIBS@%$LIBS%g
1121s%@exec_prefix@%$exec_prefix%g
1122s%@prefix@%$prefix%g
1123s%@program_transform_name@%$program_transform_name%g
1124s%@bindir@%$bindir%g
1125s%@sbindir@%$sbindir%g
1126s%@libexecdir@%$libexecdir%g
1127s%@datadir@%$datadir%g
1128s%@sysconfdir@%$sysconfdir%g
1129s%@sharedstatedir@%$sharedstatedir%g
1130s%@localstatedir@%$localstatedir%g
1131s%@libdir@%$libdir%g
1132s%@includedir@%$includedir%g
1133s%@oldincludedir@%$oldincludedir%g
1134s%@infodir@%$infodir%g
1135s%@mandir@%$mandir%g
1136s%@RTEMS_TOPdir@%$RTEMS_TOPdir%g
1137s%@PROJECT_ROOT@%$PROJECT_ROOT%g
1138s%@RTEMS_ROOT@%$RTEMS_ROOT%g
1139s%@host@%$host%g
1140s%@host_alias@%$host_alias%g
1141s%@host_cpu@%$host_cpu%g
1142s%@host_vendor@%$host_vendor%g
1143s%@host_os@%$host_os%g
1144s%@target@%$target%g
1145s%@target_alias@%$target_alias%g
1146s%@target_cpu@%$target_cpu%g
1147s%@target_vendor@%$target_vendor%g
1148s%@target_os@%$target_os%g
1149s%@build@%$build%g
1150s%@build_alias@%$build_alias%g
1151s%@build_cpu@%$build_cpu%g
1152s%@build_vendor@%$build_vendor%g
1153s%@build_os@%$build_os%g
1154s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
1155s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
1156s%@INSTALL_DATA@%$INSTALL_DATA%g
1157s%@PACKAGE@%$PACKAGE%g
1158s%@VERSION@%$VERSION%g
1159s%@ACLOCAL@%$ACLOCAL%g
1160s%@AUTOCONF@%$AUTOCONF%g
1161s%@AUTOMAKE@%$AUTOMAKE%g
1162s%@AUTOHEADER@%$AUTOHEADER%g
1163s%@MAKEINFO@%$MAKEINFO%g
1164s%@SET_MAKE@%$SET_MAKE%g
1165s%@KSH@%$KSH%g
1166s%@tooldir@%$tooldir%g
1167s%@project_includedir@%$project_includedir%g
1168s%@project_libdir@%$project_libdir%g
1169s%@project_bindir@%$project_bindir%g
1170s%@program_prefix@%$program_prefix%g
1171
1172CEOF
1173EOF
1174
1175cat >> $CONFIG_STATUS <<\EOF
1176
1177# Split the substitutions into bite-sized pieces for seds with
1178# small command number limits, like on Digital OSF/1 and HP-UX.
1179ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
1180ac_file=1 # Number of current file.
1181ac_beg=1 # First line for current file.
1182ac_end=$ac_max_sed_cmds # Line after last line for current file.
1183ac_more_lines=:
1184ac_sed_cmds=""
1185while $ac_more_lines; do
1186  if test $ac_beg -gt 1; then
1187    sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file
1188  else
1189    sed "${ac_end}q" conftest.subs > conftest.s$ac_file
1190  fi
1191  if test ! -s conftest.s$ac_file; then
1192    ac_more_lines=false
1193    rm -f conftest.s$ac_file
1194  else
1195    if test -z "$ac_sed_cmds"; then
1196      ac_sed_cmds="sed -f conftest.s$ac_file"
1197    else
1198      ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file"
1199    fi
1200    ac_file=`expr $ac_file + 1`
1201    ac_beg=$ac_end
1202    ac_end=`expr $ac_end + $ac_max_sed_cmds`
1203  fi
1204done
1205if test -z "$ac_sed_cmds"; then
1206  ac_sed_cmds=cat
1207fi
1208EOF
1209
1210cat >> $CONFIG_STATUS <<EOF
1211
1212CONFIG_FILES=\${CONFIG_FILES-"Makefile
1213size_rtems"}
1214EOF
1215cat >> $CONFIG_STATUS <<\EOF
1216for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
1217  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
1218  case "$ac_file" in
1219  *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
1220       ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
1221  *) ac_file_in="${ac_file}.in" ;;
1222  esac
1223
1224  # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories.
1225
1226  # Remove last slash and all that follows it.  Not all systems have dirname.
1227  ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
1228  if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
1229    # The file is in a subdirectory.
1230    test ! -d "$ac_dir" && mkdir "$ac_dir"
1231    ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`"
1232    # A "../" for each directory in $ac_dir_suffix.
1233    ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
1234  else
1235    ac_dir_suffix= ac_dots=
1236  fi
1237
1238  case "$ac_given_srcdir" in
1239  .)  srcdir=.
1240      if test -z "$ac_dots"; then top_srcdir=.
1241      else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
1242  /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
1243  *) # Relative path.
1244    srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
1245    top_srcdir="$ac_dots$ac_given_srcdir" ;;
1246  esac
1247
1248  case "$ac_given_INSTALL" in
1249  [/$]*) INSTALL="$ac_given_INSTALL" ;;
1250  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
1251  esac
1252
1253  echo creating "$ac_file"
1254  rm -f "$ac_file"
1255  configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
1256  case "$ac_file" in
1257  *Makefile*) ac_comsub="1i\\
1258# $configure_input" ;;
1259  *) ac_comsub= ;;
1260  esac
1261
1262  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
1263  sed -e "$ac_comsub
1264s%@configure_input@%$configure_input%g
1265s%@srcdir@%$srcdir%g
1266s%@top_srcdir@%$top_srcdir%g
1267s%@INSTALL@%$INSTALL%g
1268" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
1269fi; done
1270rm -f conftest.s*
1271
1272EOF
1273cat >> $CONFIG_STATUS <<EOF
1274
1275EOF
1276cat >> $CONFIG_STATUS <<\EOF
1277
1278exit 0
1279EOF
1280chmod +x $CONFIG_STATUS
1281rm -fr confdefs* $ac_clean_files
1282test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
1283
Note: See TracBrowser for help on using the repository browser.