2005-12-18 Jeff Johnston <jjohnstn@redhat.com>
* NEWS: Update with 1.15.0 info. * README: Ditto. * acinclude.m4: Change version number to 1.15.0. * aclocal.m4: Regenerated. * configure: Ditto. * doc/aclocal.m4: Ditto. * doc/configure: Ditto. * libc/*/aclocal.m4: Ditto. * libc/*/configure: Ditto. * libc/libc.texinfo: Ditto. * libm/*/aclocal.m4: Ditto. * libm/*/configure: Ditto. * libm/libm.texinfo: Ditto. * libc/sys/linux/shared.ld: Add VERS_1.15.
This commit is contained in:
parent
def943c11c
commit
a4b117829f
|
@ -1,3 +1,20 @@
|
|||
2005-12-18 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* NEWS: Update with 1.15.0 info.
|
||||
* README: Ditto.
|
||||
* acinclude.m4: Change version number to 1.15.0.
|
||||
* aclocal.m4: Regenerated.
|
||||
* configure: Ditto.
|
||||
* doc/aclocal.m4: Ditto.
|
||||
* doc/configure: Ditto.
|
||||
* libc/*/aclocal.m4: Ditto.
|
||||
* libc/*/configure: Ditto.
|
||||
* libc/libc.texinfo: Ditto.
|
||||
* libm/*/aclocal.m4: Ditto.
|
||||
* libm/*/configure: Ditto.
|
||||
* libm/libm.texinfo: Ditto.
|
||||
* libc/sys/linux/shared.ld: Add VERS_1.15.
|
||||
|
||||
2006-12-18 Kazu Hirata <kazu@codesourcery.com>
|
||||
|
||||
Merge from newlib-csl-20060320-branch:
|
||||
|
|
12
newlib/NEWS
12
newlib/NEWS
|
@ -1,3 +1,15 @@
|
|||
*** Major changes in newlib version 1.15.0:
|
||||
|
||||
* new platforms added (bfin, spu, fido)
|
||||
* merge of csl branch changes (e.g. m68k)
|
||||
* additional C99 support (printf modifiers, strtod, isnan/isinf)
|
||||
* new configuration option to turn off dynamic allocation for atexit
|
||||
* reentrancy added for read / write functions
|
||||
* Cygwin fixes (e.g. POSIX read file flush behavior)
|
||||
* switch to autoconf 2.5.9
|
||||
* use of aclocal/automake 1.9.6
|
||||
* various bug fixes and doc cleanups
|
||||
|
||||
*** Major changes in newlib version 1.14.0:
|
||||
|
||||
* new platforms added (cris, mt, m32c)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
README for newlib-1.14.0 release
|
||||
README for newlib-1.15.0 release
|
||||
(mostly cribbed from the README in the gdb-4.13 release)
|
||||
|
||||
This is `newlib', a simple ANSI C library, math library, and collection
|
||||
|
@ -17,8 +17,8 @@ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|||
Unpacking and Installation -- quick overview
|
||||
==========================
|
||||
|
||||
When you unpack the newlib-1.14.0.tar.gz file, you'll find a directory
|
||||
called `newlib-1.14.0', which contains:
|
||||
When you unpack the newlib-1.15.0.tar.gz file, you'll find a directory
|
||||
called `newlib-1.15.0', which contains:
|
||||
|
||||
COPYING config/ install-sh* mpw-configure
|
||||
COPYING.LIB config-ml.in libgloss/ mpw-install
|
||||
|
@ -94,13 +94,13 @@ directory. If the path to `configure' would be the same as the
|
|||
argument to `--srcdir', you can leave out the `--srcdir' option; it
|
||||
will be assumed.)
|
||||
|
||||
For example, with version 1.14.0, you can build NEWLIB in a separate
|
||||
For example, with version 1.15.0, you can build NEWLIB in a separate
|
||||
directory for a Sun 4 cross m68k-aout environment like this:
|
||||
|
||||
cd newlib-1.14.0
|
||||
cd newlib-1.15.0
|
||||
mkdir ../newlib-m68k-aout
|
||||
cd ../newlib-m68k-aout
|
||||
../newlib-1.14.0/configure --host=sun4 --target=m68k-aout
|
||||
../newlib-1.15.0/configure --host=sun4 --target=m68k-aout
|
||||
make
|
||||
|
||||
When `configure' builds a configuration using a remote source
|
||||
|
@ -116,8 +116,8 @@ called `configure' (or one of its subdirectories).
|
|||
|
||||
The `Makefile' that `configure' generates in each source directory
|
||||
also runs recursively. If you type `make' in a source directory such
|
||||
as `newlib-1.14.0' (or in a separate configured directory configured with
|
||||
`--srcdir=PATH/newlib-1.14.0'), you will build all the required libraries.
|
||||
as `newlib-1.15.0' (or in a separate configured directory configured with
|
||||
`--srcdir=PATH/newlib-1.15.0'), you will build all the required libraries.
|
||||
|
||||
When you have multiple hosts or targets configured in separate
|
||||
directories, you can run `make' on them in parallel (for example, if
|
||||
|
@ -368,15 +368,15 @@ After creating a new configure.in and Makefile.am file, you would issue:
|
|||
from newlib/libc/machine/XXXX
|
||||
|
||||
It is strongly advised that you use an adequate version of autotools.
|
||||
For this latest release, this would be: autoconf 2.59, aclocal 1.9.5, and
|
||||
automake 1.9.5.
|
||||
For this latest release, this would be: autoconf 2.59, aclocal 1.9.6, and
|
||||
automake 1.9.6.
|
||||
|
||||
Reporting Bugs
|
||||
==============
|
||||
|
||||
The correct address for reporting bugs found in NEWLIB is
|
||||
"newlib@sources.redhat.com". Please email all bug reports to that
|
||||
address. Please include the NEWLIB version number (e.g., newlib-1.14.0),
|
||||
address. Please include the NEWLIB version number (e.g., newlib-1.15.0),
|
||||
and how you configured it (e.g., "sun4 host and m68k-aout target").
|
||||
Since NEWLIB supports many different configurations, it is important
|
||||
that you be precise about this.
|
||||
|
|
|
@ -2,7 +2,7 @@ dnl This provides configure definitions used by all the newlib
|
|||
dnl configure.in files.
|
||||
|
||||
AC_DEFUN([DEF_NEWLIB_VERSION],
|
||||
m4_define([NEWLIB_VERSION],[1.14.0]))
|
||||
m4_define([NEWLIB_VERSION],[1.15.0]))
|
||||
|
||||
dnl Basic newlib configury. This calls basic introductory stuff,
|
||||
dnl including AM_INIT_AUTOMAKE and AC_CANONICAL_HOST. It also runs
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="libc"
|
||||
|
@ -749,7 +749,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -815,7 +815,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -963,7 +963,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -977,7 +977,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -2002,7 +2002,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5228,7 +5228,7 @@ _ACEOF
|
|||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define _NEWLIB_VERSION "1.14.0"
|
||||
#define _NEWLIB_VERSION "1.15.0"
|
||||
_ACEOF
|
||||
|
||||
|
||||
|
@ -5874,7 +5874,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5937,7 +5937,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="makedoc.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3316,7 +3316,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3374,7 +3374,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="jis0201.c"
|
||||
|
@ -745,7 +745,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -811,7 +811,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -949,7 +949,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -963,7 +963,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1865,7 +1865,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5328,7 +5328,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5386,7 +5386,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="sys.tex"
|
||||
|
@ -746,7 +746,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -812,7 +812,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -951,7 +951,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -965,7 +965,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1880,7 +1880,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5544,7 +5544,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5602,7 +5602,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -84,8 +84,8 @@ into another language, under the above conditions for modified versions.
|
|||
@title The Red Hat newlib C Library
|
||||
@subtitle Full Configuration
|
||||
@sp 1
|
||||
@subtitle @code{libc} 1.14.0
|
||||
@subtitle December 2005
|
||||
@subtitle @code{libc} 1.15.0
|
||||
@subtitle December 2006
|
||||
@author {Steve Chamberlain}
|
||||
@author {Roland Pesch}
|
||||
@author {Red Hat Support}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="d10v"
|
||||
|
@ -781,7 +781,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -847,7 +847,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -985,7 +985,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -999,7 +999,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1901,7 +1901,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5531,7 +5531,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5589,7 +5589,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="memcpy.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="cmpsi.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="memchr.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -745,7 +745,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -811,7 +811,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -949,7 +949,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -963,7 +963,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1865,7 +1865,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5346,7 +5346,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5404,7 +5404,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="memccpy_ca.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="memchr.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="fastmath.s"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3295,7 +3295,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3353,7 +3353,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="asm.h"
|
||||
|
@ -750,7 +750,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -816,7 +816,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -945,7 +945,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -959,7 +959,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1861,7 +1861,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -4682,7 +4682,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -4740,7 +4740,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="shuffle.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="cmpsi.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="Makefile.am"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="setjmp.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="args.h"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="_alloc.s"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="isatty.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="trap.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="a29khif"
|
||||
|
@ -769,7 +769,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -835,7 +835,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -973,7 +973,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -987,7 +987,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1889,7 +1889,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5476,7 +5476,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5534,7 +5534,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="creat.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="_main.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="crt1.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="misc.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="linux.c"
|
||||
|
@ -747,7 +747,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -813,7 +813,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -951,7 +951,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -965,7 +965,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1867,7 +1867,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5404,7 +5404,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5462,7 +5462,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="attr.c"
|
||||
|
@ -746,7 +746,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -812,7 +812,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -950,7 +950,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -964,7 +964,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1866,7 +1866,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5381,7 +5381,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5439,7 +5439,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="i386"
|
||||
|
@ -746,7 +746,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -812,7 +812,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -950,7 +950,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -964,7 +964,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1866,7 +1866,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5355,7 +5355,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5413,7 +5413,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="pspinlock.c"
|
||||
|
@ -745,7 +745,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -811,7 +811,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -949,7 +949,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -963,7 +963,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1865,7 +1865,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5368,7 +5368,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5426,7 +5426,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="i386"
|
||||
|
@ -746,7 +746,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -812,7 +812,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -950,7 +950,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -964,7 +964,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1866,7 +1866,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5361,7 +5361,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5419,7 +5419,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="crt0.c"
|
||||
|
@ -745,7 +745,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -811,7 +811,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -949,7 +949,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -963,7 +963,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1865,7 +1865,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5368,7 +5368,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5426,7 +5426,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -17,3 +17,7 @@ VERS_1.13 {
|
|||
VERS_1.14 {
|
||||
global: *;
|
||||
};
|
||||
|
||||
VERS_1.15 {
|
||||
global: *;
|
||||
};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="syscalls.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="crt0.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="link.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="close.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="dummysys.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="creat.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="template_r.S"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="ieee.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="crt1.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="io.s"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="crt1.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="fps.s"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="sysv60.s"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="crt0.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="trap.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="glue.c"
|
||||
|
@ -729,7 +729,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -795,7 +795,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -917,7 +917,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -931,7 +931,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1833,7 +1833,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -3280,7 +3280,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -3338,7 +3338,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="libm.texinfo"
|
||||
|
@ -746,7 +746,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -812,7 +812,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -951,7 +951,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -965,7 +965,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1891,7 +1891,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5393,7 +5393,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5451,7 +5451,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -61,8 +61,8 @@ into another language, under the above conditions for modified versions.
|
|||
@titlepage
|
||||
@title The Red Hat newlib C Math Library
|
||||
@sp 1
|
||||
@subtitle @code{libm} 1.14.0
|
||||
@subtitle December 2005
|
||||
@subtitle @code{libm} 1.15.0
|
||||
@subtitle December 2006
|
||||
@author {Steve Chamberlain}
|
||||
@author {Roland Pesch}
|
||||
@author {Red Hat Support}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="i386"
|
||||
|
@ -746,7 +746,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -812,7 +812,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -950,7 +950,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -964,7 +964,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1866,7 +1866,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5365,7 +5365,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5423,7 +5423,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.14.0.
|
||||
# Generated by GNU Autoconf 2.59 for newlib 1.15.0.
|
||||
#
|
||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
|
@ -267,8 +267,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='newlib'
|
||||
PACKAGE_TARNAME='newlib'
|
||||
PACKAGE_VERSION='1.14.0'
|
||||
PACKAGE_STRING='newlib 1.14.0'
|
||||
PACKAGE_VERSION='1.15.0'
|
||||
PACKAGE_STRING='newlib 1.15.0'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="f_math.h"
|
||||
|
@ -745,7 +745,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures newlib 1.14.0 to adapt to many kinds of systems.
|
||||
\`configure' configures newlib 1.15.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -811,7 +811,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of newlib 1.14.0:";;
|
||||
short | recursive ) echo "Configuration of newlib 1.15.0:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -949,7 +949,7 @@ fi
|
|||
test -n "$ac_init_help" && exit 0
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
newlib configure 1.14.0
|
||||
newlib configure 1.15.0
|
||||
generated by GNU Autoconf 2.59
|
||||
|
||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
|
@ -963,7 +963,7 @@ cat >&5 <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by newlib $as_me 1.14.0, which was
|
||||
It was created by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1865,7 +1865,7 @@ fi
|
|||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='newlib'
|
||||
VERSION='1.14.0'
|
||||
VERSION='1.15.0'
|
||||
|
||||
|
||||
# Some tools Automake needs.
|
||||
|
@ -5328,7 +5328,7 @@ _ASBOX
|
|||
} >&5
|
||||
cat >&5 <<_CSEOF
|
||||
|
||||
This file was extended by newlib $as_me 1.14.0, which was
|
||||
This file was extended by newlib $as_me 1.15.0, which was
|
||||
generated by GNU Autoconf 2.59. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -5386,7 +5386,7 @@ _ACEOF
|
|||
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
newlib config.status 1.14.0
|
||||
newlib config.status 1.15.0
|
||||
configured by $0, generated by GNU Autoconf 2.59,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
Loading…
Reference in New Issue