Fix typos in ChangeLog; fix dates in copyright notices
This commit is contained in:
parent
305d65cac6
commit
37503931d0
30 changed files with 454 additions and 396 deletions
|
@ -68,8 +68,8 @@
|
|||
|
||||
2000-07-05 Kenneth Block <krblock@computer.org>
|
||||
|
||||
* gprof/gprof.c: Add optional style to demangle switch
|
||||
* gprof/gprof.texi: Document optional style to demangle switch.
|
||||
* gprof.c: Add optional style to demangle switch
|
||||
* gprof.texi: Document optional style to demangle switch.
|
||||
|
||||
2000-06-05 DJ Delorie <dj@redhat.com>
|
||||
|
||||
|
@ -1305,7 +1305,7 @@ Tue Jan 31 16:18:18 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
|
|||
-S: annotate source file
|
||||
-t: set table length (with -S)
|
||||
|
||||
* Makefile (OBJS): added basic_blocks.o call_graph.o gmon_io.o
|
||||
* Makefile.am (OBJS): added basic_blocks.o call_graph.o gmon_io.o
|
||||
source.o time_hist.o
|
||||
|
||||
Fri Jul 1 15:23:50 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
|
||||
|
@ -1456,7 +1456,7 @@ Mon Apr 26 12:37:46 1993 Ian Lance Taylor (ian@cygnus.com)
|
|||
|
||||
Tue Apr 13 16:14:03 1993 Per Bothner (bothner@cygnus.com)
|
||||
|
||||
* M Makefile.in: Add -g to CFLAGS.
|
||||
* Makefile.in: Add -g to CFLAGS.
|
||||
Ads LDFLAGS and use in place of CFLAGS where appropriate.
|
||||
* configure.in: Make a sysdep.hlink in the same way other
|
||||
bfd-based directories do.
|
||||
|
@ -1578,4 +1578,3 @@ Thu Jun 4 11:34:02 1992 Mark Eichin (eichin at cygnus.com)
|
|||
help in debugging the problem (with -DDEBUG)
|
||||
* gprof.c: symbol values are now real values, don't add the vma
|
||||
anymore. (done for solaris; should verify this on other platforms)
|
||||
* ChangeLog: created.
|
||||
|
|
|
@ -187,7 +187,7 @@ acinclude.m4 aclocal.m4 configure configure.in gconfig.in
|
|||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = tar
|
||||
TAR = gtar
|
||||
GZIP_ENV = --best
|
||||
SOURCES = $(gprof_SOURCES)
|
||||
OBJECTS = $(gprof_OBJECTS)
|
||||
|
|
18
gprof/aclocal.m4
vendored
18
gprof/aclocal.m4
vendored
|
@ -25,6 +25,24 @@ AC_DEFUN([CY_WITH_NLS],)
|
|||
AC_SUBST(INTLLIBS)
|
||||
])
|
||||
|
||||
#serial 1
|
||||
# This test replaces the one in autoconf.
|
||||
# Currently this macro should have the same name as the autoconf macro
|
||||
# because gettext's gettext.m4 (distributed in the automake package)
|
||||
# still uses it. Otherwise, the use in gettext.m4 makes autoheader
|
||||
# give these diagnostics:
|
||||
# configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX
|
||||
# configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX
|
||||
|
||||
undefine([AC_ISC_POSIX])
|
||||
|
||||
AC_DEFUN(AC_ISC_POSIX,
|
||||
[
|
||||
dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
|
||||
AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
|
||||
]
|
||||
)
|
||||
|
||||
# Do all the work for Automake. This macro actually does too much --
|
||||
# some checks are only needed if your package does certain things.
|
||||
# But this isn't really a big deal.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
of basic-block info to/from gmon.out; computing and formatting of
|
||||
basic-block related statistics.
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000, 2001 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* basic_blocks.h
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* bb_exit_func.c - dumps all the basic-block statistics linked into
|
||||
the bb_head chain to .d files.
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -2,6 +2,25 @@
|
|||
|
||||
# This script converts a "bb.out" file into a format
|
||||
# suitable for processing by gprof
|
||||
#
|
||||
# Copyright 2001 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is part of GNU Binutils.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
# 02111-1307, USA.
|
||||
|
||||
# Write a new-style gmon header
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* call_graph.c - Create call graphs.
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* call_graph.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* cg_print.c - Print routines for displaying call graphs.
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* cg_print.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
750
gprof/configure
vendored
750
gprof/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
/* corefile.c
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* corefile.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -25,9 +25,6 @@
|
|||
/* Define to `long' if <sys/types.h> doesn't define. */
|
||||
#undef off_t
|
||||
|
||||
/* Define if you need to in order for stat and other things to work. */
|
||||
#undef _POSIX_SOURCE
|
||||
|
||||
/* Define to `unsigned' if <sys/types.h> doesn't define. */
|
||||
#undef size_t
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* gmon_io.c - Input and output from/to gmon.out files.
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* gmon_io.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* gmon_out.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
\input texinfo @c -*-texinfo-*-
|
||||
@setfilename gprof.info
|
||||
@c Copyright 1988, 1992, 1993, 1998, 1999, 2000
|
||||
@c Free Software Foundation, Inc.
|
||||
@settitle GNU gprof
|
||||
@setchapternewpage odd
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* hist.c - Histogram related operations.
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* hist.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# Copyright 2000 Free Software Foundation, Inc.
|
||||
# (C) YEAR
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* search-list.c
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* search-list.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* source.c - Keep track of source files.
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* source.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* sym_ids.c
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* sym_ids.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* symtab.c
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* symtab.h
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue