From b4117c306105c7e3279bbbabab1dd361a3b35b62 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Tue, 18 May 2004 01:26:21 +0000 Subject: Makefile.def, [...]: Remove all mention of libf2c. top: * Makefile.def, Makefile.tpl, configure.in: Remove all mention of libf2c. * configure, Makefile.in: Regenerate. contrib: * gcc_update: Remove gcc/f/intdoc.texi and all libf2c files from list of files to be touched. * convert_to_f2c, convert_to_g2c, download_f2c: Delete. gcc: * f: Entire directory removed * c-common.h (CTI_G77_INTEGER_TYPE, CTI_G77_UINTEGER_TYPE) (CTI_G77_LONGINT_TYPE, CTI_G77_ULONGINT_TYPE) (g77_integer_type_node, g77_uinteger_type_node) (g77_longint_type_node, or g77_ulongint_type_node): Delete. * c-common.c (c_common_nodes_and_builtins): Do not initialize the above set of variables. * config/i386/uwin.h: No need to define WIN32_UWIN_TARGET. * doc/invoke.texi, doc/standards.texi: Remove cross-references to g77 manual. gcc/po: * exgettext (spec_error_string): Do not scan beyond the end of the string for a close brace. Do not bail out at the first incidence of %%e. * gcc.pot: Regenerate. From-SVN: r81967 --- contrib/download_f2c | 77 ---------------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100755 contrib/download_f2c (limited to 'contrib/download_f2c') diff --git a/contrib/download_f2c b/contrib/download_f2c deleted file mode 100755 index 159c52e7d87..00000000000 --- a/contrib/download_f2c +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/sh -# -# download_f2c -# -# Unpacks a directory full of f2c stuff obtained from netlib, naming -# the directory f2c-YYYYMMDD (YYYYMMDD being the current date), -# leaving it in current working directory. -# -# This shell script downloads the tarball from netlib, unpacks everything, -# and strips off the redundant files, leaving a bare-bones (but fully -# reproducible) f2c source directory. (You must have yacc/bison to rebuild -# gram.c, by the way.) -# -# (C) 1999 Free Software Foundation -# Originally by James Craig Burley , September 1999. -# -# This script is Free Software, and it can be copied, distributed and -# modified as defined in the GNU General Public License. A copy of -# its license can be downloaded from http://www.gnu.org/copyleft/gpl.html -# -# FIXME: Replace WHOAMI with whatever is the canonical way to -# obtain the user's email address these days. - -dir=f2c-`date +%Y%m%d` -if [ ! -d $dir ] -then - mkdir $dir -fi -cd $dir - -echo Preparing $dir... - -if [ ! -d tmp ] -then - mkdir tmp -fi - -if [ ! -f tmp/f2c.tar ] -then - cd tmp - echo Downloading f2c.tar via ftp... - ftp -n netlib.bell-labs.com < /dev/null && rm libf77 -rm -f libF77/xsum0.out libF77/libF77.xsum -sh libi77 > /dev/null && rm libi77 -rm -f libI77/xsum0.out libI77/libI77.xsum -rm -f src/xsum0.out -touch src/xsum.out -cmp f2c.h src/f2c.h && rm -fv src/f2c.h -cmp src/readme src/README && rm -fv src/readme - -echo Deleting f2c.tar... -rm tmp/f2c.tar -rmdir tmp - -cd .. - -echo Latest f2c now in $dir. -- cgit v1.2.1