Bug 426180

Summary: mono build needs to require libunwind-devel on ia64
Product: [Fedora] Fedora Reporter: Doug Chapman <dchapman>
Component: monoAssignee: Alexander Larsson <alexl>
Status: CLOSED NEXTRELEASE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: high Docs Contact:
Priority: high    
Version: rawhideCC: paul
Target Milestone: ---   
Target Release: ---   
Hardware: ia64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2007-12-19 10:34:49 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 163350    

Description Doug Chapman 2007-12-19 01:12:55 UTC
Description of problem:
The mono package fails to build on ia64 under mock.  The reason is libunwind has
now been split into libunwind and libunwind-devel.  mono needs to require both
for building so mock knows to pull them in.

This is just for ia64 so it is a matter of updating the spec file with:

%ifarch ia64
BuildRequires:  libunwind
BuildRequires:  libunwind-devel
%endif


thanks,

- Doug Chapman


Version-Release number of selected component (if applicable):
mono-1.2.5.2-2.fc9

How reproducible:


Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Paul F. Johnson 2007-12-19 10:30:32 UTC
Unless the devel repo I'm using has not been updated for a long time, but the
last version of libunwind for x86_64 is an fc7 build.

I don't have libunwind installed and it's yet to fail to build.

Are you sure on this?

Comment 2 Doug Chapman 2007-12-19 14:18:40 UTC
It works OK on x86_64 becuase mono does not require libunwind at all on that
platform.  It is required however for ia64.  Note in the current spec file there is:

%ifarch ia64
BuildRequires:  libunwind
%endif

we need to change this to

%ifarch ia64
BuildRequires:  libunwind
BuildRequires:  libunwind-devel
%endif

thanks,

- Doug