diff options
author | Alan Modra <amodra@gmail.com> | 2008-08-24 03:13:05 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-08-24 03:13:05 +0000 |
commit | da594c4a29ff199ff1b1986587cdd3babcaf1693 (patch) | |
tree | 024e56e9da96ff3d0186d33791ec8bafe647f168 /opcodes | |
parent | f27f411ae75833a958518eada4cfaa33ff5c87f8 (diff) | |
download | binutils-gdb-da594c4a29ff199ff1b1986587cdd3babcaf1693.tar.gz |
Update a number of obsolete autoconf macros.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/aclocal.m4 | 12 | ||||
-rw-r--r-- | opcodes/configure.in | 8 |
3 files changed, 9 insertions, 16 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 3230d52a741..2e0d49e89bd 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2008-08-24 Alan Modra <amodra@bigpond.net.au> + + * configure.in: Update a number of obsolete autoconf macros. + * aclocal.m4: Regenerate. + 2008-08-20 H.J. Lu <hongjiu.lu@intel.com> AVX Programming Reference (August, 2008) diff --git a/opcodes/aclocal.m4 b/opcodes/aclocal.m4 index 6fac0c74e2e..50e7e232318 100644 --- a/opcodes/aclocal.m4 +++ b/opcodes/aclocal.m4 @@ -340,18 +340,6 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 8 - -# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. -AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) - # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 diff --git a/opcodes/configure.in b/opcodes/configure.in index ce66f7f59e5..2800eed7503 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -21,16 +21,16 @@ AC_PROG_CC AC_GNU_SOURCE AC_USE_SYSTEM_EXTENSIONS -dnl These must be called before AM_PROG_LIBTOOL, because it may want +dnl These must be called before LT_INIT, because it may want dnl to call AC_CHECK_PROG. AC_CHECK_TOOL(AR, ar) AC_CHECK_TOOL(RANLIB, ranlib, :) dnl Default to a non shared library. This may be overridden by the dnl configure option --enable-shared. -AM_DISABLE_SHARED +AC_DISABLE_SHARED -AM_PROG_LIBTOOL +LT_INIT AC_ARG_ENABLE(targets, [ --enable-targets alternative target configurations], @@ -50,7 +50,7 @@ esac])dnl AM_BINUTILS_WARNINGS -AM_CONFIG_HEADER(config.h:config.in) +AC_CONFIG_HEADERS(config.h:config.in) if test -z "$target" ; then AC_MSG_ERROR(Unrecognized target system type; please check config.sub.) |