blob: f48c3983d8b5761d251966099d13a22b58b8e69f [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001# -*- rpm-spec-*-
Ulrich Drepper65c5c2d2007-02-08 21:11:32 +00002Summary: A collection of utilities and DSOs to handle compiled objects
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00003Name: elfutils
4Version: @PACKAGE_VERSION@
5Release: 1
Roland McGrath42f68682007-08-09 07:54:22 +00006License: GPLv2 with exceptions
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00007Group: Development/Tools
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00008Source: elfutils-%{version}.tar.gz
9Obsoletes: libelf libelf-devel
10Requires: elfutils-libelf = %{version}-%{release}
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000011Requires: glibc >= 2.3.1-2
12
13# ExcludeArch: xxx
14
15BuildRoot: %{_tmppath}/%{name}-root
Ulrich Drepperf231e272008-01-02 18:07:17 +000016BuildRequires: gcc >= 4.1.2-33
17BuildRequires: glibc >= 2.7
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000018BuildRequires: bison >= 1.875
19BuildRequires: flex >= 2.5.4a
20BuildRequires: bzip2
21
22%define _gnu %{nil}
23%define _programprefix eu-
24
25%description
26Elfutils is a collection of utilities, including ld (a linker),
27nm (for listing symbols from object files), size (for listing the
28section sizes of an object or archive file), strip (for discarding
29symbols), readelf (to see the raw ELF file structures), and elflint
30(to check for well-formed ELF files). Also included are numerous
31helper libraries which implement DWARF, ELF, and machine-specific ELF
32handling.
33
34%package devel
35Summary: Development libraries to handle compiled objects.
36Group: Development/Tools
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000037Requires: elfutils = %{version}-%{release}
38Requires: elfutils-libelf-devel = %{version}-%{release}
39
40%description devel
41The elfutils-devel package contains the libraries to create
42applications for handling compiled objects. libebl provides some
43higher-level ELF access functionality. libdw provides access to
44the DWARF debugging information. libasm provides a programmable
45assembler interface.
46
Ulrich Drepper56bc0b82006-12-18 22:38:08 +000047%package devel-static
48Summary: Static archives to handle compiled objects.
49Group: Development/Tools
50Requires: elfutils-devel = %{version}-%{release}
51
52%description devel-static
53The elfutils-devel-static archive contains the static archives
54with the code the handle compiled objects.
55
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000056%package libelf
57Summary: Library to read and write ELF files.
58Group: Development/Tools
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000059
60%description libelf
61The elfutils-libelf package provides a DSO which allows reading and
62writing ELF files on a high level. Third party programs depend on
63this package to read internals of ELF files. The programs of the
64elfutils package use it also to generate new ELF files.
65
66%package libelf-devel
67Summary: Development support for libelf
68Group: Development/Tools
69Requires: elfutils-libelf = %{version}-%{release}
70Conflicts: libelf-devel
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000071
72%description libelf-devel
73The elfutils-libelf-devel package contains the libraries to create
74applications for handling compiled objects. libelf allows you to
75access the internals of the ELF object file format, so you can see the
76different sections of an ELF file.
77
Ulrich Drepper56bc0b82006-12-18 22:38:08 +000078%package libelf-devel-static
79Summary: Static archive of libelf
80Group: Development/Tools
81Requires: elfutils-libelf-devel = %{version}-%{release}
82Conflicts: libelf-devel
83
84%description libelf-devel-static
85The elfutils-libelf-static package contains the static archive
86for libelf.
87
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000088%prep
89%setup -q
90
91%build
92%configure --program-prefix=%{_programprefix}
93make
94
95%install
96rm -rf ${RPM_BUILD_ROOT}
97mkdir -p ${RPM_BUILD_ROOT}%{_prefix}
98
99%makeinstall
100
101chmod +x ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/lib*.so*
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000102chmod +x ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/elfutils/lib*.so*
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000103
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000104# XXX Nuke unpackaged files
105{ cd ${RPM_BUILD_ROOT}
106 rm -f .%{_bindir}/eu-ld
107 rm -f .%{_includedir}/elfutils/libasm.h
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000108 rm -f .%{_libdir}/libasm.so
109 rm -f .%{_libdir}/libasm.a
110}
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000111
112%check
113make check
114
115%clean
116rm -rf ${RPM_BUILD_ROOT}
117
118%post -p /sbin/ldconfig
119
120%postun -p /sbin/ldconfig
121
122%post libelf -p /sbin/ldconfig
123
124%postun libelf -p /sbin/ldconfig
125
126%files
127%defattr(-,root,root)
128%doc README TODO
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000129%{_bindir}/eu-elflint
130%{_bindir}/eu-nm
131%{_bindir}/eu-readelf
132%{_bindir}/eu-size
133%{_bindir}/eu-strip
134%{_bindir}/eu-findtextrel
135%{_bindir}/eu-addr2line
136%{_bindir}/eu-elfcmp
Ulrich Drepperfbe998a2005-08-29 16:27:10 +0000137%{_bindir}/eu-ranlib
138%{_bindir}/eu-strings
Ulrich Drepper56bc0b82006-12-18 22:38:08 +0000139%{_bindir}/eu-objdump
Ulrich Drepperddfbb642007-02-05 21:15:49 +0000140%{_bindir}/eu-ar
Roland McGrath4be15242007-04-25 03:09:33 +0000141%{_bindir}/eu-unstrip
Ulrich Drepperf231e272008-01-02 18:07:17 +0000142%{_bindir}/eu-make-debug-archive
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000143#%{_bindir}/eu-ld
Ulrich Drepperf231e272008-01-02 18:07:17 +0000144%{_libdir}/libasm-%{version}.so
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000145%{_libdir}/libdw-%{version}.so
Ulrich Drepperf231e272008-01-02 18:07:17 +0000146%{_libdir}/libasm.so.*
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000147%{_libdir}/libdw.so.*
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000148%dir %{_libdir}/elfutils
149%{_libdir}/elfutils/lib*.so
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000150
151%files devel
152%defattr(-,root,root)
153%{_includedir}/dwarf.h
154%dir %{_includedir}/elfutils
155%{_includedir}/elfutils/elf-knowledge.h
Ulrich Drepperf231e272008-01-02 18:07:17 +0000156#%{_includedir}/elfutils/libasm.h
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000157%{_includedir}/elfutils/libebl.h
158%{_includedir}/elfutils/libdw.h
159%{_includedir}/elfutils/libdwfl.h
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000160%{_libdir}/libebl.a
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000161#%{_libdir}/libasm.so
162%{_libdir}/libdw.so
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000163
Ulrich Drepper56bc0b82006-12-18 22:38:08 +0000164%files devel-static
165%{_libdir}/libdw.a
166#%{_libdir}/libasm.a
167
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000168%files libelf
169%defattr(-,root,root)
170%{_libdir}/libelf-%{version}.so
171%{_libdir}/libelf.so.*
172
173%files libelf-devel
174%defattr(-,root,root)
175%{_includedir}/libelf.h
176%{_includedir}/gelf.h
177%{_includedir}/nlist.h
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000178%{_libdir}/libelf.so
179
Ulrich Drepper56bc0b82006-12-18 22:38:08 +0000180%files libelf-devel-static
181%{_libdir}/libelf.a
182
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000183%changelog
Ulrich Dreppere7717c42007-11-11 19:34:11 +0000184* Sun Nov 11 2007 Ulrich Drepper <drepper@redhat.com> 0.131-1
185- libdw: DW_FORM_ref_addr support; dwarf_formref entry point now depreca
186ted; bug fixes for oddly-formatted DWARF
187- libdwfl: bug fixes in offline archive support, symbol table handling;
188 apply partial relocations for dwfl_module_address_section on
189ET_REL
190- libebl: powerpc backend support for Altivec registers
191
Ulrich Drepper98c5ead2007-10-16 07:34:55 +0000192* Mon Oct 15 2007 Ulrich Drepper <drepper@redhat.com> 0.130-1
193- readelf: -p option can take an argument like -x for one section,
194 or no argument (as before) for all SHF_STRINGS sections;
195 new option --archive-index (or -c); improved -n output fo
196r core files, on many machines
197- libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
198 new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
199- readelf, elflint: handle SHT_NOTE sections without requiring phdrs
200- elflint: stricter checks on debug sections
201- libdwfl: new functions dwfl_build_id_find_elf, dwfl_build_id_find_debu
202ginfo, dwfl_module_build_id, dwfl_module_report_build_id; suppo
203rt dynamic symbol tables found via phdrs; dwfl_standard_find_de
204buginfo now uses build IDs when available
205- unstrip: new option --list (or -n)
206- libebl: backend improvements for sparc, alpha, powerpc
207
Ulrich Drepper50c6a2f2007-08-14 22:32:30 +0000208* Tue Aug 14 2007 Ulrich Drepper <drepper@redhat.com> 0.129-1
209- readelf: new options --hex-dump (or -x), --strings (or -p)
210- addr2line: new option --symbols (or -S)
211
Ulrich Drepper553bf102007-04-19 04:24:34 +0000212* Wed Apr 18 2007 Ulrich Drepper <drepper@redhat.com> 0.127-1
213- libdw: new function dwarf_getsrcdirs
214- libdwfl: new functions dwfl_module_addrsym, dwfl_report_begin_add,
215 dwfl_module_address_section
216
Ulrich Drepperddfbb642007-02-05 21:15:49 +0000217* Mon Feb 5 2007 Ulrich Drepper <drepper@redhat.com> 0.126-1
218- new program: ar
219
Ulrich Drepper56bc0b82006-12-18 22:38:08 +0000220* Mon Dec 18 2006 Ulrich Drepper <drepper@redhat.com> 0.125-1
221- elflint: Compare DT_GNU_HASH tests.
222- move archives into -static RPMs
Ulrich Drepper8b2a7702006-12-18 22:39:01 +0000223- libelf, elflint: better support for core file handling
Ulrich Drepper56bc0b82006-12-18 22:38:08 +0000224
Ulrich Drepper955e1842006-10-10 17:32:41 +0000225* Tue Oct 10 2006 Ulrich Drepper <drepper@redhat.com> 0.124-1
226- libebl: sparc backend support for return value location
227- libebl, libdwfl: backend register name support extended with more info
228- libelf, libdw: bug fixes for unaligned accesses on machines that care
229- readelf, elflint: trivial bugs fixed
230
Roland McGrath1dee3602006-08-15 01:57:03 +0000231* Mon Aug 14 2006 Roland McGrath <roland@redhat.com> 0.123-1
232- libebl: Backend build fixes, thanks to Stepan Kasal.
233- libebl: ia64 backend support for register names, return value location
234- libdwfl: Handle truncated linux kernel module section names.
235- libdwfl: Look for linux kernel vmlinux files with .debug suffix.
236- elflint: Fix checks to permit --hash-style=gnu format.
237
Ulrich Drepperf48d0b02006-07-12 20:46:54 +0000238* Wed Jul 12 2006 Ulrich Drepper <drepper@redhat.com> 0.122-1
239- libebl: add function to test for relative relocation
240- elflint: fix and extend DT_RELCOUNT/DT_RELACOUNT checks
241- elflint, readelf: add support for DT_GNU_HASHlibelf: add elf_gnu_hash
242- elflint, readelf: add support for 64-bit SysV-style hash tables
243- libdwfl: new functions dwfl_module_getsymtab, dwfl_module_getsym.
244
Ulrich Drepperee4b9272006-06-15 03:21:46 +0000245* Wed Jun 14 2006 <drepper@redhat.com> 0.121-1
246- libelf: bug fixes for rewriting existing files when using mmap.
247- make all installed headers usable in C++ code.
248- readelf: better output format.
249- elflint: fix tests of dynamic section content.
250- ld: Implement --as-needed, --execstack, PT_GNU_STACK. Many small patc
251hes.
252- libdw, libdwfl: handle files without aranges info.
Ulrich Drepperd9a87122006-05-28 08:00:33 +0000253
Ulrich Drepper3a5052a2006-04-05 03:13:34 +0000254* Tue Apr 4 2006 Ulrich Drepper <drepper@redhat.com> 0.120-1
255- Bug fixes.
256- dwarf.h updated for DWARF 3.0 final specification.
257- libdwfl: New function dwfl_version.
Roland McGrath4be15242007-04-25 03:09:33 +0000258- The license is now GPL for most files. The libelf, libebl, libdw,and
Ulrich Drepper3a5052a2006-04-05 03:13:34 +0000259libdwfl libraries have additional exceptions. Add reference toOIN.
260
Ulrich Drepper361df7d2006-04-04 21:38:57 +0000261* Thu Jan 12 2006 Roland McGrath <roland@redhat.com> 0.119-1
Roland McGrath321327a2006-01-13 00:51:21 +0000262- elflint: more tests.
263- libdwfl: New function dwfl_module_register_names.
264- libebl: New backend hook for register names.
265
Ulrich Drepper539529a2005-12-07 00:52:10 +0000266* Tue Dec 6 2005 Ulrich Drepper <drepper@redhat.com> 0.118-1
267- elflint: more tests.
268- libdwfl: New function dwfl_module_register_names.
269- libebl: New backend hook for register names.
270
Ulrich Drepper32240f32005-11-18 03:25:35 +0000271* Thu Nov 17 2005 Ulrich Drepper <drepper@redhat.com> 0.117-1
272- libdwfl: New function dwfl_module_return_value_location.
273- libebl: Backend improvements for several CPUs.
274
Ulrich Dreppercf18d522005-10-31 20:19:31 +0000275* Mon Oct 31 2005 Ulrich Drepper <drepper@redhat.com> 0.116-1
276- libdw: New functions dwarf_ranges, dwarf_entrypc, dwarf_diecu, d
277warf_entry_breakpoints. Removed Dwarf_Func type and functions d
278warf_func_name, dwarf_func_lowpc, dwarf_func_highpc, dwarf_func_
279entrypc, dwarf_func_die; dwarf_getfuncs callback now uses Dwarf_
280Die, and dwarf_func_file, dwarf_func_line, dwarf_func_col replac
281ed by dwarf_decl_file, dwarf_decl_line, dwarf_decl_column; dwarf
282_func_inline, dwarf_func_inline_instances now take Dwarf_Die. Ty
283pe Dwarf_Loc renamed to Dwarf_Op; dwarf_getloclist, dwarf_addrlo
284clists renamed dwarf_getlocation, dwarf_getlocation_addr.
285
Ulrich Drepper3bbc9502005-09-02 20:29:56 +0000286* Fri Sep 2 2005 Ulrich Drepper <drepper@redhat.com> 0.115-1
287- libelf: speed-ups of non-mmap reading.
288- strings: New program.
289- Implement --enable-gcov option for configure.
290- libdw: New function dwarf_getscopes_die.
291
Ulrich Drepper958bf132005-08-24 21:40:55 +0000292* Wed Aug 24 2005 Ulrich Drepper <drepper@redhat.com> 0.114-1
293- libelf: new function elf_getaroff
294- libdw: Added dwarf_func_die, dwarf_func_inline, dwarf_func_inline_inst
295ances.
296- libdwfl: New functions dwfl_report_offline, dwfl_offline_section_addre
297ss, dwfl_linux_kernel_report_offline.
298- ranlib: new program
299
Ulrich Dreppere48c05b2005-08-15 21:47:33 +0000300* Mon Aug 15 2005 Ulrich Drepper <drepper@redhat.com> 0.114-1
301- libelf: new function elf_getaroff
302- ranlib: new program
303
Ulrich Drepperc5c33a62005-08-13 17:50:47 +0000304* Wed Aug 10 2005 Ulrich Drepper <@redhat.com> 0.113-1
305- elflint: relax a bit. Allow version definitions for defined symbols ag
Ulrich Drepperfbe998a2005-08-29 16:27:10 +0000306ainstDSO versions also for symbols in nobits sections. Allow .rodata
Ulrich Drepperc5c33a62005-08-13 17:50:47 +0000307sectionto have STRINGS and MERGE flag set.
308- strip: add some more compatibility with binutils.
309
Ulrich Drepper637963b2005-08-07 05:33:07 +0000310* Sat Aug 6 2005 Ulrich Drepper <@redhat.com> 0.113-1
311- elflint: relax a bit. Allow version definitions for defined symbols ag
Ulrich Drepperfbe998a2005-08-29 16:27:10 +0000312ainstDSO versions also for symbols in nobits sections. Allow .rodata
Ulrich Drepper637963b2005-08-07 05:33:07 +0000313sectionto have STRINGS and MERGE flag set.
314
315* Sat Aug 6 2005 Ulrich Drepper <@redhat.com> 0.113-1
316- elflint: relax a bit. Allow version definitions for defined symbols ag
317ainstDSO versions also for symbols in nobits sections.
318
Ulrich Drepperca2db8a2005-08-06 06:44:50 +0000319* Fri Aug 5 2005 Ulrich Drepper <@redhat.com> 0.112-1
320- elfcmp: some more relaxation.
321- elflint: many more tests, especially regarding to symbol versioning.
322- libelf: Add elfXX_offscn and gelf_offscn.
323- libasm: asm_begin interface changes.
324- libebl: Add three new interfaces to directly access machine, class, an
325ddata encoding information.
326- objdump: New program. Just the beginning.
327
Ulrich Drepper282bf322005-07-28 21:49:05 +0000328* Thu Jul 28 2005 Ulrich Drepper <@redhat.com> 0.111-1
329- libdw: now contains all of libdwfl. The latter is not installed anymore.
330- elfcmp: little usability tweak, name and index of differing section is
331 printed.
Roland McGrath5a765672005-07-28 09:12:43 +0000332
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000333* Sun Jul 24 2005 Ulrich Drepper <@redhat.com> 0.110-1
334- libelf: fix a numbe rof problems with elf_update
335- elfcmp: fix a few bugs. Compare gaps.
336- Fix a few PLT problems and mudflap build issues.
337- libebl: Don't expose Ebl structure definition in libebl.h. It's now p
338rivate.
339
340* Thu Jul 21 2005 Ulrich Drepper <@redhat.com> 0.109-1
341- libebl: Check for matching modules.
342- elflint: Check that copy relocations only happen for OBJECT or NOTYPE
343symbols.
344- elfcmp: New program.
345- libdwfl: New library.
346
347* Mon May 9 2005 Ulrich Drepper <@redhat.com> 0.108-1
348- strip: fix bug introduced in last change
349- libdw: records returned by dwarf_getsrclines are now sorted by address
350
351* Sun May 8 2005 Ulrich Drepper <@redhat.com> 0.108-1
352- strip: fix bug introduced in last change
353
354* Sun May 8 2005 Ulrich Drepper <@redhat.com> 0.107-1
355- readelf: improve DWARF output format
356- strip: support Linux kernel modules
357
358* Fri Apr 29 2005 Ulrich Drepper <drepper@redhat.com> 0.107-1
359- readelf: improve DWARF output format
360
361* Mon Apr 4 2005 Ulrich Drepper <drepper@redhat.com> 0.106-1
362- libdw: Updated dwarf.h from DWARF3 speclibdw: add new funtions dwarf_f
363unc_entrypc, dwarf_func_file, dwarf_func_line,dwarf_func_col, dwarf_ge
364tsrc_file
365
366* Fri Apr 1 2005 Ulrich Drepper <drepper@redhat.com> 0.105-1
367- addr2line: New program
368- libdw: add new functions: dwarf_addrdie, dwarf_macro_*, dwarf_getfuncs
369,dwarf_func_*.
370- findtextrel: use dwarf_addrdie
371
372* Mon Mar 28 2005 Ulrich Drepper <drepper@redhat.com> 0.104-1
373- findtextrel: New program.
374
375* Mon Mar 21 2005 Ulrich Drepper <drepper@redhat.com> 0.103-1
376- libdw: Fix using libdw.h with gcc < 4 and C++ code. Compiler bug.
377
378* Tue Feb 22 2005 Ulrich Drepper <drepper@redhat.com> 0.102-1
379- More Makefile and spec file cleanups.
380
381* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.94-1
382- upgrade to 0.94
383
384* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.93-1
385- upgrade to 0.93
386
387* Thu Jan 8 2004 Jakub Jelinek <jakub@redhat.com> 0.92-1
388- full version
389- macroized spec file for GPL or OSL builds
390- include only libelf under GPL plus wrapper scripts
391
392* Wed Jan 7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-2
393- macroized spec file for GPL or OSL builds
394
395* Wed Jan 7 2004 Ulrich Drepper <drepper@redhat.com>
396- split elfutils-devel into two packages.
397
398* Wed Jan 7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-1
399- include only libelf under GPL plus wrapper scripts
400
401* Tue Dec 23 2003 Jeff Johnson <jbj@redhat.com> 0.89-3
402- readelf, not readline, in %%description (#111214).
403
404* Fri Sep 26 2003 Bill Nottingham <notting@redhat.com> 0.89-1
405- update to 0.89 (fix eu-strip)
406
407* Tue Sep 23 2003 Jakub Jelinek <jakub@redhat.com> 0.86-3
408- update to 0.86 (fix eu-strip on s390x/alpha)
409- libebl is an archive now; remove references to DSO
410
411* Mon Jul 14 2003 Jeff Johnson <jbj@redhat.com> 0.84-3
412- upgrade to 0.84 (readelf/elflint improvements, rawhide bugs fixed).
413
414* Fri Jul 11 2003 Jeff Johnson <jbj@redhat.com> 0.83-3
415- upgrade to 0.83 (fix invalid ELf handle on *.so strip, more).
416
417* Wed Jul 9 2003 Jeff Johnson <jbj@redhat.com> 0.82-3
418- upgrade to 0.82 (strip tests fixed on big-endian).
419
420* Tue Jul 8 2003 Jeff Johnson <jbj@redhat.com> 0.81-3
421- upgrade to 0.81 (strip excludes unused symtable entries, test borked).
422
423* Thu Jun 26 2003 Jeff Johnson <jbj@redhat.com> 0.80-3
424- upgrade to 0.80 (debugedit changes for kernel in progress).
425
426* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
427- rebuilt
428
429* Wed May 21 2003 Jeff Johnson <jbj@redhat.com> 0.79-2
430- upgrade to 0.79 (correct formats for size_t, more of libdw "works").
431
432* Mon May 19 2003 Jeff Johnson <jbj@redhat.com> 0.78-2
433- upgrade to 0.78 (libdwarf bugfix, libdw additions).
434
435* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
436- debuginfo rebuild
437
438* Thu Feb 20 2003 Jeff Johnson <jbj@redhat.com> 0.76-2
439- use the correct way of identifying the section via the sh_info link.
440
441* Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 0.75-2
442- update to 0.75 (eu-strip -g fix)
443
444* Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 0.74-2
445- update to 0.74 (fix for writing with some non-dirty sections)
446
447* Thu Feb 6 2003 Jeff Johnson <jbj@redhat.com> 0.73-3
448- another -0.73 update (with sparc fixes).
449- do "make check" in %%check, not %%install, section.
450
451* Mon Jan 27 2003 Jeff Johnson <jbj@redhat.com> 0.73-2
452- update to 0.73 (with s390 fixes).
453
454* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
455- rebuilt
456
457* Wed Jan 22 2003 Jakub Jelinek <jakub@redhat.com> 0.72-4
458- fix arguments to gelf_getsymshndx and elf_getshstrndx
459- fix other warnings
460- reenable checks on s390x
461
462* Sat Jan 11 2003 Karsten Hopp <karsten@redhat.de> 0.72-3
463- temporarily disable checks on s390x, until someone has
464 time to look at it
465
466* Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 0.72-2
467- update to 0.72
468
469* Wed Dec 11 2002 Jakub Jelinek <jakub@redhat.com> 0.71-2
470- update to 0.71
471
472* Wed Dec 11 2002 Jeff Johnson <jbj@redhat.com> 0.69-4
473- update to 0.69.
474- add "make check" and segfault avoidance patch.
475- elfutils-libelf needs to run ldconfig.
476
477* Tue Dec 10 2002 Jeff Johnson <jbj@redhat.com> 0.68-2
478- update to 0.68.
479
480* Fri Dec 6 2002 Jeff Johnson <jbj@redhat.com> 0.67-2
481- update to 0.67.
482
483* Tue Dec 3 2002 Jeff Johnson <jbj@redhat.com> 0.65-2
484- update to 0.65.
485
486* Mon Dec 2 2002 Jeff Johnson <jbj@redhat.com> 0.64-2
487- update to 0.64.
488
489* Sun Dec 1 2002 Ulrich Drepper <drepper@redhat.com> 0.64
490- split packages further into elfutils-libelf
491
492* Sat Nov 30 2002 Jeff Johnson <jbj@redhat.com> 0.63-2
493- update to 0.63.
494
495* Fri Nov 29 2002 Ulrich Drepper <drepper@redhat.com> 0.62
496- Adjust for dropping libtool
497
498* Sun Nov 24 2002 Jeff Johnson <jbj@redhat.com> 0.59-2
499- update to 0.59
500
501* Thu Nov 14 2002 Jeff Johnson <jbj@redhat.com> 0.56-2
502- update to 0.56
503
504* Thu Nov 7 2002 Jeff Johnson <jbj@redhat.com> 0.54-2
505- update to 0.54
506
507* Sun Oct 27 2002 Jeff Johnson <jbj@redhat.com> 0.53-2
508- update to 0.53
509- drop x86_64 hack, ICE fixed in gcc-3.2-11.
510
511* Sat Oct 26 2002 Jeff Johnson <jbj@redhat.com> 0.52-3
512- get beehive to punch a rhpkg generated package.
513
514* Wed Oct 23 2002 Jeff Johnson <jbj@redhat.com> 0.52-2
515- build in 8.0.1.
516- x86_64: avoid gcc-3.2 ICE on x86_64 for now.
517
518* Tue Oct 22 2002 Ulrich Drepper <drepper@redhat.com> 0.52
519- Add libelf-devel to conflicts for elfutils-devel
520
521* Mon Oct 21 2002 Ulrich Drepper <drepper@redhat.com> 0.50
522- Split into runtime and devel package
523
524* Fri Oct 18 2002 Ulrich Drepper <drepper@redhat.com> 0.49
525- integrate into official sources
526
527* Wed Oct 16 2002 Jeff Johnson <jbj@redhat.com> 0.46-1
528- Swaddle.