aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2010-05-24 20:18:00 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2010-05-24 20:18:00 +0000
commit96ee6e0819ff6061a4a54791e139e67eddc3d46b (patch)
tree4515a27dd3454de865636b085dc1757ab873deed
parent0c422e74339e763aef23bfd0f8cd7d99ab9144bf (diff)
downloadgcc-96ee6e0819ff6061a4a54791e139e67eddc3d46b.zip
gcc-96ee6e0819ff6061a4a54791e139e67eddc3d46b.tar.gz
gcc-96ee6e0819ff6061a4a54791e139e67eddc3d46b.tar.bz2
configure.ac (all_lang_makefiles): Remove everything related to it.
* configure.ac (all_lang_makefiles): Remove everything related to it. * configure: Regenerate. * Makefile.in: Fix reference to ada Make-lang.in. Remove support for LANG_MAKEFILES. From-SVN: r159795
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/Makefile.in3
-rwxr-xr-xgcc/configure11
-rw-r--r--gcc/configure.ac6
4 files changed, 10 insertions, 17 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8806178..2ca56d1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2010-05-24 Steven Bosscher <steven@gcc.gnu.org>
+
+ * configure.ac (all_lang_makefiles): Remove everything related to it.
+ * configure: Regenerate.
+ * Makefile.in: Fix reference to ada Make-lang.in.
+ Remove support for LANG_MAKEFILES.
+
2010-05-24 Joseph Myers <joseph@codesourcery.com>
* diagnostic.c: Don't include flags.h.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index ef7a324..8f44881 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1020,7 +1020,7 @@ BACKENDLIBS = $(CLOOGLIBS) $(PPLLIBS) $(GMPLIBS) $(PLUGINLIBS) $(HOST_LIBS) \
# Any system libraries needed just for GNAT.
SYSLIBS = @GNAT_LIBEXC@
-# Used from ada/Make-lang.in
+# Used from ada/gcc-interface/Make-lang.in
GNATBIND = @GNATBIND@
GNATMAKE = @GNATMAKE@
@@ -1055,7 +1055,6 @@ INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
# C can be supported this way too (leave for later).
LANG_MAKEFRAGS = @all_lang_makefrags@
-LANG_MAKEFILES = @all_lang_makefiles@
# Flags to pass to recursive makes.
# CC is set by configure.
diff --git a/gcc/configure b/gcc/configure
index 8013a15..9fce3a9 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -662,7 +662,6 @@ build_install_headers_dir
build_exeext
all_selected_languages
all_languages
-all_lang_makefiles
all_lang_makefrags
all_gtfiles
all_compilers
@@ -17108,7 +17107,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 17111 "configure"
+#line 17110 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -17214,7 +17213,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 17217 "configure"
+#line 17216 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -25127,8 +25126,6 @@ all_compilers=
all_outputs='Makefile gccbug'
# List of language makefile fragments.
all_lang_makefrags=
-# List of language subdirectory makefiles. Deprecated.
-all_lang_makefiles=
# Additional files for gengtype
all_gtfiles="$target_gtfiles"
@@ -25220,9 +25217,6 @@ do
if test -f $srcdir/$gcc_subdir/$subdir-tree.def; then
lang_tree_files="$lang_tree_files $srcdir/$gcc_subdir/$subdir-tree.def"
fi
- if test -f ${srcdir}/$gcc_subdir/Makefile.in
- then all_lang_makefiles="$gcc_subdir/Makefile"
- fi
all_languages="$all_languages $language"
all_compilers="$all_compilers $compilers"
all_outputs="$all_outputs $outputs"
@@ -25390,7 +25384,6 @@ fi
-
# Echo link setup.
if test x${build} = x${host} ; then
if test x${host} = x${target} ; then
diff --git a/gcc/configure.ac b/gcc/configure.ac
index a80900c..fdb0d30 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -4232,8 +4232,6 @@ all_compilers=
all_outputs='Makefile gccbug'
# List of language makefile fragments.
all_lang_makefrags=
-# List of language subdirectory makefiles. Deprecated.
-all_lang_makefiles=
# Additional files for gengtype
all_gtfiles="$target_gtfiles"
@@ -4327,9 +4325,6 @@ changequote([,])dnl
if test -f $srcdir/$gcc_subdir/$subdir-tree.def; then
lang_tree_files="$lang_tree_files $srcdir/$gcc_subdir/$subdir-tree.def"
fi
- if test -f ${srcdir}/$gcc_subdir/Makefile.in
- then all_lang_makefiles="$gcc_subdir/Makefile"
- fi
all_languages="$all_languages $language"
all_compilers="$all_compilers $compilers"
all_outputs="$all_outputs $outputs"
@@ -4435,7 +4430,6 @@ AC_SUBST(srcdir)
AC_SUBST(all_compilers)
AC_SUBST(all_gtfiles)
AC_SUBST(all_lang_makefrags)
-AC_SUBST(all_lang_makefiles)
AC_SUBST(all_languages)
AC_SUBST(all_selected_languages)
AC_SUBST(build_exeext)