This is the mail archive of the gdb-patches@sources.redhat.com 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]

[patch] eliminate separate reference to tcl8.1, tk8.1


There seems to no longer be any reason to deal with a 'tcl8.1' distinct from
'tcl', or a 'tk8.1' distinct from 'tk'.

2002-05-19  Nathanael Nerode  <neroden@twcny.rr.com>
	* Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
	* configure.in: Eliminate version-specific references to tcl8.1, tk8.1.

Index: Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/Makefile.in,v
retrieving revision 1.100
diff -c -3 -r1.100 Makefile.in
*** Makefile.in	16 May 2002 17:41:52 -0000	1.100
--- Makefile.in	19 May 2002 16:47:48 -0000
***************
*** 580,586 ****
  	all-snavigator \
  	all-tar \
  	all-tcl \
- 	all-tcl8.1 \
  	all-texinfo \
  	all-textutils \
  	all-tgas \
--- 580,585 ----
***************
*** 712,718 ****
  	install-intl \
  	install-ispell \
  	install-tcl \
- 	install-tcl8.1 \
  	install-itcl \
  	install-ld \
  	install-libgui \
--- 711,716 ----
***************
*** 752,758 ****
  	all-guile \
  	all-tclX \
  	all-tk \
- 	all-tk8.1 \
  	all-tix
  
  # This is a list of the check targets for all of the modules which are
--- 750,755 ----
***************
*** 776,782 ****
  	install-expect \
  	install-tclX \
  	install-tk \
- 	install-tk8.1 \
  	install-tix
  
  # This is a list of the targets for all of the modules which are compiled
--- 773,778 ----
***************
*** 1755,1765 ****
  all-inet: all-tcl all-send-pr all-perl
  all-intl:
  all-ispell: all-emacs19
! all-itcl: all-tcl all-tk all-tcl8.1 all-tk8.1
  all-ld: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex all-intl
  configure-target-libgloss: $(ALL_GCC)
  all-target-libgloss: configure-target-libgloss configure-target-newlib
! all-libgui: all-tcl all-tk all-tcl8.1 all-tk8.1 all-itcl
  all-libiberty:
  
  all-build-libiberty: configure-build-libiberty
--- 1751,1761 ----
  all-inet: all-tcl all-send-pr all-perl
  all-intl:
  all-ispell: all-emacs19
! all-itcl: all-tcl all-tk
  all-ld: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex all-intl
  configure-target-libgloss: $(ALL_GCC)
  all-target-libgloss: configure-target-libgloss configure-target-newlib
! all-libgui: all-tcl all-tk all-itcl
  all-libiberty:
  
  all-build-libiberty: configure-build-libiberty
***************
*** 1803,1817 ****
  all-snavigator: all-tcl all-tk all-itcl all-tix all-db all-grep all-libgui
  all-tar: all-libiberty
  all-tcl:
- all-tcl8.1:
  all-tclX: all-tcl all-tk
  all-tk: all-tcl
- all-tk8.1: all-tcl8.1
  all-texinfo: all-libiberty
  all-textutils:
  all-tgas: all-libiberty all-bfd all-opcodes
  all-time:
! all-tix: all-tcl all-tk all-tcl8.1 all-tk8.1
  all-wdiff:
  configure-target-winsup: $(ALL_GCC_C)
  all-target-winsup: all-target-libiberty all-target-libtermcap configure-target-winsup
--- 1799,1811 ----
  all-snavigator: all-tcl all-tk all-itcl all-tix all-db all-grep all-libgui
  all-tar: all-libiberty
  all-tcl:
  all-tclX: all-tcl all-tk
  all-tk: all-tcl
  all-texinfo: all-libiberty
  all-textutils:
  all-tgas: all-libiberty all-bfd all-opcodes
  all-time:
! all-tix: all-tcl all-tk
  all-wdiff:
  configure-target-winsup: $(ALL_GCC_C)
  all-target-winsup: all-target-libiberty all-target-libtermcap configure-target-winsup
Index: configure.in
===================================================================
RCS file: /cvsroot/gcc/gcc/configure.in,v
retrieving revision 1.149
diff -c -3 -r1.149 configure.in
*** configure.in	16 May 2002 17:41:52 -0000	1.149
--- configure.in	19 May 2002 16:47:50 -0000
***************
*** 42,48 ****
  
  # these libraries are used by various programs built for the host environment
  #
! host_libs="intl mmalloc libiberty opcodes bfd readline db tcl tk tcl8.1 tk8.1 tclX itcl tix libgui zlib"
  
  libstdcxx_version="target-libstdc++-v3"
  # Don't use libstdc++-v3's flags to configure/build itself.
--- 42,48 ----
  
  # these libraries are used by various programs built for the host environment
  #
! host_libs="intl mmalloc libiberty opcodes bfd readline db tcl tk tclX itcl tix libgui zlib"
  
  libstdcxx_version="target-libstdc++-v3"
  # Don't use libstdc++-v3's flags to configure/build itself.


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