b937567
Summary: An API for Run-time Code Generation
b937567
License: LGPLv2+
b937567
Name: dyninst
b937567
Group: Development/Libraries
44469eb
Release: 7%{?dist}
b937567
URL: http://www.dyninst.org
72363a4
Version: 9.3.2
9377e94
# Dyninst only has full support for a few architectures.
9377e94
# It has some preliminary support for aarch64 and ppc64le,
9377e94
# but we're waiting for those to be feature-complete.
9377e94
ExclusiveArch: %{ix86} x86_64 ppc ppc64
b937567
7c19ffd
Source0: https://github.com/dyninst/dyninst/archive/v%{version}/dyninst-%{version}.tar.gz
e87eb19
# Explicit version since it does not match the source version
e87eb19
Source1: https://github.com/dyninst/testsuite/archive/v9.3.0/testsuite-9.3.0.tar.gz
eafaeab
1154171
Patch1: testsuite-9.3.0-junit-nullptr.patch
44469eb
Patch2: addrtranslate-sysv.patch
44469eb
Patch3: Object-elf.patch
1154171
2203dde
%global dyninst_base dyninst-%{version}
e87eb19
# Explicit version since it does not match the source version
e87eb19
%global testsuite_base testsuite-9.3.0
f896851
2203dde
BuildRequires: gcc-c++
8742d2a
BuildRequires: libdwarf-devel >= 20111030
b937567
BuildRequires: elfutils-libelf-devel
b937567
BuildRequires: boost-devel
56ea310
BuildRequires: binutils-devel
56ea310
BuildRequires: cmake
b937567
4d44e84
# Extra requires just for the testsuite
4d44e84
BuildRequires: gcc-gfortran glibc-static libstdc++-static nasm
4d44e84
4d44e84
# Testsuite files should not provide/require anything
4d44e84
%{?filter_setup:
4d44e84
%filter_provides_in %{_libdir}/dyninst/testsuite/
4d44e84
%filter_requires_in %{_libdir}/dyninst/testsuite/
4d44e84
%filter_setup
4d44e84
}
4d44e84
b937567
%description
b937567
b937567
Dyninst is an Application Program Interface (API) to permit the insertion of
b937567
code into a running program. The API also permits changing or removing
b937567
subroutine calls from the application program. Run-time code changes are
b937567
useful to support a variety of applications including debugging, performance
b937567
monitoring, and to support composing applications out of existing packages.
b937567
The goal of this API is to provide a machine independent interface to permit
b937567
the creation of tools and applications that use run-time code patching.
b937567
3ce3462
%package doc
3ce3462
Summary: Documentation for using the Dyninst API
3ce3462
Group: Documentation
3ce3462
%description doc
3ce3462
dyninst-doc contains API documentation for the Dyninst libraries.
3ce3462
b937567
%package devel
b937567
Summary: Header files for the compiling programs with Dyninst
b937567
Group: Development/System
b937567
Requires: dyninst = %{version}-%{release}
7b19db7
Requires: boost-devel
56ea310
b937567
%description devel
3ce3462
dyninst-devel includes the C header files that specify the Dyninst user-space
b937567
libraries and interfaces. This is required for rebuilding any program
b937567
that uses Dyninst.
b937567
b937567
%package static
b937567
Summary: Static libraries for the compiling programs with Dyninst
b937567
Group: Development/System
4d44e84
Requires: dyninst-devel = %{version}-%{release}
b937567
%description static
b937567
dyninst-static includes the static versions of the library files for
b937567
the dyninst user-space libraries and interfaces.
b937567
4d44e84
%package testsuite
4d44e84
Summary: Programs for testing Dyninst
4d44e84
Group: Development/System
56ea310
Requires: dyninst = %{version}-%{release}
7c432c4
Requires: dyninst-devel = %{version}-%{release}
56ea310
Requires: dyninst-static = %{version}-%{release}
56ea310
Requires: glibc-static
4d44e84
%description testsuite
4d44e84
dyninst-testsuite includes the test harness and target programs for
4d44e84
making sure that dyninst works properly.
4d44e84
b937567
%prep
b937567
%setup -q -n %{name}-%{version} -c
b937567
%setup -q -T -D -a 1
f04d638
1154171
%patch1 -p0 -b.nullptr
44469eb
%patch2 -p0 -b.addrtrans
44469eb
%patch3 -p0 -b.objelf
1154171
1154171
# cotire seems to cause non-deterministic gcc errors
1154171
# https://bugzilla.redhat.com/show_bug.cgi?id=1420551
1154171
sed -i.cotire -e 's/USE_COTIRE true/USE_COTIRE false/' \
1154171
  %{dyninst_base}/cmake/shared.cmake
1154171
b937567
%build
b937567
f896851
cd %{dyninst_base}
b937567
56ea310
%cmake \
f896851
 -DENABLE_STATIC_LIBS=1 \
56ea310
 -DINSTALL_LIB_DIR:PATH=%{_libdir}/dyninst \
56ea310
 -DINSTALL_INCLUDE_DIR:PATH=%{_includedir}/dyninst \
56ea310
 -DINSTALL_CMAKE_DIR:PATH=%{_libdir}/cmake/Dyninst \
f896851
 -DCMAKE_BUILD_TYPE=None \
56ea310
 -DCMAKE_SKIP_RPATH:BOOL=YES
f896851
%make_build
56ea310
56ea310
# Hack to install dyninst nearby, so the testsuite can use it
56ea310
make DESTDIR=../install install
f896851
find ../install -name '*.cmake' -execdir \
f896851
  sed -i -e 's!%{_prefix}!../install&!' '{}' '+'
56ea310
f896851
cd ../%{testsuite_base}
56ea310
%cmake \
f896851
 -DDyninst_DIR:PATH=$PWD/../install%{_libdir}/cmake/Dyninst \
56ea310
 -DINSTALL_DIR:PATH=%{_libdir}/dyninst/testsuite \
56ea310
 -DCMAKE_BUILD_TYPE:STRING=Debug \
56ea310
 -DCMAKE_SKIP_RPATH:BOOL=YES
f896851
%make_build
b937567
b937567
%install
b937567
f896851
cd %{dyninst_base}
f896851
%make_install
b937567
f896851
# It doesn't install docs the way we want, so remove them.
f896851
# We'll just grab the pdfs later, directly from the build dir.
f896851
rm -v %{buildroot}%{_docdir}/*-%{version}.pdf
f896851
f896851
cd ../%{testsuite_base}
f896851
%make_install
56ea310
b937567
mkdir -p %{buildroot}/etc/ld.so.conf.d
b937567
echo "%{_libdir}/dyninst" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
b937567
f896851
# Ugly hack to mask testsuite files from debuginfo extraction.  Running the
4d44e84
# testsuite requires debuginfo, so extraction is useless.  However, debuginfo
4d44e84
# extraction is still nice for the main libraries, so we don't want to disable
4d44e84
# it package-wide.  The permissions are restored by attr(755,-,-) in files.
f896851
find %{buildroot}%{_libdir}/dyninst/testsuite/ \
f896851
  -type f '!' -name '*.a' -execdir chmod 644 '{}' '+'
4d44e84
b937567
%post -p /sbin/ldconfig
b937567
%postun -p /sbin/ldconfig
b937567
b937567
%files
3ce3462
%dir %{_libdir}/dyninst
b937567
%{_libdir}/dyninst/*.so.*
b937567
f896851
%doc %{dyninst_base}/COPYRIGHT
f896851
%doc %{dyninst_base}/LGPL
3ce3462
3ce3462
%config(noreplace) /etc/ld.so.conf.d/*
b937567
3ce3462
%files doc
2203dde
%doc %{dyninst_base}/dataflowAPI/doc/dataflowAPI.pdf
f896851
%doc %{dyninst_base}/dynC_API/doc/dynC_API.pdf
f896851
%doc %{dyninst_base}/dyninstAPI/doc/dyninstAPI.pdf
f896851
%doc %{dyninst_base}/instructionAPI/doc/instructionAPI.pdf
f896851
%doc %{dyninst_base}/parseAPI/doc/parseAPI.pdf
f896851
%doc %{dyninst_base}/patchAPI/doc/patchAPI.pdf
f896851
%doc %{dyninst_base}/proccontrol/doc/proccontrol.pdf
f896851
%doc %{dyninst_base}/stackwalk/doc/stackwalk.pdf
f896851
%doc %{dyninst_base}/symtabAPI/doc/symtabAPI.pdf
b937567
b937567
%files devel
b937567
%{_includedir}/dyninst
b937567
%{_libdir}/dyninst/*.so
56ea310
%{_libdir}/cmake/Dyninst
b937567
b937567
%files static
b937567
%{_libdir}/dyninst/*.a
b937567
4d44e84
%files testsuite
2203dde
%{_bindir}/parseThat
4d44e84
%dir %{_libdir}/dyninst/testsuite/
4d44e84
# Restore the permissions that were hacked out above, during install.
2203dde
%attr(755,root,root) %{_libdir}/dyninst/testsuite/*[!a]
f896851
%attr(644,root,root) %{_libdir}/dyninst/testsuite/*.a
4d44e84
b937567
%changelog
44469eb
* Wed Oct 04 2017 Stan Cox <scox@redhat.com> - 9.3.2-7
44469eb
- Fix swbz22248, handle R_*_IRELATIV, swbz22004, ignore linux-vdso64.so.1
44469eb
b7f8701
* Sun Aug 06 2017 Björn Esser <besser82@fedoraproject.org> - 9.3.2-6
b7f8701
- Rebuilt for AutoReq cmake-filesystem
b7f8701
3593432
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.3.2-5
3593432
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3593432
6439a85
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.3.2-4
6439a85
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6439a85
8b574af
* Thu Jul 20 2017 Kalev Lember <klember@redhat.com> - 9.3.2-3
8b574af
- Rebuilt for Boost 1.64
8b574af
Igor Gnatenko 7c1d87c
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 9.3.2-2
Igor Gnatenko 7c1d87c
- Rebuild due to bug in RPM (RHBZ #1468476)
Igor Gnatenko 7c1d87c
72363a4
* Wed Jul 05 2017 Stan Cox <scox@redhat.com> - 9.3.2-1
72363a4
- Update to 9.3.2
72363a4
e87eb19
* Mon Mar 06 2017 Stan Cox <scox@redhat.com> - 9.3.1-1
e87eb19
- Update to 9.3.1
e87eb19
2ba6f6c
* Wed Feb 8 2017 William Cohen <wcohen@redhat.com> - 9.3.0-2
2ba6f6c
- Rebuild for boost 1.63
2ba6f6c
7c19ffd
* Mon Jan 09 2017 Josh Stone <jistone@redhat.com> - 9.3.0-1
7c19ffd
- Update to 9.3.0
7c19ffd
211f9c4
* Tue Nov 22 2016 Josh Stone <jistone@redhat.com> - 9.2.0-5
211f9c4
- Backport fixes for rhbz1373197, attach thread races.
211f9c4
eafaeab
* Wed Sep 14 2016 Josh Stone <jistone@redhat.com> - 9.2.0-4
eafaeab
- Fix rhbz1373239, process attach without exe specified.
eafaeab
d36617a
* Mon Aug 15 2016 Josh Stone <jistone@redhat.com> - 9.2.0-3
9377e94
- Revert aarch64 and ppc64le support until they're more complete.
9377e94
7e622d7
* Fri Aug 12 2016 Peter Robinson <pbrobinson@fedoraproject.org> 9.2.0-2
7e622d7
- aarch64 and ppc64le are now supported
7e622d7
2203dde
* Thu Jun 30 2016 Josh Stone <jistone@redhat.com> - 9.2.0-1
2203dde
- Update to 9.2.0
2203dde
2dcffbf
* Tue Jun 21 2016 Josh Stone <jistone@redhat.com> - 9.1.0-5
2dcffbf
- Use static TLS for libdyninstAPI_RT.so
2dcffbf
2ee1cda
* Thu Mar 10 2016 William Cohen <wcohen@redhat.com> - 9.1.0-4
2ee1cda
- Export libdyninstAPI_RT_init_maxthreads (ref rhbz1315841)
2ee1cda
722fe12
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 9.1.0-3
722fe12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
722fe12
Orion Poplawski 8330d29
* Sat Jan 23 2016 Orion Poplawski <orion@cora.nwra.com> - 9.1.0-2
Orion Poplawski 8330d29
- Rebuild for boost 1.60
Orion Poplawski 8330d29
41250ca
* Fri Dec 18 2015 Josh Stone <jistone@redhat.com> - 9.1.0-1
41250ca
- Update to 9.1.0
41250ca
f896851
* Fri Sep 04 2015 Josh Stone <jistone@redhat.com> - 9.0.3-1
f896851
- Update to 9.0.3
f896851
e0f020a
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 8.2.1-9
e0f020a
- Rebuilt for Boost 1.59
e0f020a
92d8cdc
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.2.1-8
92d8cdc
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
92d8cdc
f04d638
* Thu Jul 23 2015 Josh Stone <jistone@redhat.com> - 8.2.1-7
f04d638
- Patch use of boost::bind for boost 1.58.
f04d638
85520ee
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 8.2.1-6
85520ee
- rebuild for Boost 1.58
85520ee
f99cff3
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.2.1-5
f99cff3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f99cff3
63bb628
* Fri Apr 17 2015 Frank Ch. Eigler <fche@redhat.com> - 8.2.1-4
63bb628
- Rebuild with gcc 5.0.1 for abitag-equipped cxx11 symbols.
63bb628
193e86e
* Sat Feb 14 2015 Frank Ch. Eigler <fche@redhat.com> - 8.2.1-3
193e86e
- Rebuild with gcc 5 for std::__cxx11::basic_string etc. ABI
193e86e
Petr Machata 4100ab7
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 8.2.1-2
Petr Machata 4100ab7
- Rebuild for boost 1.57.0
Petr Machata 4100ab7
2dcd614
* Fri Oct 31 2014 Josh Stone <jistone@redhat.com> - 8.2.1-1
2dcd614
- Update to point release 8.2.1.
2dcd614
56ea310
* Wed Aug 20 2014 Josh Stone <jistone@redhat.com> - 8.2.0-1
56ea310
- rebase to 8.2.0, using upstream tag "v8.2.0.1"
56ea310
b893220
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-11
b893220
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b893220
873b191
* Mon Jul 07 2014 Josh Stone <jistone@redhat.com> - 8.1.2-10
873b191
- Flip from ExcludeArch to ExclusiveArch (ref rhbz1113991)
873b191
f2a80da
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-9
f2a80da
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f2a80da
Petr Machata 260ae38
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 8.1.2-8
Petr Machata 260ae38
- Rebuild for boost 1.55.0
Petr Machata 260ae38
6505175
* Thu May 22 2014 Josh Stone <jistone@redhat.com> - 8.1.2-7
6505175
- Rebuild for libdwarf.so.1
6505175
8570b1c
* Wed Dec 11 2013 Josh Stone <jistone@redhat.com> 8.1.2-6
8570b1c
- Fix rhbz1040715 (testsuite g++ optimization)
8570b1c
26f6694
* Tue Dec 03 2013 Josh Stone <jistone@redhat.com> 8.1.2-5
26f6694
- Fix rhbz1037048 (-Werror=format-security FTBFS)
26f6694
9a7f0c0
* Mon Aug 05 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-4
9a7f0c0
- Fix rhbz991889 (FTBFS).
9a7f0c0
fbc2dfe
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-3
fbc2dfe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
fbc2dfe
Petr Machata e716573
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 8.1.2-2
Petr Machata e716573
- Rebuild for boost 1.54.0
Petr Machata e716573
55f25f6
* Tue Jun 18 2013 Josh Stone <jistone@redhat.com> 8.1.2-1
55f25f6
- Update to release 8.1.2.
55f25f6
ddf1ba5
* Fri Mar 15 2013 Josh Stone <jistone@redhat.com> 8.1.1-1
ddf1ba5
- Update to release 8.1.1.
ddf1ba5
- Drop the backported dyninst-test2_4-kill-init.patch.
ddf1ba5
- Drop the now-upstreamed dyninst-unused_vars.patch.
ddf1ba5
- Update other patches for context.
ddf1ba5
- Patch the installed symlinks to be relative, not $(DEST) filled.
ddf1ba5
7c432c4
* Tue Feb 26 2013 Josh Stone <jistone@redhat.com> 8.0-7
7c432c4
- testsuite: Require dyninst-devel for the libdyninstAPI_RT.so symlink
7c432c4
e5cc52d
* Tue Feb 26 2013 Josh Stone <jistone@redhat.com> 8.0-6
e5cc52d
- Fix the testsuite path to include libtestlaunch.so
e5cc52d
4d44e84
* Mon Feb 25 2013 Josh Stone <jistone@redhat.com> 8.0-5
4d44e84
- Add a dyninst-testsuite package.
4d44e84
- Patch test2_4 to protect against running as root.
4d44e84
- Make dyninst-static require dyninst-devel.
4d44e84
0892d34
* Thu Feb 14 2013 Josh Stone <jistone@redhat.com> 8.0-4
0892d34
- Patch make.config to ensure rpm build flags are not discarded.
0892d34
3017702
* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 8.0-3
3017702
- Rebuild for Boost-1.53.0
3017702
74b3cbe
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 8.0-2
74b3cbe
- Rebuild for Boost-1.53.0
74b3cbe
c675622
* Tue Nov 20 2012 Josh Stone <jistone@redhat.com>
c675622
- Tweak the configure/make commands
c675622
- Disable the testsuite via configure.
c675622
- Set the private includedir and libdir via configure.
c675622
- Set VERBOSE_COMPILATION for make.
c675622
- Use DESTDIR for make install.
c675622
605a281
* Mon Nov 19 2012 Josh Stone <jistone@redhat.com> 8.0-1
605a281
- Update to release 8.0.
f896851
- Updated "files doc" to reflect renames.
605a281
- Drop the unused BuildRequires libxml2-devel.
605a281
- Drop the 7.99.x version-munging patch.
605a281
731bcf1
* Fri Nov 09 2012 Josh Stone <jistone@redhat.com> 7.99.2-0.29
731bcf1
- Rebase to git e99d7070bbc39c76d6d528db530046c22681c17e
731bcf1
80bdf27
* Mon Oct 29 2012 Josh Stone <jistone@redhat.com> 7.99.2-0.28
80bdf27
- Bump to 7.99.2 per abi-compliance-checker results
80bdf27
2e13576
* Fri Oct 26 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.27
2e13576
- Rebase to git dd8f40b7b4742ad97098613876efeef46d3d9e65
2e13576
- Use _smp_mflags to enable building in parallel.
2e13576
e983e5b
* Wed Oct 03 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.26
e983e5b
- Rebase to git 557599ad7417610f179720ad88366c32a0557127
e983e5b
8742d2a
* Thu Sep 20 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.25
8742d2a
- Rebase on newer git tree.
8742d2a
- Bump the fake version to 7.99.1 to account for ABI differences.
8742d2a
- Enforce the minimum libdwarf version.
8742d2a
- Drop the upstreamed R_PPC_NUM patch.
8742d2a
98878d9
* Wed Aug 15 2012 Karsten Hopp <karsten@redhat.com> 7.99-0.24
98878d9
- check if R_PPC_NUM is defined before using it, similar to R_PPC64_NUM
98878d9
3ce3462
* Mon Jul 30 2012 Josh Stone <jistone@redhat.com> 7.99-0.23
3ce3462
- Rebase on newer git tree.
3ce3462
- Update license files with upstream additions.
3ce3462
- Split documentation into -doc subpackage.
f896851
- Claim ownership of {_libdir}/dyninst.
3ce3462
7b19db7
* Fri Jul 27 2012 William Cohen <wcohen@redhat.com> - 7.99-0.22
7b19db7
- Correct requires for dyninst-devel.
7b19db7
9292264
* Wed Jul 25 2012 Josh Stone <jistone@redhat.com> - 7.99-0.21
9292264
- Rebase on newer git tree
9292264
- Update context in dyninst-git.patch
9292264
- Drop dyninst-delete_array.patch
9292264
- Drop dyninst-common-makefile.patch
9292264
c2c6c85
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.99-0.20
c2c6c85
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c2c6c85
09d6a6d
* Mon Jul 16 2012 William Cohen <wcohen@redhat.com> - 7.99-0.19
09d6a6d
- Patch common/i386-unknown-linux2.4/Makefile to build.
09d6a6d
221ead6
* Fri Jul 13 2012 William Cohen <wcohen@redhat.com> - 7.99-0.18
221ead6
- Rebase on newer git tree the has a number of merges into it.
221ead6
- Adjust spec file to allow direct use of git patches
221ead6
- Fix to eliminate unused varables.
221ead6
- Proper delete for array.
221ead6
3ed9091
* Thu Jun 28 2012 William Cohen <wcohen@redhat.com> - 7.99-0.17
3ed9091
- Rebase on newer git repo.
3ed9091
24518d8
* Thu Jun 28 2012 William Cohen <wcohen@redhat.com> - 7.99-0.16
24518d8
- Eliminate dynptr.h file use with rebase on newer git repo.
24518d8
4f1375b
* Mon Jun 25 2012 William Cohen <wcohen@redhat.com> - 7.99-0.14
4f1375b
- Rebase on newer git repo.
4f1375b
b937567
* Tue Jun 19 2012 William Cohen <wcohen@redhat.com> - 7.99-0.12
b937567
- Fix static library and header file permissions.
b937567
- Use sources from the dyninst git repositories.
b937567
- Fix 32-bit library versioning for libdyninstAPI_RT_m32.so.
b937567
b937567
* Wed Jun 13 2012 William Cohen <wcohen@redhat.com> - 7.99-0.11
b937567
- Fix library versioning.
b937567
- Move .so links to dyninst-devel.
b937567
- Remove unneded clean section.
b937567
b937567
* Fri May 11 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.9
b937567
- Clean up Makefile rules.
b937567
5c60460
* Sat May 5 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.8
b937567
- Clean up spec file.
b937567
b937567
* Wed May 2 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.7
b937567
- Use "make install" and do staged build.
b937567
- Use rpm configure macro.
b937567
b937567
* Thu Mar 15 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.5
b937567
- Nuke the bundled boost files and use the boost-devel rpm instead.
b937567
b937567
* Mon Mar 12 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.4
b937567
- Initial submission of dyninst spec file.