This is the mail archive of the gdb@sourceware.org mailing list for the GDB 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]

rda configury update


The idea of this patch is to wean rda off its local copy of libtool.m4
(in aclocal.m4 files), and instead use the top level libtool.  That
way rda gets fixes as they become available rather than having to wait
for a libtool release.

aclocal.m4, Makfile.in, configure, config.in regenerated with
automake-1.11.1 and autoconf-2.64 for consistency with gcc and
binutils.  OK to apply?

rda/
	* Makefile.in, aclocal.m4, config.in, configure: Regenerate.
	* lib/Makefile.in, qe/Makefile.in, samples/Makefile.in: Regenerate.
rda/unix/
	* Makefile.am (ACLOCAL_AMFLAGS): Define.
	* Makefile.in, aclocal.m4, config.in, configure: Regenerate.
rda/win32/
	* Makefile.am (ACLOCAL_AMFLAGS): Define.
	* configure.in (WIN32_TARGET): Add description.
	* Makefile.in, aclocal.m4, configure: Regenerate.

Index: rda/unix/Makefile.am
===================================================================
RCS file: /cvs/src/src/rda/unix/Makefile.am,v
retrieving revision 1.5
diff -u -p -r1.5 Makefile.am
--- rda/unix/Makefile.am	7 Dec 2005 17:51:47 -0000	1.5
+++ rda/unix/Makefile.am	23 Sep 2013 05:27:14 -0000
@@ -1,6 +1,7 @@
 ## Process this with automake to create Makefile.in
 
 AUTOMAKE_OPTIONS = foreign
+ACLOCAL_AMFLAGS = -I ../..
 
 AM_CFLAGS = -Wall
 
Index: rda/win32/Makefile.am
===================================================================
RCS file: /cvs/src/src/rda/win32/Makefile.am,v
retrieving revision 1.1
diff -u -p -r1.1 Makefile.am
--- rda/win32/Makefile.am	28 Aug 2002 01:22:29 -0000	1.1
+++ rda/win32/Makefile.am	23 Sep 2013 05:27:14 -0000
@@ -1,6 +1,7 @@
 ## Process this with automake to create Makefile.in
 
 AUTOMAKE_OPTIONS = foreign
+ACLOCAL_AMFLAGS = -I ../..
 
 noinst_PROGRAMS = server
 
Index: rda/win32/configure.in
===================================================================
RCS file: /cvs/src/src/rda/win32/configure.in,v
retrieving revision 1.2
diff -u -p -r1.2 configure.in
--- rda/win32/configure.in	10 Dec 2004 19:22:26 -0000	1.2
+++ rda/win32/configure.in	23 Sep 2013 05:27:15 -0000
@@ -24,7 +24,7 @@ AC_SUBST(TARGET_MODULES)
 case "$target" in
   *cygwin*)
     dnl FIXME: differentiate between flavors of Solaris!
-    AC_DEFINE(WIN32_TARGET)
+    AC_DEFINE([WIN32_TARGET], [], [Define to 1 for win32])
     ;;
 esac
 

-- 
Alan Modra
Australia Development Lab, IBM


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