diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2009-03-14 09:11:38 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2009-03-14 09:11:38 +0000 |
commit | e52315924b94ebfea09366bebb535692f274dc52 (patch) | |
tree | 2bca2338afffa1cee1e3ea09d0f0319f7220f16d /gas | |
parent | fa0a16b19e6701bed945feffd3fb5381759a0005 (diff) | |
download | gdb-e52315924b94ebfea09366bebb535692f274dc52.zip gdb-e52315924b94ebfea09366bebb535692f274dc52.tar.gz gdb-e52315924b94ebfea09366bebb535692f274dc52.tar.bz2 |
bfd/
* config.bfd: Treat AIX 6+ in the same way as AIX 5.
* configure.in: Likewise.
* configure: Regenerate.
binutils/
* configure.tgt: Extend AIX 5 behavior to AIX 6 and above.
* configure.in: Likewise.
* configure: Regenerate.
gas/
* configure.tgt: Extend AIX 5 behavior to AIX 6 and above.
* configure.in: Likewise.
* configure: Regenerate.
ld/
* configure.tgt: Extend AIX 5 behavior to AIX 6 and above.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rwxr-xr-x | gas/configure | 2 | ||||
-rw-r--r-- | gas/configure.in | 4 | ||||
-rw-r--r-- | gas/configure.tgt | 2 |
4 files changed, 11 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 7f60422..b4472b2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2009-03-14 Richard Sandiford <r.sandiford@uk.ibm.com> + + * configure.tgt: Extend AIX 5 behavior to AIX 6 and above. + * configure.in: Likewise. + * configure: Regenerate. + 2009-03-11 Hans-Peter Nilsson <hp@axis.com> * config/tc-cris.c (cris_create_short_jump): Remove prototype. diff --git a/gas/configure b/gas/configure index 3c5a046..ec23638 100755 --- a/gas/configure +++ b/gas/configure @@ -12050,7 +12050,7 @@ echo "$as_me: error: Unknown vendor for mips-bsd configuration." >&2;} { (exit 1); exit 1; }; } ;; - ppc-*-aix5.*) + ppc-*-aix[5-9].*) cat >>confdefs.h <<\_ACEOF #define AIX_WEAK_SUPPORT 1 diff --git a/gas/configure.in b/gas/configure.in index 242bac7..011e886 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -143,7 +143,9 @@ for this_target in $target $canon_targets ; do AC_MSG_ERROR(Unknown vendor for mips-bsd configuration.) ;; - ppc-*-aix5.*) +changequote(,)dnl + ppc-*-aix[5-9].*) +changequote([,])dnl AC_DEFINE(AIX_WEAK_SUPPORT, 1, [Define if using AIX 5.2 value for C_WEAKEXT.]) ;; diff --git a/gas/configure.tgt b/gas/configure.tgt index 38455d8..e3eadac 100644 --- a/gas/configure.tgt +++ b/gas/configure.tgt @@ -320,7 +320,7 @@ case ${generic_target} in ppc-*-pe | ppc-*-cygwin*) fmt=coff em=pe ;; ppc-*-winnt*) fmt=coff em=pe ;; ppc-*-aix5.[01]) fmt=coff em=aix5 ;; - ppc-*-aix5.*) fmt=coff em=aix5 ;; + ppc-*-aix[5-9].*) fmt=coff em=aix5 ;; ppc-*-aix*) fmt=coff ;; ppc-*-beos*) fmt=coff ;; ppc-*-*n*bsd* | ppc-*-elf*) fmt=elf ;; |