X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libada%2Fconfigure.ac;h=1e3760cbe4c83f6557a7c824d6560d05e22fdc61;hb=b2d8433575723eb24f38e7491ae17d544e0848b8;hp=a2668125d8eb73534c508fafd3221b15148a51b3;hpb=5b2c75537d0bd3116dbb67aa7b60f13605a61e14;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libada/configure.ac b/libada/configure.ac index a2668125d8e..1e3760cbe4c 100644 --- a/libada/configure.ac +++ b/libada/configure.ac @@ -1,9 +1,9 @@ # Configure script for libada. -# Copyright 2003, 2004 Free Software Foundation, Inc. +# Copyright 2003, 2004, 2009, 2011 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but @@ -12,14 +12,17 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# along with this program; see the file COPYING3. If not see +# . sinclude(../config/acx.m4) +sinclude(../config/multi.m4) sinclude(../config/override.m4) +sinclude(../config/picflag.m4) +sinclude(../config/unwind_ipinfo.m4) AC_INIT -AC_PREREQ([2.59]) +AC_PREREQ([2.64]) AC_CONFIG_SRCDIR([Makefile.in]) @@ -27,6 +30,7 @@ AC_CONFIG_SRCDIR([Makefile.in]) AC_CANONICAL_BUILD AC_CANONICAL_HOST AC_CANONICAL_TARGET +target_alias=${target_alias-$host_alias} # Determine the noncanonical target name, for directory use. ACX_NONCANONICAL_TARGET @@ -49,6 +53,51 @@ AC_ARG_ENABLE([maintainer-mode], [MAINT='#']) AC_SUBST([MAINT])dnl +AM_ENABLE_MULTILIB(, ..) +# Calculate toolexeclibdir +# Also toolexecdir, though it's only used in toolexeclibdir +case ${enable_version_specific_runtime_libs} in + yes) + # Need the gcc compiler version to know where to install libraries + # and header files if --enable-version-specific-runtime-libs option + # is selected. + toolexecdir='$(libdir)/gcc/$(target_alias)' + toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)' + ;; + no) + if test -n "$with_cross_host" && + test x"$with_cross_host" != x"no"; then + # Install a library built with a cross compiler in tooldir, not libdir. + toolexecdir='$(exec_prefix)/$(target_alias)' + toolexeclibdir='$(toolexecdir)/lib' + else + toolexecdir='$(libdir)/gcc-lib/$(target_alias)' + toolexeclibdir='$(libdir)' + fi + multi_os_directory=`$CC -print-multi-os-directory` + case $multi_os_directory in + .) ;; # Avoid trailing /. + *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;; + esac + ;; +esac +AC_SUBST(toolexecdir) +AC_SUBST(toolexeclibdir) +#TODO: toolexeclibdir is currently disregarded + +# Check the compiler. +# The same as in boehm-gc and libstdc++. Have to borrow it from there. +# We must force CC to /not/ be precious variables; otherwise +# the wrong, non-multilib-adjusted value will be used in multilibs. +# As a side effect, we have to subst CFLAGS ourselves. + +m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS]) +m4_define([_AC_ARG_VAR_PRECIOUS],[]) +AC_PROG_CC +m4_rename_force([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS]) + +AC_SUBST(CFLAGS) + AC_ARG_ENABLE([shared], [AC_HELP_STRING([--disable-shared], [don't provide a shared libgnat])], @@ -70,15 +119,12 @@ esac ], [enable_shared=yes]) AC_SUBST([enable_shared]) -# Need to pass this down for now :-P -AC_PROG_LN_S +GCC_PICFLAG +AC_SUBST([PICFLAG]) -# Determine x_ada_cflags -case $host in - hppa*) x_ada_cflags=-mdisable-indexing ;; - *) x_ada_cflags= ;; -esac -AC_SUBST([x_ada_cflags]) +# These must be passed down, or are needed by gcc/libgcc.mvars +AC_PROG_AWK +AC_PROG_LN_S # Determine what to build for 'gnatlib' if test $build = $target \ @@ -90,6 +136,14 @@ else fi AC_SUBST([default_gnatlib_target]) +# Check for _Unwind_GetIPInfo +GCC_CHECK_UNWIND_GETIPINFO +have_getipinfo= +if test x$have_unwind_getipinfo = xyes; then + have_getipinfo=-DHAVE_GETIPINFO +fi +AC_SUBST(have_getipinfo) + # Output: create a Makefile. AC_CONFIG_FILES([Makefile])