forked from pool/mono-core
This commit is contained in:
parent
4ca4e5b98f
commit
63f2e9ebf1
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 30 12:16:15 CEST 2007 - ro@suse.de
|
||||||
|
|
||||||
|
- try to use 64bit libs on ppc64 as well in find-requires
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 05 20:03:53 MST 2007 - wberrier@novell.com
|
Tue Jul 05 20:03:53 MST 2007 - wberrier@novell.com
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ Group: Development/Languages/Mono
|
|||||||
Summary: A .NET Runtime Environment
|
Summary: A .NET Runtime Environment
|
||||||
URL: http://go-mono.org/
|
URL: http://go-mono.org/
|
||||||
Version: 1.2.4
|
Version: 1.2.4
|
||||||
Release: 7
|
Release: 15
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Source0: mono-%{version}.tar.bz2
|
Source0: mono-%{version}.tar.bz2
|
||||||
Patch26: mono-r78768_ppc_pointer_cast.patch
|
Patch26: mono-r78768_ppc_pointer_cast.patch
|
||||||
@ -24,6 +24,7 @@ Patch28: mono-config_rpm_requires.patch
|
|||||||
Patch29: mono-provides_fix_r76875.patch
|
Patch29: mono-provides_fix_r76875.patch
|
||||||
Patch30: mono-r77377_fix_ia64_find-requires.patch
|
Patch30: mono-r77377_fix_ia64_find-requires.patch
|
||||||
Patch31: mono-r81450_fix_ia64_find-requires.patch
|
Patch31: mono-r81450_fix_ia64_find-requires.patch
|
||||||
|
Patch32: mono-ppc64_find-requires.patch
|
||||||
ExclusiveArch: %ix86 x86_64 ppc hppa armv4l sparc s390 ia64 s390x
|
ExclusiveArch: %ix86 x86_64 ppc hppa armv4l sparc s390 ia64 s390x
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Provides: mono = %{version}-%{release}
|
Provides: mono = %{version}-%{release}
|
||||||
@ -927,6 +928,7 @@ Authors:
|
|||||||
%patch29
|
%patch29
|
||||||
%patch30
|
%patch30
|
||||||
%patch31
|
%patch31
|
||||||
|
%patch32
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# What's this for?
|
# What's this for?
|
||||||
@ -1018,6 +1020,8 @@ rm -f ./usr/lib/mono/1.0/culevel.exe*
|
|||||||
rm -rf ${RPM_BUILD_ROOT}
|
rm -rf ${RPM_BUILD_ROOT}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jul 30 2007 - ro@suse.de
|
||||||
|
- try to use 64bit libs on ppc64 as well in find-requires
|
||||||
* Thu Jul 05 2007 - wberrier@novell.com
|
* Thu Jul 05 2007 - wberrier@novell.com
|
||||||
- mono-find-requires fixes for ia64 (bnc #282877)
|
- mono-find-requires fixes for ia64 (bnc #282877)
|
||||||
* Wed Jun 20 2007 - ro@suse.de
|
* Wed Jun 20 2007 - ro@suse.de
|
||||||
|
12
mono-ppc64_find-requires.patch
Normal file
12
mono-ppc64_find-requires.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
--- scripts/mono-find-requires.in
|
||||||
|
+++ scripts/mono-find-requires.in
|
||||||
|
@@ -40,7 +40,8 @@
|
||||||
|
# Exceptions:
|
||||||
|
case `uname -m` in
|
||||||
|
# ia64 doesn't use lib64 for 'libdir' (sles 9 rpm used to provide both... no longer)
|
||||||
|
- ia64) libext="()(64bit)" ;;
|
||||||
|
+ # ppc64 more likely has the 64bit libs installed
|
||||||
|
+ ia64|ppc64) libext="()(64bit)" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# set LD_LIBRARY_PATH to ensure that libmono.so is found
|
Loading…
Reference in New Issue
Block a user