URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [configure.in] - Rev 310
Go to most recent revision | Compare with Previous | Blame | View Log
dnl This is the newlib/libc configure.in file.dnl Process this file with autoconf to produce a configure script.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(../..)dnl Support --enable-newlib-io-pos-args used by libc/stdioAC_ARG_ENABLE(newlib-io-pos-args,[ --enable-newlib-io-pos-args enable printf-family positional arg support],[case "${enableval}" inyes) newlib_io_pos_args=yes ;;no) newlib_io_pos_args=no ;;*) AC_MSG_ERROR(bad value ${enableval} for newlib-io-pos-args option) ;;esac], [newlib_io_pos_args=no])dnlNEWLIB_CONFIGURE(..)dnl We have to enable libtool after NEWLIB_CONFIGURE because if we try anddnl add it into NEWLIB_CONFIGURE, executable tests are made before the firstdnl line of the macro which fail because appropriate LDFLAGS are not set._LT_DECL_SEDif test "${use_libtool}" = "yes"; thenAC_LIBTOOL_WIN32_DLLAM_PROG_LIBTOOLfiAC_CONFIG_SUBDIRS(machine sys)CRT0=if test "x${have_crt0}" = "xyes"; thenCRT0=crt0.ofiAC_SUBST(CRT0)dnl For each directory which we may or may not want, we define a namednl for the library and an automake conditional for whether we shoulddnl build the library.LIBC_POSIX_LIB=if test -n "${posix_dir}"; thenif test "${use_libtool}" = "yes"; thenLIBC_POSIX_LIB=${posix_dir}/lib${posix_dir}.${aext}elseLIBC_POSIX_LIB=${posix_dir}/lib.${aext}fifiAC_SUBST(LIBC_POSIX_LIB)AM_CONDITIONAL(HAVE_POSIX_DIR, test x${posix_dir} != x)LIBC_SIGNAL_LIB=LIBC_SIGNAL_DEF=if test -n "${signal_dir}"; thenif test "${use_libtool}" = "yes"; thenLIBC_SIGNAL_LIB=${signal_dir}/lib${signal_dir}.${aext}elseLIBC_SIGNAL_LIB=${signal_dir}/lib.${aext}fiLIBC_SIGNAL_DEF=${signal_dir}/stmp-deffiAC_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}"; thenif test "${use_libtool}" = "yes"; thenLIBC_STDIO_LIB=${stdio_dir}/lib${stdio_dir}.${aext}elseLIBC_STDIO_LIB=${stdio_dir}/lib.${aext}fiLIBC_STDIO_DEF=${stdio_dir}/stmp-deffiAC_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}"; thenif test "${use_libtool}" = "yes"; thenLIBC_STDIO64_LIB=${stdio64_dir}/lib${stdio64_dir}.${aext}elseLIBC_STDIO64_LIB=${stdio64_dir}/lib.${aext}fiLIBC_STDIO64_DEF=${stdio64_dir}/stmp-deffiAC_SUBST(LIBC_STDIO64_LIB)AC_SUBST(LIBC_STDIO64_DEF)AM_CONDITIONAL(HAVE_STDIO64_DIR, test x${stdio64_dir} != x)LIBC_SYSCALL_LIB=if test -n "${syscall_dir}"; thenif test "${use_libtool}" = "yes"; thenLIBC_SYSCALL_LIB=${syscall_dir}/lib${syscall_dir}.${aext}elseLIBC_SYSCALL_LIB=${syscall_dir}/lib.${aext}fifiAC_SUBST(LIBC_SYSCALL_LIB)AM_CONDITIONAL(HAVE_SYSCALL_DIR, test x${syscall_dir} != x)LIBC_UNIX_LIB=if test -n "${unix_dir}"; thenif test "${use_libtool}" = "yes"; thenLIBC_UNIX_LIB=${unix_dir}/lib${unix_dir}.${aext}elseLIBC_UNIX_LIB=${unix_dir}/lib.${aext}fifiAC_SUBST(LIBC_UNIX_LIB)AM_CONDITIONAL(HAVE_UNIX_DIR, test x${unix_dir} != x)LIBC_EXTRA_LIB=LIBC_EXTRA_DEF=extra_dir=AC_SUBST(LIBC_EXTRA_LIB)AC_SUBST(LIBC_EXTRA_DEF)AC_SUBST(extra_dir)dnl We always recur into sys and machine, and let them decide what todnl do. However, we do need to know whether they will produce a library.LIBC_SYS_LIB=if test -n "${sys_dir}"; thenif test "${use_libtool}" = "yes"; thenLIBC_SYS_LIB=sys/${sys_dir}/lib${sys_dir}.${aext}elseLIBC_SYS_LIB=sys/lib.${aext}fifiAC_SUBST(LIBC_SYS_LIB)AC_SUBST(sys_dir)dnl iconv library will be compiled if --enable-newlib-iconv option is enabledAM_CONDITIONAL(ENABLE_NEWLIB_ICONV, test x${newlib_iconv} != x)if test -n "${machine_dir}"; thenif test "${use_libtool}" = "yes"; thenLIBC_MACHINE_LIB=machine/${machine_dir}/lib${machine_dir}.${aext}elseLIBC_MACHINE_LIB=machine/lib.${aext}fifiAC_SUBST(LIBC_MACHINE_LIB)AC_SUBST(machine_dir)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
Go to most recent revision | Compare with Previous | Blame | View Log
