* configure.in: Run through autoupdate.

* configure: Regenerate with autoconf 2.59.
	* Makefile.am (install-local): Rename from this ..
	(install-data-local): .. to this.
	* Makefile.in: Regenerate with automake 1.8.5.
	* aclocal.m4: Regenerate with aclocal 1.8.5.
This commit is contained in:
Ben Elliston 2004-06-15 03:24:57 +00:00
parent 911d08a746
commit 6bf9431b74
6 changed files with 9057 additions and 3321 deletions

View File

@ -1,3 +1,12 @@
2004-06-15 Ben Elliston <bje@au.ibm.com>
* configure.in: Run through autoupdate.
* configure: Regenerate with autoconf 2.59.
* Makefile.am (install-local): Rename from this ..
(install-data-local): .. to this.
* Makefile.in: Regenerate with automake 1.8.5.
* aclocal.m4: Regenerate with aclocal 1.8.5.
2004-06-15 Alan Modra <amodra@bigpond.net.au> 2004-06-15 Alan Modra <amodra@bigpond.net.au>
* corefile.c (core_init): Use bfd_get_section_size * corefile.c (core_init): Use bfd_get_section_size

View File

@ -73,7 +73,7 @@ Makefile: $(BFDDIR)/configure.in
# We want install to imply install-info as per GNU standards, despite the # We want install to imply install-info as per GNU standards, despite the
# cygnus option. # cygnus option.
install: install-info install-data-local: install-info
# Targets to rebuild dependencies in this Makefile. # Targets to rebuild dependencies in this Makefile.
# Have to get rid of DEP1 here so that "$?" later includes all sources. # Have to get rid of DEP1 here so that "$?" later includes all sources.

File diff suppressed because it is too large Load Diff

1038
gprof/aclocal.m4 vendored

File diff suppressed because it is too large Load Diff

10342
gprof/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,9 @@
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.13) AC_PREREQ(2.59)
AC_INIT(gprof.c) AC_INIT
AC_CONFIG_SRCDIR([gprof.c])
AC_CANONICAL_SYSTEM AC_CANONICAL_TARGET([])
AC_ISC_POSIX AC_ISC_POSIX
changequote(,)dnl changequote(,)dnl
@ -16,7 +17,7 @@ dnl For simplicity, we use the BFD configuration file for most
dnl things. However, we also need our own configuration file for dnl things. However, we also need our own configuration file for
dnl the automake PACKAGE and VERSION macros. We don't name it dnl the automake PACKAGE and VERSION macros. We don't name it
dnl config.h, to avoid any possible confusion with the bfd config.h. dnl config.h, to avoid any possible confusion with the bfd config.h.
AM_CONFIG_HEADER(gconfig.h:gconfig.in) AC_CONFIG_HEADERS([gconfig.h:gconfig.in])
AC_PROG_CC AC_PROG_CC
AC_PROG_INSTALL AC_PROG_INSTALL
@ -52,5 +53,6 @@ if test "x${build_warnings}" != x -a "x$GCC" = xyes ; then
fi fi
AC_SUBST(WARN_CFLAGS) AC_SUBST(WARN_CFLAGS)
AC_OUTPUT(Makefile po/Makefile.in:po/Make-in, AC_CONFIG_FILES([Makefile po/Makefile.in:po/Make-in])
[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile]) AC_CONFIG_COMMANDS([default],[[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile]],[[]])
AC_OUTPUT