This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[boehm-gc] Cleanup aclocal.m4 generation [2/2]


This patch adds in an ACLOCAL_AMFLAGS to boehm-gc's Makefile.am.

This then allows you to get rid of all sincludes in configure.ac and acinclude.m4. Actually, comments and sincludes were all that were previously within acinclude.m4, so the file can be deleted.

Regenerated with autoreconf. Generated configure and Makefile.ins are functionally indentical.

OK to install?
Kelley Cook

2004-09-27  Kelley Cook  <kcook@gcc.gnu.org>

	* Makefile.am: Define ACLOCAL_AMFLAGS.
	* configure.ac: Remove redundant sinclude.
	* acinclude.m4: Delete file.
	* aclocal.m4: Regenerate.
	* Makefile.in, include/Makefile.in: Regenerate.
	* configure: Regenerate.

diff -wprud ../../gcc-orig/boehm-gc/Makefile.am ./Makefile.am
--- ../../gcc-orig/boehm-gc/Makefile.am	2004-06-20 05:14:17.000000000 -0400
+++ ./Makefile.am	2004-09-27 11:30:58.748504200 -0400
@@ -5,6 +5,7 @@
 ## Makefile.am.
 
 AUTOMAKE_OPTIONS = cygnus subdir-objects
+ACLOCAL_AMFLAGS = -I .. -I ../config
 
 SUBDIRS = include
 
diff -wprud ../../gcc-orig/boehm-gc/configure.ac ./configure.ac
--- ../../gcc-orig/boehm-gc/configure.ac	2004-08-27 20:41:39.000000000 -0400
+++ ./configure.ac	2004-09-27 13:07:21.177014000 -0400
@@ -39,7 +39,6 @@ AC_SUBST(mkinstalldirs)
 AM_INIT_AUTOMAKE(gc, 6.3, no-define)
 
 # The autoconf 2.5x version of the no-executables hack.
-sinclude(../config/no-executables.m4)
 GCC_NO_EXECUTABLES
 
 # Yak.  We must force CC and CXX to /not/ be precious variables; otherwise

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]