X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=newlib%2Flibc%2Fconfigure.in;h=1a42c13239ec4d9c73f3235fc7e157e50a9436fe;hb=e2fb05ecb29e75bf62dfcac5c74d92783cc3322b;hp=069f7657c5cf57af1b6a234b58feb8ce1000b72f;hpb=8db558b0f17daac9511f7fbe2269a736fd5cd000;p=pf3gnuchains%2Fpf3gnuchains4x.git diff --git a/newlib/libc/configure.in b/newlib/libc/configure.in index 069f7657c5..1a42c13239 100644 --- a/newlib/libc/configure.in +++ b/newlib/libc/configure.in @@ -1,8 +1,9 @@ dnl This is the newlib/libc configure.in file. dnl Process this file with autoconf to produce a configure script. -AC_PREREQ(2.5) -AC_INIT(sys.tex) +AC_PREREQ(2.59) +AC_INIT([newlib],[NEWLIB_VERSION]) +AC_CONFIG_SRCDIR([sys.tex]) dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake. AC_CONFIG_AUX_DIR(../..) @@ -21,7 +22,7 @@ NEWLIB_CONFIGURE(..) dnl We have to enable libtool after NEWLIB_CONFIGURE because if we try and dnl add it into NEWLIB_CONFIGURE, executable tests are made before the first dnl line of the macro which fail because appropriate LDFLAGS are not set. - +_LT_DECL_SED if test "${use_libtool}" = "yes"; then AC_LIBTOOL_WIN32_DLL AM_PROG_LIBTOOL @@ -30,7 +31,7 @@ fi AC_CONFIG_SUBDIRS(machine sys) CRT0= -if test x${sys_dir} != xcygwin && test -n "${sys_dir}"; then +if test "x${have_crt0}" = "xyes"; then CRT0=crt0.o fi AC_SUBST(CRT0) @@ -64,6 +65,20 @@ AC_SUBST(LIBC_SIGNAL_LIB) AC_SUBST(LIBC_SIGNAL_DEF) AM_CONDITIONAL(HAVE_SIGNAL_DIR, test x${signal_dir} != x) +LIBC_STDIO_LIB= +LIBC_STDIO_DEF= +if test -n "${stdio_dir}"; then + if test "${use_libtool}" = "yes"; then + LIBC_STDIO_LIB=${stdio_dir}/lib${stdio_dir}.${aext} + else + LIBC_STDIO_LIB=${stdio_dir}/lib.${aext} + fi + LIBC_STDIO_DEF=${stdio_dir}/stmp-def +fi +AC_SUBST(LIBC_STDIO_LIB) +AC_SUBST(LIBC_STDIO_DEF) +AM_CONDITIONAL(HAVE_STDIO_DIR, test x${stdio_dir} != x) + LIBC_STDIO64_LIB= LIBC_STDIO64_DEF= if test -n "${stdio64_dir}"; then @@ -135,4 +150,5 @@ fi AC_SUBST(LIBC_MACHINE_LIB) AC_SUBST(machine_dir) -AC_OUTPUT(Makefile argz/Makefile ctype/Makefile errno/Makefile locale/Makefile misc/Makefile reent/Makefile search/Makefile stdio/Makefile stdio64/Makefile stdlib/Makefile string/Makefile time/Makefile posix/Makefile signal/Makefile syscalls/Makefile unix/Makefile iconv/Makefile iconv/ces/Makefile iconv/ccs/Makefile iconv/ccs/binary/Makefile iconv/lib/Makefile) +AC_CONFIG_FILES([Makefile argz/Makefile ctype/Makefile errno/Makefile locale/Makefile misc/Makefile reent/Makefile search/Makefile stdio/Makefile stdio64/Makefile stdlib/Makefile string/Makefile time/Makefile posix/Makefile signal/Makefile syscalls/Makefile unix/Makefile iconv/Makefile iconv/ces/Makefile iconv/ccs/Makefile iconv/ccs/binary/Makefile iconv/lib/Makefile]) +AC_OUTPUT