diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-22 06:58:37 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-22 06:58:37 +0000 |
commit | 8bc8f4bc007b581031e155d4f68e39327e241d9b (patch) | |
tree | 4a6b4e5829530e8d3c7a06d849d9021899750351 /ld/mpw-idtmips.c | |
parent | b65c61635f7b03c89545bd30ffb97d74be20ce1d (diff) | |
download | gdb-8bc8f4bc007b581031e155d4f68e39327e241d9b.zip gdb-8bc8f4bc007b581031e155d4f68e39327e241d9b.tar.gz gdb-8bc8f4bc007b581031e155d4f68e39327e241d9b.tar.bz2 |
* Many files: Added gettext invocations around user-visible
strings.
* ld.h: Added gettext-related includes and defines.
* ldmain.c: Call setlocale, bindtextdomain, textdomain.
* acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT, HAVE_STPCPY,
HAVE_LC_MESSAGES): Define.
* configure.in: Call CY_GNU_GETTEXT. Create po/Makefile.in and
po/Makefile. Use AM_PROG_LEX.
(TDIRS): AC_SUBST early on, to avoid having value split when it
happens to cross line 90 of the generated sed script.
* Makefile.am (SUBDIRS): New macro.
(POTFILES): Likewise.
(po/POTFILES.in): New target.
(ld_new_LDADD): Added INTLLIBS.
(ld_new_DEPENDENCIES): Added INTLDEPS.
* po/Make-in, po/POTFILES.in, po/gas.pot: New files.
Diffstat (limited to 'ld/mpw-idtmips.c')
-rw-r--r-- | ld/mpw-idtmips.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/mpw-idtmips.c b/ld/mpw-idtmips.c index b8450e0..08ddc70 100644 --- a/ld/mpw-idtmips.c +++ b/ld/mpw-idtmips.c @@ -90,7 +90,7 @@ gldmipsidt_after_open () || ! bfd_set_section_alignment (abfd, relsec, 2) || ! bfd_set_section_size (abfd, relsec, datasec->reloc_count * 4)) - einfo ("%F%B: can not create .rel.sdata section: %E\n"); + einfo (_("%F%B: can not create .rel.sdata section: %E\n")); } /* Double check that all other data sections are empty, as is @@ -111,7 +111,7 @@ check_sections (abfd, sec, sdatasec) if ((bfd_get_section_flags (abfd, sec) & SEC_CODE) == 0 && sec != (asection *) sdatasec && sec->reloc_count != 0) - einfo ("%F%X: section %s has relocs; can not use --embedded-relocs\n", + einfo (_("%F%X: section %s has relocs; can not use --embedded-relocs\n"), abfd, bfd_get_section_name (abfd, sec)); } @@ -146,10 +146,10 @@ gldmipsidt_after_allocation () &errmsg)) { if (errmsg == NULL) - einfo ("%B%X: can not create runtime reloc information: %E\n", + einfo (_("%B%X: can not create runtime reloc information: %E\n"), abfd); else - einfo ("%X%B: can not create runtime reloc information: %s\n", + einfo (_("%X%B: can not create runtime reloc information: %s\n"), abfd, errmsg); } } |