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]

PATCH: eliminate references to gash at top level.


Since my top level autoconfiscation is stalled indefinitely, waiting for
some stuff to get accepted by gdb, I figured I might as well do the easy
cleanups which will make the job easier later.

Gash is dead (I checked).

2002-03-23  Nathanael Nerode <neroden@doctor.moo.mud.org>
	* configure.in: Eliminate references to gash.
	* Makefile.in: Eliminate references to gash.

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/Makefile.in,v
retrieving revision 1.95
diff -c -3 -p -r1.95 Makefile.in
*** Makefile.in	2002/03/13 00:38:20	1.95
--- Makefile.in	2002/03/23 21:23:13
*************** ALL_X11_MODULES = \
*** 749,755 ****
  	all-emacs19 \
  	all-gdb \
  	all-expect \
- 	all-gash \
  	all-guile \
  	all-tclX \
  	all-tk \
--- 749,754 ----
*************** CHECK_X11_MODULES = \
*** 763,769 ****
  	check-gdb \
  	check-guile \
  	check-expect \
- 	check-gash \
  	check-tclX \
  	check-tk \
  	check-tix
--- 762,767 ----
*************** INSTALL_X11_MODULES = \
*** 776,782 ****
  	install-gdb \
  	install-guile \
  	install-expect \
- 	install-gash \
  	install-tclX \
  	install-tk \
  	install-tk8.1 \
--- 774,779 ----
*************** CLEAN_X11_MODULES = \
*** 964,970 ****
  	clean-emacs19 \
  	clean-gdb \
  	clean-expect \
- 	clean-gash \
  	clean-guile \
  	clean-tclX \
  	clean-tk \
--- 961,966 ----
*************** all-findutils:
*** 1744,1750 ****
  all-find:
  all-flex: all-libiberty all-bison all-byacc
  all-gas: all-libiberty all-opcodes all-bfd all-intl
- all-gash: all-tcl
  all-gawk:
  all-gcc: all-bison all-byacc all-binutils all-gas all-ld all-zlib
  all-bootstrap: all-libiberty all-texinfo all-bison all-byacc all-binutils all-gas all-ld all-zlib
--- 1740,1745 ----
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.122
diff -c -3 -p -r1.122 configure.in
*** configure.in	2002/03/21 20:59:20	1.122
--- configure.in	2002/03/23 21:23:15
***************
*** 42,48 ****
  
  # these libraries are used by various programs built for the host environment
  #
! host_libs="intl mmalloc libiberty opcodes bfd readline gash db tcl tk tcl8.1 tk8.1 tclX itcl tix libgui zlib"
  
  if [ "${enable_gdbgui}" = "yes" ] ; then
  	host_libs="${host_libs} libgui"
--- 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"
  
  if [ "${enable_gdbgui}" = "yes" ] ; then
  	host_libs="${host_libs} libgui"
*************** target_tools="target-examples target-gro
*** 98,104 ****
  #
  # This must be a single line because of the way it is searched by grep in
  # the code below.
! native_only="autoconf automake libtool cvssrc emacs emacs19 fileutils find gawk gettext grep gzip hello indent ispell m4 rcs recode sed shellutils tar textutils gash uudecode wdiff gprof target-groff guile perl apache inet time ash bash bzip2 prms snavigator gnuserv target-gperf"
  
  # directories to be built in a cross environment only
  #
--- 98,104 ----
  #
  # This must be a single line because of the way it is searched by grep in
  # the code below.
! native_only="autoconf automake libtool cvssrc emacs emacs19 fileutils find gawk gettext grep gzip hello indent ispell m4 rcs recode sed shellutils tar textutils uudecode wdiff gprof target-groff guile perl apache inet time ash bash bzip2 prms snavigator gnuserv target-gperf"
  
  # directories to be built in a cross environment only
  #
*************** case ${with_x} in
*** 407,413 ****
    yes | "")  # the default value for this tree is that X11 is available
  	;;
    no)
! 	skipdirs="${skipdirs} tk libgui gash"
  	;;
    *)
      	echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2
--- 407,413 ----
    yes | "")  # the default value for this tree is that X11 is available
  	;;
    no)
! 	skipdirs="${skipdirs} tk libgui"
  	;;
    *)
      	echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2


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