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