diff options
author | Nick Clifton <nickc@redhat.com> | 2010-05-25 10:14:16 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2010-05-25 10:14:16 +0000 |
commit | 9fcd9da67989f554961747332188536869222218 (patch) | |
tree | a4bd82b35558a6c42be7f5beb4bd0332149ed9f5 /bfd/configure | |
parent | 770c040b7ea961f5fa87658361a8384308204fa0 (diff) | |
download | gdb-9fcd9da67989f554961747332188536869222218.zip gdb-9fcd9da67989f554961747332188536869222218.tar.gz gdb-9fcd9da67989f554961747332188536869222218.tar.bz2 |
PR ld/11624
* archive.c (_bfd_calloc_wrapper): New function.
(_bfd_add_bfd_to_archive_cache): Use it.
* configure.in: Add alpha*-*-*vms* to list of natives.
* configure: Regenerate.
* vms-misc.c: Define globalref if necessary.
(vms_convert_to_var_unix_filename): Rename to
_bfd_vms_convert_to_var_unix_filename and export.
* vms.h: Add prototype for _bfd_vms_convert_to_var_unix_filename.
* vms-alpha.c (vms_close_and_cleanup): Update invocation of
vms_convert_to_var_unix_filename.
Diffstat (limited to 'bfd/configure')
-rwxr-xr-x | bfd/configure | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bfd/configure b/bfd/configure index a8b15a3..d498ff2 100755 --- a/bfd/configure +++ b/bfd/configure @@ -13829,7 +13829,7 @@ CORE_HEADER= TRAD_HEADER= if test "${target}" = "${host}"; then case "${host}" in - alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu) + alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu | alpha*-*-*vms*) COREFILE='' ;; alpha*-*-linux-*) @@ -13839,9 +13839,11 @@ if test "${target}" = "${host}"; then alpha*-*-netbsd* | alpha*-*-openbsd*) COREFILE=netbsd-core.lo ;; - alpha*-*-*) COREFILE=osf-core.lo ;; + alpha*-*-*) + COREFILE=osf-core.lo + ;; arm-*-freebsd* | arm-*-kfreebsd*-gnu) - COREFILE='' ;; + COREFILE='' ;; arm-*-netbsd* | arm-*-openbsd*) COREFILE=netbsd-core.lo ;; |