18c04407bf
* Makefile.tpl ($(srcdir)/configure): Update dependencies. * Makefile.in: Regenerate. * configure: Regenerate. config/ * override.m4: Use m4_version_prereq throughout. (_AC_ARG_VAR_VALIDATE, AC_MSG_FAILURE): Backport from git Autoconf: output pwd along with fatal errors, so the right config.log file is hinted at more prominently. (PARSE_ARGS): Push setting of ac_pwd in this diversion. (_GCC_AUTOCONF_VERSION): New, define to 2.59 if not defined. (_GCC_AUTOCONF_VERSION_CHECK): New macro, require use of Autoconf version _GCC_AUTOCONF_VERSION throughout the tree. (m4_wrap): New override, fix for Posix semantics of m4wrap. libgcc/ * configure.ac: sinclude override.m4. * configure: Regenerate. gnattools/ * configure.ac: move sinclude of acx.m4 before AC_INIT, also sinclude override.m4. * Makefile.in ($(srcdir)/configure): Update dependencies. * configure: Regenerate. libada/ * configure.ac: move sinclude of acx.m4 before AC_INIT, also sinclude override.m4. * Makefile.in ($(srcdir)/configure): Update dependencies. * configure: Regenerate. intl/ * configure: Regenerate. libiberty/ * configure: Regenerate. boehm-gc/ * Makefile.in: Regenerate. * configure: Regenerate. * include/Makefile.in: Regenerate. * include/gc_config.h.in: Regenerate. fixincludes/ * configure: Regenerate. gcc/ * configure: Regenerate. libcpp/ * Makefile.in ($(srcdir)/aclocal.m4): Update dependencies. * configure: Regenerate. libdecnumber/ * Makefile.in ($(srcdir)/aclocal.m4): Update dependencies. * configure: Regenerate. libffi/ * configure: Regenerate. * include/Makefile.in: Regenerate. * testsuite/Makefile.in: Regenerate. libgfortran/ * configure: Regenerate. libgomp/ * configure: Regenerate. libjava/classpath/ * Makefile.in: Regenerate. * configure: Regenerate. * doc/Makefile.in: Regenerate. * doc/api/Makefile.in: Regenerate. * examples/Makefile.in: Regenerate. * external/Makefile.in: Regenerate. * external/jsr166/Makefile.in: Regenerate. * external/relaxngDatatype/Makefile.in: Regenerate. * external/sax/Makefile.in: Regenerate. * external/w3c_dom/Makefile.in: Regenerate. * include/Makefile.in: Regenerate. * lib/Makefile.in: Regenerate. * native/Makefile.in: Regenerate. * native/fdlibm/Makefile.in: Regenerate. * native/jawt/Makefile.in: Regenerate. * native/jni/Makefile.in: Regenerate. * native/jni/classpath/Makefile.in: Regenerate. * native/jni/gconf-peer/Makefile.in: Regenerate. * native/jni/gstreamer-peer/Makefile.in: Regenerate. * native/jni/gtk-peer/Makefile.in: Regenerate. * native/jni/java-io/Makefile.in: Regenerate. * native/jni/java-lang/Makefile.in: Regenerate. * native/jni/java-net/Makefile.in: Regenerate. * native/jni/java-nio/Makefile.in: Regenerate. * native/jni/java-util/Makefile.in: Regenerate. * native/jni/midi-alsa/Makefile.in: Regenerate. * native/jni/midi-dssi/Makefile.in: Regenerate. * native/jni/native-lib/Makefile.in: Regenerate. * native/jni/qt-peer/Makefile.in: Regenerate. * native/jni/xmlj/Makefile.in: Regenerate. * native/plugin/Makefile.in: Regenerate. * resource/Makefile.in: Regenerate. * scripts/Makefile.in: Regenerate. * tools/Makefile.in: Regenerate. libjava/ * configure: Regenerate. * gcj/Makefile.in: Regenerate. * include/Makefile.in: Regenerate. * testsuite/Makefile.in: Regenerate. libjava/libltdl/ * Makefile.in: Regenerate. * configure: Regenerate. libmudflap/ * Makefile.in: Regenerate. * config.h.in: Regenerate. * configure: Regenerate. * testsuite/Makefile.in: Regenerate. libobjc/ * configure: Regenerate. libssp/ * Makefile.in: Regenerate. * config.h.in: Regenerate. * configure: Regenerate. libstdc++-v3/ * configure: Regenerate. zlib/ * Makefile.in: Regenerate. * configure: Regenerate. From-SVN: r136876
167 lines
4.7 KiB
Plaintext
167 lines
4.7 KiB
Plaintext
# Configure script for libada.
|
|
# Copyright 2003, 2004 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
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# 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.
|
|
|
|
sinclude(../config/acx.m4)
|
|
sinclude(../config/override.m4)
|
|
|
|
AC_INIT
|
|
AC_PREREQ([2.59])
|
|
|
|
AC_CONFIG_SRCDIR([Makefile.in])
|
|
|
|
# Command-line options.
|
|
# Very limited version of AC_MAINTAINER_MODE.
|
|
AC_ARG_ENABLE([maintainer-mode],
|
|
[AC_HELP_STRING([--enable-maintainer-mode],
|
|
[enable make rules and dependencies not useful (and
|
|
sometimes confusing) to the casual installer])],
|
|
[case ${enable_maintainer_mode} in
|
|
yes) MAINT='' ;;
|
|
no) MAINT='#' ;;
|
|
*) AC_MSG_ERROR([--enable-maintainer-mode must be yes or no]) ;;
|
|
esac
|
|
maintainer_mode=${enableval}],
|
|
[MAINT='#'])
|
|
AC_SUBST([MAINT])dnl
|
|
|
|
# Start of actual configure tests
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_CANONICAL_BUILD
|
|
AC_CANONICAL_HOST
|
|
AC_CANONICAL_TARGET
|
|
|
|
ACX_NONCANONICAL_TARGET
|
|
|
|
# Need to pass this down for now :-P
|
|
AC_PROG_LN_S
|
|
|
|
# Determine x_ada_cflags
|
|
case $host in
|
|
hppa*) x_ada_cflags=-mdisable-indexing ;;
|
|
*) x_ada_cflags= ;;
|
|
esac
|
|
AC_SUBST([x_ada_cflags])
|
|
|
|
# Determine what to build for 'gnattools'
|
|
if test $build = $target ; then
|
|
# Note that build=target is almost certainly the wrong test; FIXME
|
|
default_gnattools_target="gnattools-native"
|
|
else
|
|
default_gnattools_target="gnattools-cross"
|
|
fi
|
|
AC_SUBST([default_gnattools_target])
|
|
|
|
# Target-specific stuff (defaults)
|
|
TOOLS_TARGET_PAIRS=
|
|
AC_SUBST(TOOLS_TARGET_PAIRS)
|
|
EXTRA_GNATTOOLS=
|
|
AC_SUBST(EXTRA_GNATTOOLS)
|
|
|
|
# Per-target case statement
|
|
# -------------------------
|
|
case "${target}" in
|
|
alpha*-dec-vx*) # Unlike all other Vxworks
|
|
;;
|
|
m68k*-wrs-vx* \
|
|
| powerpc*-wrs-vxworks \
|
|
| sparc*-wrs-vx* \
|
|
| *86-wrs-vxworks \
|
|
| mips*-wrs-vx*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-vxworks.adb"
|
|
;;
|
|
sparc-sun-solaris*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-solaris.adb"
|
|
;;
|
|
*86-*-solaris2*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-solaris.adb"
|
|
;;
|
|
*86-*-linux* \
|
|
| powerpc*-*-linux* \
|
|
| *ia64-*-linux* \
|
|
| alpha*-*-linux* \
|
|
| sparc*-*-linux* \
|
|
| hppa*-*-linux* \
|
|
| *x86_64-*-linux*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-linux.adb \
|
|
indepsw.adb<indepsw-gnu.adb"
|
|
;;
|
|
s390*-*-linux*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-linux.adb"
|
|
;;
|
|
*86-*-freebsd*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-linux.adb \
|
|
indepsw.adb<indepsw-gnu.adb"
|
|
;;
|
|
mips-sgi-irix*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-irix.adb"
|
|
;;
|
|
hppa*-hp-hpux10*) # Unlike hpux11
|
|
;;
|
|
hppa*-hp-hpux11*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-hpux.adb"
|
|
;;
|
|
*-ibm-aix*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-aix.adb \
|
|
indepsw.adb<indepsw-aix.adb"
|
|
;;
|
|
alpha*-dec-osf*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-tru64.adb"
|
|
;;
|
|
alpha*-dec-vms* | alpha*-dec-openvms* | alpha*-dec-vms* \
|
|
| alpha*-hp-vms* | alpha*-hp-openvms* | alpha*-hp-vms*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-vms-alpha.adb \
|
|
symbols.adb<symbols-vms.adb \
|
|
symbols-processing.adb<symbols-processing-vms-alpha.adb"
|
|
|
|
EXTRA_GNATTOOLS='../../gnatlbr$(exeext) ../../gnatsym$(exeext)'
|
|
;;
|
|
ia64*-dec-vms* | ia64*-dec-openvms* | ia64*-dec-vms* \
|
|
| ia64*-hp-vms* | ia64*-hp-openvms* | ia64*-hp-vms*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-vms-ia64.adb \
|
|
symbols.adb<symbols-vms.adb \
|
|
symbols-processing.adb<symbols-processing-vms-ia64.adb"
|
|
|
|
EXTRA_GNATTOOLS='../../gnatlbr$(exeext) ../../gnatsym$(exeext)'
|
|
;;
|
|
*-*-cygwin32* | *-*-mingw32* | *-*-pe)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-mingw.adb \
|
|
indepsw.adb<indepsw-mingw.adb"
|
|
EXTRA_GNATTOOLS='../../gnatdll$(exeext)'
|
|
;;
|
|
powerpc-*-darwin* | *86-*-darwin*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-darwin.adb"
|
|
;;
|
|
*-*-lynxos)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-lynxos.adb \
|
|
indepsw.adb<indepsw-gnu.adb"
|
|
;;
|
|
esac
|
|
|
|
# Output: create a Makefile.
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|