This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


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

(patch) tiny config patches


tiny patches to (1) enable gprof build for both Cygwin and Mingw, (2) 
fix .gdbinit -> @GDBINIT@ in gas/Makefile.am.  Note that I have not 
included the rebuilt gas/Makefile.in and gas/doc/Makefile.in files. 

Now I have the motivation to finish the GCC profiling support for Mingw,
borrowed shamelessly from the Cygwin port ... 

Diffs against 1999-08-08 CVS.

toplevel/ChangeLog:
1999-08-08  Mumit Khan  <khan@xraylith.wisc.edu>

	* configure.in (i[3456]-*-mingw32*): Enable gprof.
	(*-*-cygwin*): Likewise.

gas/ChangeLog:
1999-08-08  Mumit Khan  <khan@xraylith.wisc.edu>

	* Makefile.in (noinst_SCRIPTS): Use @GDBINIT@ instead of .gdbinit.

Index: configure.in
===================================================================
RCS file: /homes/khan/src/CVSROOT/binutils/configure.in,v
retrieving revision 1.1.1.1
diff -u -3 -p -r1.1.1.1 configure.in
--- configure.in	1999/08/06 21:32:37	1.1.1.1
+++ configure.in	1999/08/08 21:45:53
@@ -523,13 +523,13 @@ case "${host}" in
 	;;
   i[3456]86-*-mingw32*)
     # noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv"
-     noconfigdirs="expect dejagnu cvs autoconf automake send-pr gprof rcs guile perl texinfo apache inet libtool"
+     noconfigdirs="expect dejagnu cvs autoconf automake send-pr rcs guile perl texinfo apache inet libtool"
 	;;
   i[3456]86-*-beos*)
      noconfigdirs="$noconfigdirs tk itcl tix libgui gdb"
      ;;
   *-*-cygwin*)
-     noconfigdirs="autoconf automake send-pr gprof rcs guile perl texinfo apache inet"
+     noconfigdirs="autoconf automake send-pr rcs guile perl texinfo apache inet"
     ;;
   *-*-netbsd*)
     noconfigdirs="rcs"
Index: gas/Makefile.am
===================================================================
RCS file: /homes/khan/src/CVSROOT/binutils/gas/Makefile.am,v
retrieving revision 1.1.1.2
diff -u -3 -p -r1.1.1.2 Makefile.am
--- gas/Makefile.am	1999/08/08 21:28:36	1.1.1.2
+++ gas/Makefile.am	1999/08/08 21:43:52
@@ -369,7 +369,7 @@ po/POTFILES.in: @MAINT@ Makefile
 	  && mv tmp $(srcdir)/po/POTFILES.in
 
 noinst_PROGRAMS = as-new gasp-new
-noinst_SCRIPTS = .gdbinit
+noinst_SCRIPTS = @GDBINIT@
 
 $(srcdir)/make-gas.com: stamp-mk.com
 stamp-mk.com: vmsconf.sh Makefile

Regards,
Mumit


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