SOURCES: elfutils-alpha.patch, elfutils-pl.po.patch - updated for ...

qboosh qboosh at pld-linux.org
Sat Jul 22 11:20:36 CEST 2006


Author: qboosh                       Date: Sat Jul 22 09:20:36 2006 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- updated for 0.122

---- Files affected:
SOURCES:
   elfutils-alpha.patch (1.4 -> 1.5) , elfutils-pl.po.patch (1.11 -> 1.12) 

---- Diffs:

================================================================
Index: SOURCES/elfutils-alpha.patch
diff -u SOURCES/elfutils-alpha.patch:1.4 SOURCES/elfutils-alpha.patch:1.5
--- SOURCES/elfutils-alpha.patch:1.4	Sun Apr 16 19:13:23 2006
+++ SOURCES/elfutils-alpha.patch	Sat Jul 22 11:20:31 2006
@@ -1,7 +1,6 @@
 2006-04-16  Jakub Bogusz  <qboosh at pld-linux dot org>
 
 	* src/elflint.c (valid_e_machine) Add EM_ALPHA to valid machines.
-	  (check_hash): Support hash bucket size of 8 on alpha and s390x.
 	  (check_sections): Support arch-specific section flags.
 	* libelf/elf32_getshdr.c: Handle unaligned section header with same
           endianess properly.
@@ -20,89 +19,7 @@
    };
  #define nvalid_e_machine \
    (sizeof (valid_e_machine) / sizeof (valid_e_machine[0]))
-@@ -1664,6 +1664,16 @@
- section [%2d] '%s': hash table not for dynamic symbol table\n"),
- 	   idx, section_name (ebl, idx));
- 
-+  bool bighash = 
-+    (ehdr->e_machine == EM_ALPHA) ||
-+      ((ehdr->e_machine == EM_S390) && (ehdr->e_ident[EI_CLASS] == ELFCLASS64));
-+
-+  if (bighash) {
-+    if (shdr->sh_entsize != 8) /* alpha and s390x use non-standard hash bucket size of 8 */
-+      ERROR (gettext ("\
-+section [%2d] '%s': entry size is not 8\n"),
-+	     idx, section_name (ebl, idx));
-+  } else
-   if (shdr->sh_entsize != sizeof (Elf32_Word))
-     ERROR (gettext ("\
- section [%2d] '%s': entry size does not match Elf32_Word\n"),
-@@ -1681,8 +1691,15 @@
-       return;
-     }
- 
--  Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0];
--  Elf32_Word nchain = ((Elf32_Word *) data->d_buf)[1];
-+  uint64_t nbucket, nchain;
-+
-+  if (bighash) {
-+    nbucket = ((Elf64_Xword *) data->d_buf)[0];
-+    nchain = ((Elf64_Xword *) data->d_buf)[1];
-+  } else {
-+    nbucket = ((Elf32_Word *) data->d_buf)[0];
-+    nchain = ((Elf32_Word *) data->d_buf)[1];
-+  }
- 
-   if (shdr->sh_size < (2 + nbucket + nchain) * shdr->sh_entsize)
-     ERROR (gettext ("\
-@@ -1694,29 +1711,41 @@
-     {
-       size_t symsize = symshdr->sh_size / symshdr->sh_entsize;
-       size_t cnt;
--      Elf32_Word *buf, *end;
-+      void *buf, *end;
-+      uint64_t val;
- 
-       if (nchain < symshdr->sh_size / symshdr->sh_entsize)
- 	ERROR (gettext ("section [%2d] '%s': chain array not large enough\n"),
- 	       idx, section_name (ebl, idx));
- 
-+      if (bighash) {
-+        buf = ((Elf64_Xword *) data->d_buf) + 2;
-+        end = (Elf64_Xword *) ((char *) data->d_buf + shdr->sh_size);
-+      } else {
-       buf = ((Elf32_Word *) data->d_buf) + 2;
-       end = (Elf32_Word *) ((char *) data->d_buf + shdr->sh_size);
--      for (cnt = 2; cnt < 2 + nbucket; ++cnt)
-+      }
-+      for (cnt = 2; cnt < 2 + nbucket; ++cnt) {
- 	if (buf >= end)
- 	  return;
--	else if (*buf++ >= symsize)
-+	val = bighash ? *(Elf64_Xword *)buf : *(Elf32_Word *)buf;
-+	if (val >= symsize)
- 	  ERROR (gettext ("\
- section [%2d] '%s': hash bucket reference %zu out of bounds\n"),
- 		 idx, section_name (ebl, idx), cnt - 2);
-+	buf += bighash ? 8 : sizeof(Elf32_Word);
-+      }
- 
--      for (; cnt < 2 + nbucket + nchain; ++cnt)
-+      for (; cnt < 2 + nbucket + nchain; ++cnt) {
- 	if (buf >= end)
- 	  return;
--	else if (*buf++ >= symsize)
-+	val = bighash ? *(Elf64_Xword *)buf : *(Elf32_Word *)buf;
-+	if (val >= symsize)
- 	  ERROR (gettext ("\
- section [%2d] '%s': hash chain reference %zu out of bounds\n"),
- 		 idx, section_name (ebl, idx), cnt - 2 - nbucket);
-+	  buf += bighash ? 8 : sizeof(Elf32_Word);
-+      }
-     }
- }
- 
-@@ -2744,9 +2773,30 @@
+@@ -2744,9 +2744,30 @@
  	       cnt, section_name (ebl, cnt),
  	       (int) shdr->sh_type);
  
@@ -156,16 +73,16 @@
  	}
        else if (likely (elf->fildes != -1))
  	{
---- elfutils-0.120/backends/alpha_init.c.orig	2006-04-05 00:17:36.000000000 +0200
-+++ elfutils-0.120/backends/alpha_init.c	2006-04-16 13:11:08.819218500 +0200
+--- elfutils-0.122/backends/alpha_init.c.orig	2006-07-05 06:09:28.000000000 +0200
++++ elfutils-0.122/backends/alpha_init.c	2006-07-22 10:34:36.417909750 +0200
 @@ -54,6 +54,7 @@
    HOOK (eh, dynamic_tag_check);
    HOOK (eh, reloc_simple_type);
    HOOK (eh, return_value_location);
 +  HOOK (eh, register_name);
+   eh->sysvhash_entrysize = sizeof (Elf64_Xword);
  
    return MODVERSION;
- }
 --- elfutils-0.120/backends/alpha_regs.c.orig	1970-01-01 01:00:00.000000000 +0100
 +++ elfutils-0.120/backends/alpha_regs.c	2006-04-16 13:10:15.947914250 +0200
 @@ -0,0 +1,81 @@

================================================================
Index: SOURCES/elfutils-pl.po.patch
diff -u SOURCES/elfutils-pl.po.patch:1.11 SOURCES/elfutils-pl.po.patch:1.12
--- SOURCES/elfutils-pl.po.patch:1.11	Sat Jul  1 22:29:37 2006
+++ SOURCES/elfutils-pl.po.patch	Sat Jul 22 11:20:31 2006
@@ -192,19 +192,19 @@
 +#: libelf/elf_error.c:250
 +msgid "invalid offset"
 +msgstr "błędny offset"
---- elfutils-0.121/po/pl.po.orig	1970-01-01 01:00:00.000000000 +0100
-+++ elfutils-0.121/po/pl.po	2006-07-01 22:08:55.112502500 +0200
-@@ -0,0 +1,3861 @@
+--- elfutils-0.122/po/pl.po.orig	1970-01-01 01:00:00.000000000 +0100
++++ elfutils-0.122/po/pl.po	2006-07-22 10:56:26.451781750 +0200
+@@ -0,0 +1,3954 @@
 +# Polish translation for elfutils.
 +# This file is distributed under the same license as the elfutils package.
 +# Jakub Bogusz <qboosh at pld-linux.org>, 2003-2006.
 +#
 +msgid ""
 +msgstr ""
-+"Project-Id-Version: elfutils 0.121\n"
++"Project-Id-Version: elfutils 0.122\n"
 +"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2006-06-14 20:26-0700\n"
-+"PO-Revision-Date: 2006-07-01 22:01+0200\n"
++"POT-Creation-Date: 2006-07-12 13:45-0700\n"
++"PO-Revision-Date: 2006-07-22 10:45+0200\n"
 +"Last-Translator: Jakub Bogusz <qboosh at pld-linux.org>\n"
 +"Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
 +"MIME-Version: 1.0\n"
@@ -212,7 +212,7 @@
 +"Content-Transfer-Encoding: 8bit\n"
 +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 +
-+#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79
++#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2540
 +#, c-format
 +msgid "memory exhausted"
 +msgstr "pamięć wyczerpana"
@@ -225,7 +225,7 @@
 +msgid "out of memory"
 +msgstr "brak pamięci"
 +
-+#: libasm/asm_error.c:122 src/ldgeneric.c:2550
++#: libasm/asm_error.c:122 src/ldgeneric.c:2564
 +#, c-format
 +msgid "cannot create output file"
 +msgstr "nie można utworzyć pliku wyjściowego"
@@ -238,7 +238,7 @@
 +msgid "cannot change mode of output file"
 +msgstr "nie można zmienić uprawnień pliku wyjściowego"
 +
-+#: libasm/asm_error.c:125 src/ldgeneric.c:6357
++#: libasm/asm_error.c:125 src/ldgeneric.c:6395
 +#, c-format
 +msgid "cannot rename output file"
 +msgstr "nie można zmienić nazwy pliku wyjściowego"
@@ -463,7 +463,7 @@
 +msgid "Reverse the sense of the sort"
 +msgstr "Odwrócenie porządku sortowania"
 +
-+#: src/nm.c:103 src/addr2line.c:68 src/findtextrel.c:73 src/elfcmp.c:71
++#: src/nm.c:103 src/addr2line.c:70 src/findtextrel.c:73 src/elfcmp.c:71
 +#: src/strings.c:83
 +msgid "Miscellaneous:"
 +msgstr "Różne:"
@@ -483,7 +483,7 @@
 +msgstr "%s: BŁĄD WEWNĘTRZNY %d (%s-%s): %s"
 +
 +#: src/nm.c:253 src/readelf.c:368 src/size.c:219 src/strip.c:203 src/ld.c:869
-+#: src/elflint.c:232 src/addr2line.c:180 src/findtextrel.c:168
++#: src/elflint.c:232 src/addr2line.c:185 src/findtextrel.c:168
 +#: src/elfcmp.c:506 src/ranlib.c:146 src/strings.c:227
 +#, c-format
 +msgid ""
@@ -497,14 +497,14 @@
 +"DO SPRZEDAŻY LUB DO KONKRETNYCH CELÓW.\n"
 +
 +#: src/nm.c:258 src/readelf.c:373 src/size.c:224 src/strip.c:208 src/ld.c:874
-+#: src/elflint.c:237 src/addr2line.c:185 src/findtextrel.c:173
++#: src/elflint.c:237 src/addr2line.c:190 src/findtextrel.c:173
 +#: src/elfcmp.c:511 src/ranlib.c:151 src/strings.c:232
 +#, c-format
 +msgid "Written by %s.\n"
 +msgstr "Autorem jest %s.\n"
 +
 +#: src/nm.c:363 src/size.c:301 src/strip.c:430 src/strip.c:465
-+#: src/ldgeneric.c:1674 src/findtextrel.c:227 src/elfcmp.c:554
++#: src/ldgeneric.c:1676 src/findtextrel.c:227 src/elfcmp.c:554
 +#: src/ranlib.c:300 src/strings.c:183
 +#, c-format
 +msgid "cannot open '%s'"
@@ -556,7 +556,7 @@
 +#: src/nm.c:728 src/nm.c:973 src/readelf.c:676 src/readelf.c:815
 +#: src/readelf.c:956 src/readelf.c:1138 src/readelf.c:1346 src/readelf.c:1500
 +#: src/readelf.c:1667 src/readelf.c:1921 src/readelf.c:1987 src/readelf.c:2065
-+#: src/readelf.c:2332 src/readelf.c:2451 src/readelf.c:4802 src/size.c:418
++#: src/readelf.c:2559 src/readelf.c:2595 src/readelf.c:4946 src/size.c:418
 +#: src/size.c:492 src/strip.c:480
 +#, c-format
 +msgid "cannot get section header string table index"
@@ -1310,12 +1310,7 @@
 +msgid "   1 *global*                    "
 +msgstr "   1 *globalny*                  "
 +
-+#: src/readelf.c:2346
-+#, c-format
-+msgid "cannot get data for section %d: %s"
-+msgstr "nie można pobrać danych dla sekcji %d: %s"
-+
-+#: src/readelf.c:2357
++#: src/readelf.c:2334
 +#, c-format
 +msgid ""
 +"\n"
@@ -1338,22 +1333,22 @@
 +"Histogram dla długości listy kubełków w sekcji [%2u] '%s' (w sumie %d kubełków):\n"
 +" Adres: %#0*<PRIx64>  Offset: %#08<PRIx64>  Dowiązanie do sekcji: [%2u] '%s'\n"
 +
-+#: src/readelf.c:2403
++#: src/readelf.c:2357
 +#, no-c-format
 +msgid " Length  Number  % of total  Coverage\n"
 +msgstr " Długość Liczba  % całości   Pokrycie\n"
 +
-+#: src/readelf.c:2405
++#: src/readelf.c:2359
 +#, c-format
 +msgid "      0  %6<PRIu32>      %5.1f%%\n"
 +msgstr "      0  %6<PRIu32>      %5.1f%%\n"
 +
-+#: src/readelf.c:2412
++#: src/readelf.c:2366
 +#, c-format
 +msgid "%7d  %6<PRIu32>      %5.1f%%    %5.1f%%\n"
 +msgstr "%7d  %6<PRIu32>      %5.1f%%    %5.1f%%\n"
 +
-+#: src/readelf.c:2426
++#: src/readelf.c:2379
 +#, c-format
 +msgid ""
 +" Average number of tests:   successful lookup: %f\n"
@@ -1362,7 +1357,21 @@
 +" Średnia liczba testów:   udane wyszukania: %f\n"
 +"                       nieudane wyszukania: %f\n"
 +
-+#: src/readelf.c:2461
++#: src/readelf.c:2397 src/readelf.c:2439 src/readelf.c:2480
++#, c-format
++msgid "cannot get data for section %d: %s"
++msgstr "nie można pobrać danych dla sekcji %d: %s"
++
++#: src/readelf.c:2534
++#, c-format
++msgid ""
++" Symbol Bias: %u\n"
++" Bitmask Size: %zu bytes  %<PRIuFAST32>%% bits set  2nd hash shift: %u\n"
++msgstr ""
++" Przesunięcie symboli: %u\n"
++" Rozmiar maski bitowej: %zu bajtów  %<PRIuFAST32>%% bitów ustawionych  drugie przesunięcie hasza: %u\n"
++
++#: src/readelf.c:2605
 +#, c-format
 +msgid ""
 +"\n"
@@ -1380,36 +1389,36 @@
 +"\n"
 +"Sekcja listy bibliotek [%2zu] '%s' pod offsetem %#0<PRIx64> zawiera %d wpisów:\n"
 +
-+#: src/readelf.c:2475
++#: src/readelf.c:2619
 +msgid "       Library                       Time Stamp          Checksum Version Flags"
 +msgstr "       Biblioteka                    Oznaczenie czasu    Suma k.  Wersja  Flagi"
 +
-+#: src/readelf.c:2597
++#: src/readelf.c:2741
 +#, c-format
 +msgid "unknown tag %hx"
 +msgstr "nieznany znacznik %hx"
 +
-+#: src/readelf.c:2599
++#: src/readelf.c:2743
 +#, c-format
 +msgid "unknown user tag %hx"
 +msgstr "nieznany znacznik użytkownika %hx"
 +
-+#: src/readelf.c:2809
++#: src/readelf.c:2953
 +#, c-format
 +msgid "unknown attribute %hx"
 +msgstr "nieznany atrybut %hx"
 +
-+#: src/readelf.c:2812
++#: src/readelf.c:2956
 +#, c-format
 +msgid "unknown user attribute %hx"
 +msgstr "nieznany atrybut użytkownika %hx"
 +
-+#: src/readelf.c:2858
++#: src/readelf.c:3002
 +#, c-format
 +msgid "unknown form %<PRIx64>"
 +msgstr "nieznana forma %<PRIx64>"
 +
-+#: src/readelf.c:3433
++#: src/readelf.c:3577
 +#, c-format
 +msgid ""
 +"\n"
@@ -1420,7 +1429,7 @@
 +"Sekcja DWARF '%s' pod offsetem %#<PRIx64>:\n"
 +" [ Kod]\n"
 +
-+#: src/readelf.c:3440
++#: src/readelf.c:3584
 +#, c-format
 +msgid ""
 +"\n"
@@ -1429,30 +1438,30 @@
 +"\n"
 +"Sekcja skrótów pod offsetem %<PRIu64>:\n"
 +
-+#: src/readelf.c:3453
++#: src/readelf.c:3597
 +#, c-format
 +msgid " *** error while reading abbreviation: %s\n"
 +msgstr " *** błąd podczas odczytu skrótu: %s\n"
 +
-+#: src/readelf.c:3469
++#: src/readelf.c:3613
 +#, c-format
 +msgid " [%5u] offset: %<PRId64>, children: %s, tag: %s\n"
 +msgstr " [%5u] offset: %<PRId64>, potomek: %s, znacznik: %s\n"
 +
-+#: src/readelf.c:3472
++#: src/readelf.c:3616
 +msgid "yes"
 +msgstr "tak"
 +
-+#: src/readelf.c:3472
++#: src/readelf.c:3616
 +msgid "no"
 +msgstr "nie"
 +
-+#: src/readelf.c:3508
++#: src/readelf.c:3652
 +#, c-format
 +msgid "cannot get .debug_aranges content: %s"
 +msgstr "nie można pobrać zawartości .debug_aranges: %s"
 +
-+#: src/readelf.c:3513
++#: src/readelf.c:3657
 +#, c-format
 +msgid ""
 +"\n"
@@ -1470,23 +1479,23 @@
 +"\n"
 +"Sekcja DWARF '%s' pod offsetem %#<PRIx64> zawiera %zu wpisów:\n"
 +
-+#: src/readelf.c:3543
++#: src/readelf.c:3687
 +#, c-format
 +msgid " [%*zu] ???\n"
 +msgstr " [%*zu] ???\n"
 +
-+#: src/readelf.c:3545
++#: src/readelf.c:3689
 +#, c-format
 +msgid " [%*zu] start: %0#*<PRIx64>, length: %5<PRIu64>, CU DIE offset: %6<PRId64>\n"
 +msgstr " [%*zu] start: %0#*<PRIx64>, długość: %5<PRIu64>, offset CU DIE: %6<PRId64>\n"
 +
-+#: src/readelf.c:3563
++#: src/readelf.c:3707
 +#, c-format
 +msgid "cannot get .debug_ranges content: %s"
 +msgstr "nie można pobrać zawartości .debug_ranges: %s"
 +
-+#: src/readelf.c:3568 src/readelf.c:4045 src/readelf.c:4470 src/readelf.c:4560
-+#: src/readelf.c:4732
++#: src/readelf.c:3712 src/readelf.c:4189 src/readelf.c:4614 src/readelf.c:4704
++#: src/readelf.c:4876
 +#, c-format
 +msgid ""
 +"\n"
@@ -1495,22 +1504,22 @@
 +"\n"
 +"Sekcja DWARF '%s' pod offsetem %#<PRIx64>:\n"
 +
-+#: src/readelf.c:3652
++#: src/readelf.c:3796
 +#, c-format
 +msgid "cannot get attribute code: %s"
 +msgstr "nie można pobrać kodu atrybutu: %s"
 +
-+#: src/readelf.c:3660
++#: src/readelf.c:3804
 +#, c-format
 +msgid "cannot get attribute form: %s"
 +msgstr "nie można pobrać formy atrybutu: %s"
 +
-+#: src/readelf.c:3672
++#: src/readelf.c:3816
 +#, c-format
 +msgid "cannot get attribute value: %s"
 +msgstr "nie można pobrać wartości atrybutu: %s"
 +
-+#: src/readelf.c:3838
++#: src/readelf.c:3982
 +#, c-format
 +msgid ""
 +"\n"
@@ -1521,7 +1530,7 @@
 +"Sekcja DWARF '%s' pod offsetem %#<PRIx64>:\n"
 +" [Offset]\n"
 +
-+#: src/readelf.c:3863
++#: src/readelf.c:4007
 +#, c-format
 +msgid ""
 +" Compilation unit at offset %<PRIu64>:\n"
@@ -1530,37 +1539,37 @@
 +" Jednostka kompilacji pod offsetem %<PRIu64>:\n"
 +" Wersja: %<PRIu16>, offset sekcji skrótów: %<PRIu64>, rozmiar adresu: %<PRIu8>, rozmiar offsetu: %<PRIu8>\n"
 +
-+#: src/readelf.c:3880
++#: src/readelf.c:4024
 +#, c-format
 +msgid "cannot get DIE at offset %<PRIu64> in section '%s': %s"
 +msgstr "nie można pobrać DIE pod offsetem %<PRIu64> w sekcji '%s': %s"
 +
-+#: src/readelf.c:3891
++#: src/readelf.c:4035
 +#, c-format
 +msgid "cannot get DIE offset: %s"
 +msgstr "nie można pobrać offsetu DIE: %s"
 +
-+#: src/readelf.c:3899
++#: src/readelf.c:4043
 +#, c-format
 +msgid "cannot get tag of DIE at offset %<PRIu64> in section '%s': %s"
 +msgstr "nie można pobrać znacznika DIE pod offsetem %<PRIu64> w sekcji '%s': %s"
 +
-+#: src/readelf.c:4016
++#: src/readelf.c:4160
 +#, c-format
 +msgid "cannot get next DIE: %s\n"
 +msgstr "nie można pobrać następnego DIE: %s\n"
 +
-+#: src/readelf.c:4023
++#: src/readelf.c:4167
 +#, c-format
 +msgid "cannot get next DIE: %s"
 +msgstr "nie można pobrać następnego DIE: %s"
 +
-+#: src/readelf.c:4057
++#: src/readelf.c:4201
 +#, c-format
 +msgid "cannot get line data section data: %s"
 +msgstr "nie można pobrać danych sekcji danych linii: %s"
 +
-+#: src/readelf.c:4070
++#: src/readelf.c:4214
 +#, c-format
 +msgid ""
 +"\n"
@@ -1569,12 +1578,12 @@
 +"\n"
 +"Tabela pod offsetem %Zu:\n"
 +
-+#: src/readelf.c:4079
++#: src/readelf.c:4223
 +#, c-format
 +msgid "invalid data in section [%zu] '%s'"
 +msgstr "błędne dane w sekcji [%zu] '%s'"
 +
-+#: src/readelf.c:4122
++#: src/readelf.c:4266
 +#, c-format
 +msgid ""
 +"\n"
@@ -1601,7 +1610,7 @@
 +"\n"
 +"Instrukcje:\n"
 +
-+#: src/readelf.c:4148
++#: src/readelf.c:4292
 +#, c-format
 +msgid "  [%*<PRIuFAST8>]  %hhu argument\n"
 +msgid_plural "  [%*<PRIuFAST8>]  %hhu arguments\n"
@@ -1609,7 +1618,7 @@
 +msgstr[1] "  [%*<PRIuFAST8>]  %hhu argumenty\n"
 +msgstr[2] "  [%*<PRIuFAST8>]  %hhu argumentów\n"
 +
-+#: src/readelf.c:4156
++#: src/readelf.c:4300
 +msgid ""
 +"\n"
 +"Directory table:"
@@ -1617,7 +1626,7 @@
 +"\n"
 +"Tabela katalogu:"
 +
-+#: src/readelf.c:4172
++#: src/readelf.c:4316
 +msgid ""
 +"\n"
 +"File name table:\n"
@@ -1627,7 +1636,7 @@
 +"Tabela nazw plików:\n"
 +" Wpis Kat    Czas      Rozmiar   Nazwa"
 +
-+#: src/readelf.c:4201
++#: src/readelf.c:4345
 +msgid ""
 +"\n"
 +"Line number statements:"
@@ -1635,86 +1644,86 @@
 +"\n"
 +"Instrukcje numerów linii:"
 +
-+#: src/readelf.c:4261
++#: src/readelf.c:4405
 +#, c-format
 +msgid " special opcode %u: address+%u = %#<PRIx64>, line%+d = %zu\n"
 +msgstr " instrukcja specjalna %u: adres+%u = %#<PRIx64>, linia%+d = %zu\n"
 +
-+#: src/readelf.c:4281
++#: src/readelf.c:4425
 +#, c-format
 +msgid " extended opcode %u: "
 +msgstr " instrukcja rozszerzona %u: "
 +
-+#: src/readelf.c:4286
++#: src/readelf.c:4430
 +msgid "end of sequence"
 +msgstr "koniec sekwencji"
 +
-+#: src/readelf.c:4299
++#: src/readelf.c:4443
 +#, c-format
 +msgid "set address to %#<PRIx64>\n"
 +msgstr "ustawienie adresu na %#<PRIx64>\n"
 +
-+#: src/readelf.c:4319
++#: src/readelf.c:4463
 +#, c-format
 +msgid "define new file: dir=%u, mtime=%<PRIu64>, length=%<PRIu64>, name=%s\n"
 +msgstr "definicja nowego pliku: dir=%u, mtime=%<PRIu64>, długość=%<PRIu64>, nazwa=%s\n"
 +
-+#: src/readelf.c:4328
++#: src/readelf.c:4472
 +msgid "unknown opcode"
 +msgstr "nieznany kod instrukcji"
 +
-+#: src/readelf.c:4340
++#: src/readelf.c:4484
 +msgid " copy"
 +msgstr " kopiowanie"
 +
-+#: src/readelf.c:4348
++#: src/readelf.c:4492
 +#, c-format
 +msgid " advance address by %u to %#<PRIx64>\n"
 +msgstr " zwiększenie adresu o %u do %#<PRIx64>\n"
 +
-+#: src/readelf.c:4358
++#: src/readelf.c:4502
 +#, c-format
 +msgid " advance line by constant %d to %<PRId64>\n"
 +msgstr " zwiększenie linii o stałą %d do %<PRId64>\n"
 +
-+#: src/readelf.c:4366
<<Diff was trimmed, longer than 597 lines>>

---- CVS-web:
    http://cvs.pld-linux.org/SOURCES/elfutils-alpha.patch?r1=1.4&r2=1.5&f=u
    http://cvs.pld-linux.org/SOURCES/elfutils-pl.po.patch?r1=1.11&r2=1.12&f=u



More information about the pld-cvs-commit mailing list