mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 12:29:32 +08:00
* configure.in (CRT0_DIR): Set to libc/.
(CRT1_DIR): Set to ${crt1_dir}/ if crt1_dir is non-empty. * Makefile.am: Change all occurrences of $(CRT0_DIR)/$(CRT0) to $(CRT0_DIR)$(CRT0) to prevent make warnings. Likewise for $(CRT1_DIR)/$(CRT1). * libc/machine/xstormy16/Makefile.in: Regenerated. * libc/machine/xstormy16/aclocal.m4: Regenerated. * libc/machine/xstormy16/configure: Regenerated.
This commit is contained in:
parent
84462018f3
commit
5f1c13c6a6
@ -1,3 +1,14 @@
|
|||||||
|
2002-04-17 Thomas Fitzsimmons <fitzsim@redhat.com>
|
||||||
|
|
||||||
|
* configure.in (CRT0_DIR): Set to libc/.
|
||||||
|
(CRT1_DIR): Set to ${crt1_dir}/ if crt1_dir is non-empty.
|
||||||
|
* Makefile.am: Change all occurrences of $(CRT0_DIR)/$(CRT0) to
|
||||||
|
$(CRT0_DIR)$(CRT0) to prevent make warnings. Likewise for
|
||||||
|
$(CRT1_DIR)/$(CRT1).
|
||||||
|
* libc/machine/xstormy16/Makefile.in: Regenerated.
|
||||||
|
* libc/machine/xstormy16/aclocal.m4: Regenerated.
|
||||||
|
* libc/machine/xstormy16/configure: Regenerated.
|
||||||
|
|
||||||
2002-04-13 Alexandre Oliva <aoliva@redhat.com>
|
2002-04-13 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* libc/stdlib/mallocr.c (malloc_extend_top): If correction sbrk
|
* libc/stdlib/mallocr.c (malloc_extend_top): If correction sbrk
|
||||||
|
@ -162,19 +162,19 @@ libm/libm.a: ; @true
|
|||||||
|
|
||||||
endif # USE_LIBTOOL
|
endif # USE_LIBTOOL
|
||||||
|
|
||||||
crt0.o: $(CRT0_DIR)/$(CRT0)
|
crt0.o: $(CRT0_DIR)$(CRT0)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
ln $(CRT0_DIR)/$(CRT0) $@ >/dev/null 2>/dev/null \
|
ln $(CRT0_DIR)$(CRT0) $@ >/dev/null 2>/dev/null \
|
||||||
|| cp $(CRT0_DIR)/$(CRT0) $@
|
|| cp $(CRT0_DIR)$(CRT0) $@
|
||||||
|
|
||||||
$(CRT0_DIR)/$(CRT0): ; @true
|
$(CRT0_DIR)$(CRT0): ; @true
|
||||||
|
|
||||||
crt1.o: $(CRT1_DIR)/$(CRT1)
|
crt1.o: $(CRT1_DIR)$(CRT1)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
ln $(CRT0_DIR)/$(CRT0) $@ >/dev/null 2>/dev/null \
|
ln $(CRT0_DIR)$(CRT0) $@ >/dev/null 2>/dev/null \
|
||||||
|| cp $(CRT0_DIR)/$(CRT0) $@
|
|| cp $(CRT0_DIR)$(CRT0) $@
|
||||||
|
|
||||||
$(CRT1_DIR)/$(CRT1): ; @true
|
$(CRT1_DIR)$(CRT1): ; @true
|
||||||
|
|
||||||
|
|
||||||
all-recursive: stmp-targ-include
|
all-recursive: stmp-targ-include
|
||||||
|
@ -673,19 +673,19 @@ mostlyclean distclean maintainer-clean
|
|||||||
|
|
||||||
@USE_LIBTOOL_FALSE@libm/libm.a: ; @true
|
@USE_LIBTOOL_FALSE@libm/libm.a: ; @true
|
||||||
|
|
||||||
crt0.o: $(CRT0_DIR)/$(CRT0)
|
crt0.o: $(CRT0_DIR)$(CRT0)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
ln $(CRT0_DIR)/$(CRT0) $@ >/dev/null 2>/dev/null \
|
ln $(CRT0_DIR)$(CRT0) $@ >/dev/null 2>/dev/null \
|
||||||
|| cp $(CRT0_DIR)/$(CRT0) $@
|
|| cp $(CRT0_DIR)$(CRT0) $@
|
||||||
|
|
||||||
$(CRT0_DIR)/$(CRT0): ; @true
|
$(CRT0_DIR)$(CRT0): ; @true
|
||||||
|
|
||||||
crt1.o: $(CRT1_DIR)/$(CRT1)
|
crt1.o: $(CRT1_DIR)$(CRT1)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
ln $(CRT0_DIR)/$(CRT0) $@ >/dev/null 2>/dev/null \
|
ln $(CRT0_DIR)$(CRT0) $@ >/dev/null 2>/dev/null \
|
||||||
|| cp $(CRT0_DIR)/$(CRT0) $@
|
|| cp $(CRT0_DIR)$(CRT0) $@
|
||||||
|
|
||||||
$(CRT1_DIR)/$(CRT1): ; @true
|
$(CRT1_DIR)$(CRT1): ; @true
|
||||||
|
|
||||||
all-recursive: stmp-targ-include
|
all-recursive: stmp-targ-include
|
||||||
|
|
||||||
|
7
newlib/configure
vendored
7
newlib/configure
vendored
@ -2366,13 +2366,16 @@ CRT0=
|
|||||||
CRT0_DIR=
|
CRT0_DIR=
|
||||||
if test -n "${sys_dir}"; then
|
if test -n "${sys_dir}"; then
|
||||||
CRT0=crt0.o
|
CRT0=crt0.o
|
||||||
CRT0_DIR=libc
|
CRT0_DIR=libc/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CRT1=${crt1}
|
CRT1=${crt1}
|
||||||
CRT1_DIR=${crt1_dir}
|
CRT1_DIR=
|
||||||
|
if test -n "${crt1_dir}"; then
|
||||||
|
CRT1_DIR=${crt1_dir}/
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,13 +43,16 @@ CRT0=
|
|||||||
CRT0_DIR=
|
CRT0_DIR=
|
||||||
if test -n "${sys_dir}"; then
|
if test -n "${sys_dir}"; then
|
||||||
CRT0=crt0.o
|
CRT0=crt0.o
|
||||||
CRT0_DIR=libc
|
CRT0_DIR=libc/
|
||||||
fi
|
fi
|
||||||
AC_SUBST(CRT0)
|
AC_SUBST(CRT0)
|
||||||
AC_SUBST(CRT0_DIR)
|
AC_SUBST(CRT0_DIR)
|
||||||
|
|
||||||
CRT1=${crt1}
|
CRT1=${crt1}
|
||||||
CRT1_DIR=${crt1_dir}
|
CRT1_DIR=
|
||||||
|
if test -n "${crt1_dir}"; then
|
||||||
|
CRT1_DIR=${crt1_dir}/
|
||||||
|
fi
|
||||||
AC_SUBST(CRT1)
|
AC_SUBST(CRT1)
|
||||||
AC_SUBST(CRT1_DIR)
|
AC_SUBST(CRT1_DIR)
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
|
# Makefile.in generated automatically by automake 1.4 from Makefile.am
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
|
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
# This Makefile.in is free software; the Free Software Foundation
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
# with or without modifications, as long as this notice is preserved.
|
# with or without modifications, as long as this notice is preserved.
|
||||||
|
@ -64,14 +64,18 @@ AS = @AS@
|
|||||||
CC = @CC@
|
CC = @CC@
|
||||||
CPP = @CPP@
|
CPP = @CPP@
|
||||||
EXEEXT = @EXEEXT@
|
EXEEXT = @EXEEXT@
|
||||||
|
LDFLAGS = @LDFLAGS@
|
||||||
MAINT = @MAINT@
|
MAINT = @MAINT@
|
||||||
MAKEINFO = @MAKEINFO@
|
MAKEINFO = @MAKEINFO@
|
||||||
NEWLIB_CFLAGS = @NEWLIB_CFLAGS@
|
NEWLIB_CFLAGS = @NEWLIB_CFLAGS@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
aext = @aext@
|
||||||
|
libm_machine_dir = @libm_machine_dir@
|
||||||
machine_dir = @machine_dir@
|
machine_dir = @machine_dir@
|
||||||
newlib_basedir = @newlib_basedir@
|
newlib_basedir = @newlib_basedir@
|
||||||
|
oext = @oext@
|
||||||
sys_dir = @sys_dir@
|
sys_dir = @sys_dir@
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = cygnus
|
AUTOMAKE_OPTIONS = cygnus
|
||||||
@ -87,7 +91,9 @@ lib_a_SOURCES = setjmp.S
|
|||||||
ACLOCAL_AMFLAGS = -I ../../..
|
ACLOCAL_AMFLAGS = -I ../../..
|
||||||
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
||||||
|
|
||||||
lib_a_LIBADD = malloc.o free.o realloc.o calloc.o cfree.o malign.o valloc.o pvalloc.o mallinfo.o mallstats.o msize.o mallopt.o mallocr.o freer.o reallocr.o callocr.o
|
lib_a_LIBADD = malloc.o free.o realloc.o calloc.o cfree.o malign.o \
|
||||||
|
valloc.o pvalloc.o mallinfo.o mallstats.o msize.o mallopt.o \
|
||||||
|
mallocr.o freer.o reallocr.o callocr.o
|
||||||
|
|
||||||
|
|
||||||
MALLOC_COMPILE = $(COMPILE)
|
MALLOC_COMPILE = $(COMPILE)
|
||||||
@ -99,7 +105,6 @@ LIBRARIES = $(noinst_LIBRARIES)
|
|||||||
|
|
||||||
DEFS = @DEFS@ -I. -I$(srcdir)
|
DEFS = @DEFS@ -I. -I$(srcdir)
|
||||||
CPPFLAGS = @CPPFLAGS@
|
CPPFLAGS = @CPPFLAGS@
|
||||||
LDFLAGS = @LDFLAGS@
|
|
||||||
LIBS = @LIBS@
|
LIBS = @LIBS@
|
||||||
lib_a_DEPENDENCIES = malloc.o free.o realloc.o calloc.o cfree.o \
|
lib_a_DEPENDENCIES = malloc.o free.o realloc.o calloc.o cfree.o \
|
||||||
malign.o valloc.o pvalloc.o mallinfo.o mallstats.o msize.o mallopt.o \
|
malign.o valloc.o pvalloc.o mallinfo.o mallstats.o msize.o mallopt.o \
|
||||||
|
20
newlib/libc/machine/xstormy16/aclocal.m4
vendored
20
newlib/libc/machine/xstormy16/aclocal.m4
vendored
@ -56,6 +56,16 @@ AC_ARG_ENABLE(newlib-mb,
|
|||||||
*) AC_MSG_ERROR(bad value ${enableval} for newlib-mb option) ;;
|
*) AC_MSG_ERROR(bad value ${enableval} for newlib-mb option) ;;
|
||||||
esac], [newlib_mb=no])dnl
|
esac], [newlib_mb=no])dnl
|
||||||
|
|
||||||
|
dnl Support --disable-newlib-io-float
|
||||||
|
AC_ARG_ENABLE(newlib-io-float,
|
||||||
|
[ --disable-newlib-io-float disable printf/scanf family float support],
|
||||||
|
[case "${enableval}" in
|
||||||
|
yes) newlib_io_float=yes ;;
|
||||||
|
no) newlib_io_float=no ;;
|
||||||
|
*) AC_MSG_ERROR(bad value ${enableval} for newlib-io-float option) ;;
|
||||||
|
esac], [newlib_io_float=yes])dnl
|
||||||
|
|
||||||
|
|
||||||
dnl We may get other options which we don't document:
|
dnl We may get other options which we don't document:
|
||||||
dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
|
dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
|
||||||
|
|
||||||
@ -74,7 +84,7 @@ AC_SUBST(newlib_basedir)
|
|||||||
|
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(newlib, 1.9.0)
|
AM_INIT_AUTOMAKE(newlib, 1.10.0)
|
||||||
|
|
||||||
# FIXME: We temporarily define our own version of AC_PROG_CC. This is
|
# FIXME: We temporarily define our own version of AC_PROG_CC. This is
|
||||||
# copied from autoconf 2.12, but does not call AC_PROG_CC_WORKS. We
|
# copied from autoconf 2.12, but does not call AC_PROG_CC_WORKS. We
|
||||||
@ -160,6 +170,14 @@ newlib_cflags="[$]{newlib_cflags} -fno-builtin"
|
|||||||
NEWLIB_CFLAGS=${newlib_cflags}
|
NEWLIB_CFLAGS=${newlib_cflags}
|
||||||
AC_SUBST(NEWLIB_CFLAGS)
|
AC_SUBST(NEWLIB_CFLAGS)
|
||||||
|
|
||||||
|
LDFLAGS=${ldflags}
|
||||||
|
AC_SUBST(LDFLAGS)
|
||||||
|
|
||||||
|
AM_CONDITIONAL(USE_LIBTOOL, test x[$]{use_libtool} = xyes)
|
||||||
|
AC_SUBST(oext)
|
||||||
|
AC_SUBST(aext)
|
||||||
|
|
||||||
|
AC_SUBST(libm_machine_dir)
|
||||||
AC_SUBST(machine_dir)
|
AC_SUBST(machine_dir)
|
||||||
AC_SUBST(sys_dir)
|
AC_SUBST(sys_dir)
|
||||||
])
|
])
|
||||||
|
98
newlib/libc/machine/xstormy16/configure
vendored
98
newlib/libc/machine/xstormy16/configure
vendored
@ -19,6 +19,8 @@ ac_help="$ac_help
|
|||||||
--enable-malloc-debugging indicate malloc debugging requested"
|
--enable-malloc-debugging indicate malloc debugging requested"
|
||||||
ac_help="$ac_help
|
ac_help="$ac_help
|
||||||
--enable-newlib-mb enable multibyte support"
|
--enable-newlib-mb enable multibyte support"
|
||||||
|
ac_help="$ac_help
|
||||||
|
--disable-newlib-io-float disable printf/scanf family float support"
|
||||||
ac_help="$ac_help
|
ac_help="$ac_help
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer"
|
(and sometimes confusing) to the casual installer"
|
||||||
@ -576,7 +578,7 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
|
|||||||
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
||||||
# ./install, which can be erroneously created by make from ./install.sh.
|
# ./install, which can be erroneously created by make from ./install.sh.
|
||||||
echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
|
echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
|
||||||
echo "configure:580: checking for a BSD compatible install" >&5
|
echo "configure:582: checking for a BSD compatible install" >&5
|
||||||
if test -z "$INSTALL"; then
|
if test -z "$INSTALL"; then
|
||||||
if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
@ -629,7 +631,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
|
|||||||
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
||||||
|
|
||||||
echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
|
echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
|
||||||
echo "configure:633: checking whether build environment is sane" >&5
|
echo "configure:635: checking whether build environment is sane" >&5
|
||||||
# Just in case
|
# Just in case
|
||||||
sleep 1
|
sleep 1
|
||||||
echo timestamp > conftestfile
|
echo timestamp > conftestfile
|
||||||
@ -686,7 +688,7 @@ test "$program_suffix" != NONE &&
|
|||||||
test "$program_transform_name" = "" && program_transform_name="s,x,x,"
|
test "$program_transform_name" = "" && program_transform_name="s,x,x,"
|
||||||
|
|
||||||
echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
|
echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
|
||||||
echo "configure:690: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
echo "configure:692: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
||||||
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
|
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
@ -719,12 +721,12 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
|
echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
|
||||||
echo "configure:723: checking for Cygwin environment" >&5
|
echo "configure:725: checking for Cygwin environment" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 728 "configure"
|
#line 730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
@ -735,7 +737,7 @@ int main() {
|
|||||||
return __CYGWIN__;
|
return __CYGWIN__;
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:739: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
if { (eval echo configure:741: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
ac_cv_cygwin=yes
|
ac_cv_cygwin=yes
|
||||||
else
|
else
|
||||||
@ -752,19 +754,19 @@ echo "$ac_t""$ac_cv_cygwin" 1>&6
|
|||||||
CYGWIN=
|
CYGWIN=
|
||||||
test "$ac_cv_cygwin" = yes && CYGWIN=yes
|
test "$ac_cv_cygwin" = yes && CYGWIN=yes
|
||||||
echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
|
echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
|
||||||
echo "configure:756: checking for mingw32 environment" >&5
|
echo "configure:758: checking for mingw32 environment" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 761 "configure"
|
#line 763 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
return __MINGW32__;
|
return __MINGW32__;
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:768: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
if { (eval echo configure:770: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
ac_cv_mingw32=yes
|
ac_cv_mingw32=yes
|
||||||
else
|
else
|
||||||
@ -829,6 +831,19 @@ else
|
|||||||
newlib_mb=no
|
newlib_mb=no
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check whether --enable-newlib-io-float or --disable-newlib-io-float was given.
|
||||||
|
if test "${enable_newlib_io_float+set}" = set; then
|
||||||
|
enableval="$enable_newlib_io_float"
|
||||||
|
case "${enableval}" in
|
||||||
|
yes) newlib_io_float=yes ;;
|
||||||
|
no) newlib_io_float=no ;;
|
||||||
|
*) { echo "configure: error: bad value ${enableval} for newlib-io-float option" 1>&2; exit 1; } ;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
newlib_io_float=yes
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
test -z "${with_target_subdir}" && with_target_subdir=.
|
test -z "${with_target_subdir}" && with_target_subdir=.
|
||||||
|
|
||||||
@ -850,7 +865,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo $ac_n "checking host system type""... $ac_c" 1>&6
|
echo $ac_n "checking host system type""... $ac_c" 1>&6
|
||||||
echo "configure:854: checking host system type" >&5
|
echo "configure:869: checking host system type" >&5
|
||||||
|
|
||||||
host_alias=$host
|
host_alias=$host
|
||||||
case "$host_alias" in
|
case "$host_alias" in
|
||||||
@ -874,7 +889,7 @@ echo "$ac_t""$host" 1>&6
|
|||||||
|
|
||||||
PACKAGE=newlib
|
PACKAGE=newlib
|
||||||
|
|
||||||
VERSION=1.9.0
|
VERSION=1.10.0
|
||||||
|
|
||||||
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
|
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
|
||||||
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
|
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
|
||||||
@ -891,7 +906,7 @@ EOF
|
|||||||
|
|
||||||
missing_dir=`cd $ac_aux_dir && pwd`
|
missing_dir=`cd $ac_aux_dir && pwd`
|
||||||
echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
|
echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
|
||||||
echo "configure:895: checking for working aclocal" >&5
|
echo "configure:910: checking for working aclocal" >&5
|
||||||
# Run test in a subshell; some versions of sh will print an error if
|
# Run test in a subshell; some versions of sh will print an error if
|
||||||
# an executable is not found, even if stderr is redirected.
|
# an executable is not found, even if stderr is redirected.
|
||||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||||
@ -904,7 +919,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
|
echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
|
||||||
echo "configure:908: checking for working autoconf" >&5
|
echo "configure:923: checking for working autoconf" >&5
|
||||||
# Run test in a subshell; some versions of sh will print an error if
|
# Run test in a subshell; some versions of sh will print an error if
|
||||||
# an executable is not found, even if stderr is redirected.
|
# an executable is not found, even if stderr is redirected.
|
||||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||||
@ -917,7 +932,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo $ac_n "checking for working automake""... $ac_c" 1>&6
|
echo $ac_n "checking for working automake""... $ac_c" 1>&6
|
||||||
echo "configure:921: checking for working automake" >&5
|
echo "configure:936: checking for working automake" >&5
|
||||||
# Run test in a subshell; some versions of sh will print an error if
|
# Run test in a subshell; some versions of sh will print an error if
|
||||||
# an executable is not found, even if stderr is redirected.
|
# an executable is not found, even if stderr is redirected.
|
||||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||||
@ -930,7 +945,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
|
echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
|
||||||
echo "configure:934: checking for working autoheader" >&5
|
echo "configure:949: checking for working autoheader" >&5
|
||||||
# Run test in a subshell; some versions of sh will print an error if
|
# Run test in a subshell; some versions of sh will print an error if
|
||||||
# an executable is not found, even if stderr is redirected.
|
# an executable is not found, even if stderr is redirected.
|
||||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||||
@ -943,7 +958,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
|
echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
|
||||||
echo "configure:947: checking for working makeinfo" >&5
|
echo "configure:962: checking for working makeinfo" >&5
|
||||||
# Run test in a subshell; some versions of sh will print an error if
|
# Run test in a subshell; some versions of sh will print an error if
|
||||||
# an executable is not found, even if stderr is redirected.
|
# an executable is not found, even if stderr is redirected.
|
||||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||||
@ -968,7 +983,7 @@ fi
|
|||||||
# Extract the first word of "gcc", so it can be a program name with args.
|
# Extract the first word of "gcc", so it can be a program name with args.
|
||||||
set dummy gcc; ac_word=$2
|
set dummy gcc; ac_word=$2
|
||||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||||
echo "configure:972: checking for $ac_word" >&5
|
echo "configure:987: checking for $ac_word" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -998,7 +1013,7 @@ if test -z "$CC"; then
|
|||||||
# Extract the first word of "cc", so it can be a program name with args.
|
# Extract the first word of "cc", so it can be a program name with args.
|
||||||
set dummy cc; ac_word=$2
|
set dummy cc; ac_word=$2
|
||||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||||
echo "configure:1002: checking for $ac_word" >&5
|
echo "configure:1017: checking for $ac_word" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -1047,7 +1062,7 @@ fi
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
|
echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
|
||||||
echo "configure:1051: checking whether we are using GNU C" >&5
|
echo "configure:1066: checking whether we are using GNU C" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -1056,7 +1071,7 @@ else
|
|||||||
yes;
|
yes;
|
||||||
#endif
|
#endif
|
||||||
EOF
|
EOF
|
||||||
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1060: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
|
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1075: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
|
||||||
ac_cv_prog_gcc=yes
|
ac_cv_prog_gcc=yes
|
||||||
else
|
else
|
||||||
ac_cv_prog_gcc=no
|
ac_cv_prog_gcc=no
|
||||||
@ -1071,7 +1086,7 @@ if test $ac_cv_prog_gcc = yes; then
|
|||||||
ac_save_CFLAGS="$CFLAGS"
|
ac_save_CFLAGS="$CFLAGS"
|
||||||
CFLAGS=
|
CFLAGS=
|
||||||
echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
|
echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
|
||||||
echo "configure:1075: checking whether ${CC-cc} accepts -g" >&5
|
echo "configure:1090: checking whether ${CC-cc} accepts -g" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -1104,7 +1119,7 @@ fi
|
|||||||
# NEWLIB_CONFIGURE, which doesn't work because that means that it will
|
# NEWLIB_CONFIGURE, which doesn't work because that means that it will
|
||||||
# be run before AC_CANONICAL_HOST.
|
# be run before AC_CANONICAL_HOST.
|
||||||
echo $ac_n "checking build system type""... $ac_c" 1>&6
|
echo $ac_n "checking build system type""... $ac_c" 1>&6
|
||||||
echo "configure:1108: checking build system type" >&5
|
echo "configure:1123: checking build system type" >&5
|
||||||
|
|
||||||
build_alias=$build
|
build_alias=$build
|
||||||
case "$build_alias" in
|
case "$build_alias" in
|
||||||
@ -1125,7 +1140,7 @@ echo "$ac_t""$build" 1>&6
|
|||||||
# Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args.
|
# Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args.
|
||||||
set dummy ${ac_tool_prefix}as; ac_word=$2
|
set dummy ${ac_tool_prefix}as; ac_word=$2
|
||||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||||
echo "configure:1129: checking for $ac_word" >&5
|
echo "configure:1144: checking for $ac_word" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -1157,7 +1172,7 @@ fi
|
|||||||
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
|
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
|
||||||
set dummy ${ac_tool_prefix}ar; ac_word=$2
|
set dummy ${ac_tool_prefix}ar; ac_word=$2
|
||||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||||
echo "configure:1161: checking for $ac_word" >&5
|
echo "configure:1176: checking for $ac_word" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -1189,7 +1204,7 @@ fi
|
|||||||
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
|
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
|
||||||
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
|
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
|
||||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||||
echo "configure:1193: checking for $ac_word" >&5
|
echo "configure:1208: checking for $ac_word" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -1221,7 +1236,7 @@ if test -n "$ac_tool_prefix"; then
|
|||||||
# Extract the first word of "ranlib", so it can be a program name with args.
|
# Extract the first word of "ranlib", so it can be a program name with args.
|
||||||
set dummy ranlib; ac_word=$2
|
set dummy ranlib; ac_word=$2
|
||||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||||
echo "configure:1225: checking for $ac_word" >&5
|
echo "configure:1240: checking for $ac_word" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -1266,7 +1281,7 @@ fi
|
|||||||
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
||||||
# ./install, which can be erroneously created by make from ./install.sh.
|
# ./install, which can be erroneously created by make from ./install.sh.
|
||||||
echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
|
echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
|
||||||
echo "configure:1270: checking for a BSD compatible install" >&5
|
echo "configure:1285: checking for a BSD compatible install" >&5
|
||||||
if test -z "$INSTALL"; then
|
if test -z "$INSTALL"; then
|
||||||
if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
@ -1320,7 +1335,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
|||||||
|
|
||||||
|
|
||||||
echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
|
echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
|
||||||
echo "configure:1324: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
echo "configure:1339: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
||||||
# Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
|
# Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
|
||||||
if test "${enable_maintainer_mode+set}" = set; then
|
if test "${enable_maintainer_mode+set}" = set; then
|
||||||
enableval="$enable_maintainer_mode"
|
enableval="$enable_maintainer_mode"
|
||||||
@ -1354,7 +1369,7 @@ if false; then
|
|||||||
|
|
||||||
|
|
||||||
echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
|
echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
|
||||||
echo "configure:1358: checking for executable suffix" >&5
|
echo "configure:1373: checking for executable suffix" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
@ -1364,7 +1379,7 @@ else
|
|||||||
rm -f conftest*
|
rm -f conftest*
|
||||||
echo 'int main () { return 0; }' > conftest.$ac_ext
|
echo 'int main () { return 0; }' > conftest.$ac_ext
|
||||||
ac_cv_exeext=
|
ac_cv_exeext=
|
||||||
if { (eval echo configure:1368: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
|
if { (eval echo configure:1383: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
|
||||||
for file in conftest.*; do
|
for file in conftest.*; do
|
||||||
case $file in
|
case $file in
|
||||||
*.c | *.o | *.obj | *.ilk | *.pdb) ;;
|
*.c | *.o | *.obj | *.ilk | *.pdb) ;;
|
||||||
@ -1405,6 +1420,22 @@ newlib_cflags="${newlib_cflags} -fno-builtin"
|
|||||||
NEWLIB_CFLAGS=${newlib_cflags}
|
NEWLIB_CFLAGS=${newlib_cflags}
|
||||||
|
|
||||||
|
|
||||||
|
LDFLAGS=${ldflags}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if test x${use_libtool} = xyes; then
|
||||||
|
USE_LIBTOOL_TRUE=
|
||||||
|
USE_LIBTOOL_FALSE='#'
|
||||||
|
else
|
||||||
|
USE_LIBTOOL_TRUE='#'
|
||||||
|
USE_LIBTOOL_FALSE=
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1585,6 +1616,11 @@ s%@MAINTAINER_MODE_FALSE@%$MAINTAINER_MODE_FALSE%g
|
|||||||
s%@MAINT@%$MAINT%g
|
s%@MAINT@%$MAINT%g
|
||||||
s%@EXEEXT@%$EXEEXT%g
|
s%@EXEEXT@%$EXEEXT%g
|
||||||
s%@NEWLIB_CFLAGS@%$NEWLIB_CFLAGS%g
|
s%@NEWLIB_CFLAGS@%$NEWLIB_CFLAGS%g
|
||||||
|
s%@USE_LIBTOOL_TRUE@%$USE_LIBTOOL_TRUE%g
|
||||||
|
s%@USE_LIBTOOL_FALSE@%$USE_LIBTOOL_FALSE%g
|
||||||
|
s%@oext@%$oext%g
|
||||||
|
s%@aext@%$aext%g
|
||||||
|
s%@libm_machine_dir@%$libm_machine_dir%g
|
||||||
s%@machine_dir@%$machine_dir%g
|
s%@machine_dir@%$machine_dir%g
|
||||||
s%@sys_dir@%$sys_dir%g
|
s%@sys_dir@%$sys_dir%g
|
||||||
|
|
||||||
@ -1595,7 +1631,7 @@ cat >> $CONFIG_STATUS <<\EOF
|
|||||||
|
|
||||||
# Split the substitutions into bite-sized pieces for seds with
|
# Split the substitutions into bite-sized pieces for seds with
|
||||||
# small command number limits, like on Digital OSF/1 and HP-UX.
|
# small command number limits, like on Digital OSF/1 and HP-UX.
|
||||||
ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
|
ac_max_sed_cmds=60 # Maximum number of lines to put in a sed script.
|
||||||
ac_file=1 # Number of current file.
|
ac_file=1 # Number of current file.
|
||||||
ac_beg=1 # First line for current file.
|
ac_beg=1 # First line for current file.
|
||||||
ac_end=$ac_max_sed_cmds # Line after last line for current file.
|
ac_end=$ac_max_sed_cmds # Line after last line for current file.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user