diff options
author | Ben Elliston <bje@au.ibm.com> | 2004-06-15 03:24:57 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2004-06-15 03:24:57 +0000 |
commit | 6bf9431b7430d0c30268c62f78a940657c8d6fbe (patch) | |
tree | e4ba45c70fe1c90152e61f8d3cf1342c2e292e78 /gprof/configure.in | |
parent | 911d08a746f9e05c389a7a5044870cd9aae06a5d (diff) | |
download | gdb-6bf9431b7430d0c30268c62f78a940657c8d6fbe.zip gdb-6bf9431b7430d0c30268c62f78a940657c8d6fbe.tar.gz gdb-6bf9431b7430d0c30268c62f78a940657c8d6fbe.tar.bz2 |
* 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.
Diffstat (limited to 'gprof/configure.in')
-rw-r--r-- | gprof/configure.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gprof/configure.in b/gprof/configure.in index 01464f3..78ee912 100644 --- a/gprof/configure.in +++ b/gprof/configure.in @@ -1,8 +1,9 @@ dnl Process this file with autoconf to produce a configure script. -AC_PREREQ(2.13) -AC_INIT(gprof.c) +AC_PREREQ(2.59) +AC_INIT +AC_CONFIG_SRCDIR([gprof.c]) -AC_CANONICAL_SYSTEM +AC_CANONICAL_TARGET([]) AC_ISC_POSIX 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 the automake PACKAGE and VERSION macros. We don't name it 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_INSTALL @@ -52,5 +53,6 @@ if test "x${build_warnings}" != x -a "x$GCC" = xyes ; then fi AC_SUBST(WARN_CFLAGS) -AC_OUTPUT(Makefile po/Makefile.in:po/Make-in, -[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile]) +AC_CONFIG_FILES([Makefile po/Makefile.in:po/Make-in]) +AC_CONFIG_COMMANDS([default],[[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile]],[[]]) +AC_OUTPUT |