forked from pool/mono-core
This commit is contained in:
parent
726e377950
commit
43075cab92
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:24cc4f396cac3053c7ba3fe68bc1b80359d75dc4f54a85f39a73cabc3d3f560f
|
|
||||||
size 18163130
|
|
3
mono-1.9.tar.bz2
Normal file
3
mono-1.9.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3fbd27d1ecd6c7202403fd765b56ef48202a572b549aa71ace1f351ad4182d6b
|
||||||
|
size 18416956
|
@ -1,64 +0,0 @@
|
|||||||
Index: mono/scripts/mono-find-requires.in
|
|
||||||
===================================================================
|
|
||||||
--- mono/scripts/mono-find-requires.in (revision 93664)
|
|
||||||
+++ mono/scripts/mono-find-requires.in (revision 93665)
|
|
||||||
@@ -4,8 +4,9 @@
|
|
||||||
#
|
|
||||||
# Authors:
|
|
||||||
# Ben Maurer (bmaurer@ximian.com)
|
|
||||||
+# Wade Berrier (wberrier@novell.com)
|
|
||||||
#
|
|
||||||
-# (C) 2005 Novell (http://www.novell.com)
|
|
||||||
+# (C) 2008 Novell (http://www.novell.com)
|
|
||||||
#
|
|
||||||
|
|
||||||
IFS=$'\n'
|
|
||||||
@@ -69,6 +70,9 @@
|
|
||||||
}
|
|
||||||
') 2> /dev/null
|
|
||||||
done
|
|
||||||
+)
|
|
||||||
+
|
|
||||||
+rpm_config_REQUIRES=$(
|
|
||||||
# Parse the xml .config files to see what native binaries we call into
|
|
||||||
# TODO: also check monodis --moduleref
|
|
||||||
for i in "${configlist[@]}"; do
|
|
||||||
@@ -110,12 +114,25 @@
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(!ignore) {
|
|
||||||
- system("rpm -q --whatprovides --queryformat \"%{NAME}\n\" ""\""req"'$libext'""\"")
|
|
||||||
+ print req"'$libext'"
|
|
||||||
}
|
|
||||||
} ' $i 2>/dev/null
|
|
||||||
done
|
|
||||||
)
|
|
||||||
|
|
||||||
+# Resolve provides to packages, warning on missing to stderr
|
|
||||||
+config_REQUIRES=$(
|
|
||||||
+ for i in ${rpm_config_REQUIRES[@]} ; do
|
|
||||||
+ out=$(rpm -q --whatprovides --queryformat "%{NAME}\n" $i)
|
|
||||||
+ if [ $? -eq 0 ] ; then
|
|
||||||
+ echo $out
|
|
||||||
+ else
|
|
||||||
+ # echo to stderr
|
|
||||||
+ echo "mono-find-requires: Warning, could not find installed package that provides: $i" >&2
|
|
||||||
+ fi
|
|
||||||
+ done
|
|
||||||
+)
|
|
||||||
+
|
|
||||||
# Note about above:
|
|
||||||
# Use to do: system("rpm -q --whatprovides --queryformat \"%{NAME}\n\" ""\""req"'$libext'""\"")
|
|
||||||
# rpmlint prefers to have lib names instead of package names. There was a reason I was using package names but it slips me now...
|
|
||||||
@@ -140,9 +157,10 @@
|
|
||||||
# in PROVIDES. While RPM functions correctly when such deps exist,
|
|
||||||
# they make the metadata a bit bloated.
|
|
||||||
#
|
|
||||||
+# TODO: make this use the mono-find-provides script, to share code
|
|
||||||
|
|
||||||
# Filter out dups from both lists
|
|
||||||
-REQUIRES=$(echo "$REQUIRES" | sort | uniq)
|
|
||||||
+REQUIRES=$(echo "$REQUIRES" "$config_REQUIRES" | sort | uniq)
|
|
||||||
PROVIDES=$(echo "$PROVIDES" | sort | uniq)
|
|
||||||
|
|
||||||
#
|
|
@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 25 17:23:23 MST 2008 - wberrier@suse.de
|
||||||
|
|
||||||
|
- Filelist changes for System.Xml.Linq and Mono.Web
|
||||||
|
- Call ldconfig directly instead of invoking a shell
|
||||||
|
- Update to 1.9
|
||||||
|
-More than 80 bugs closed/fixed in the runtime
|
||||||
|
-Reflection bug fix
|
||||||
|
-C# compiler defaults to 3.0
|
||||||
|
-Silverlight support enabled by default
|
||||||
|
-Generics code sharing
|
||||||
|
-AOT support for ARM
|
||||||
|
-Verifier improvements
|
||||||
|
-Updated Core Linq api
|
||||||
|
-Now includes System.Xml.Linq
|
||||||
|
-mcs/gmcs parser code base has been unified
|
||||||
|
-ASP.Net:
|
||||||
|
-Batch Compilation
|
||||||
|
-Mapping configuration
|
||||||
|
-Winforms:
|
||||||
|
-more support for browser events
|
||||||
|
-Several fixes to RichTextBox
|
||||||
|
-Major improvements to PropertyGridControl
|
||||||
|
-Over 100 fixed bugs
|
||||||
|
-System.Design implementation
|
||||||
|
-DLR support
|
||||||
|
-Mono.Posix:
|
||||||
|
-Stdlib.signal() has been deprecated. Replaced with:
|
||||||
|
-Mono.Unix.Native.Stdlib.SetSignalAction
|
||||||
|
-Mono.Unix.UnixSignal
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 15 03:13:55 CET 2008 - dmueller@suse.de
|
Fri Feb 15 03:13:55 CET 2008 - dmueller@suse.de
|
||||||
|
|
||||||
|
170
mono-core.spec
170
mono-core.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package mono-core (Version 1.2.6)
|
# spec file for package mono-core (Version 1.9)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -16,12 +16,10 @@ License: LGPL v2.1 or later
|
|||||||
Group: Development/Languages/Mono
|
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.6
|
Version: 1.9
|
||||||
Release: 17
|
Release: 1
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Source0: mono-%{version}.tar.bz2
|
Source0: mono-%{version}.tar.bz2
|
||||||
Patch0: mono-security_includes_warnings.patch
|
|
||||||
Patch1: mono-93665_find_requires_ignore_missing.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}
|
||||||
@ -43,24 +41,37 @@ Provides: mono-ziplib
|
|||||||
Conflicts: helix-banshee <= 0.13.1
|
Conflicts: helix-banshee <= 0.13.1
|
||||||
Conflicts: banshee <= 0.13.1
|
Conflicts: banshee <= 0.13.1
|
||||||
Conflicts: f-spot <= 0.3.5
|
Conflicts: f-spot <= 0.3.5
|
||||||
|
Conflicts: mono-addins <= 0.3
|
||||||
|
# 1.9 branch conflicts:
|
||||||
|
# Can't do this because this rpm could be used on a distro with gtk# 2.8...
|
||||||
|
#Conflicts: gtk-sharp2 < 2.10.3
|
||||||
# Require when in the buildserivce
|
# Require when in the buildserivce
|
||||||
%if 0%{?opensuse_bs}
|
%if 0%{?opensuse_bs}
|
||||||
Requires: libgdiplus0
|
Requires: libgdiplus0
|
||||||
# Not all distros build this... can't require it
|
# Not all distros build this... can't require it
|
||||||
#Requires: libgluezilla0
|
#Requires: libgluezilla0
|
||||||
%else
|
%endif
|
||||||
|
%if 0%{?monobuild}
|
||||||
|
# We can require libgdiplus since it's on all distros
|
||||||
|
# but not for gluezilla since we share rpms
|
||||||
|
Requires: libgdiplus0
|
||||||
|
%endif
|
||||||
|
# for autobuild
|
||||||
|
%if 0%{?monobuild} == 0
|
||||||
|
%if 0%{?opensuse_bs} == 0
|
||||||
# suse would rather have recommends so that all sorts of graphic libs aren't
|
# suse would rather have recommends so that all sorts of graphic libs aren't
|
||||||
# pulled in when libgdiplus is installed
|
# pulled in when libgdiplus is installed
|
||||||
Recommends: libgdiplus0
|
Recommends: libgdiplus0
|
||||||
Recommends: libgluezilla0
|
Recommends: libgluezilla0
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
BuildRequires: glib2-devel
|
BuildRequires: glib2-devel
|
||||||
#### suse options ####
|
#### suse options ####
|
||||||
%if 0%{?suse_version}
|
%if 0%{?suse_version}
|
||||||
# For some reason these weren't required in 10.2 and before... ?
|
# For some reason these weren't required in 10.2 and before... ?
|
||||||
%if %{suse_version} > 1020
|
%if %{suse_version} > 1020
|
||||||
BuildRequires: bison
|
BuildRequires: bison
|
||||||
# Add valgrind support for 10.3 and above
|
# Add valgrind support for 10.3 and above on archs that have it
|
||||||
%ifarch %ix86 x86_64 ppc ppc64
|
%ifarch %ix86 x86_64 ppc ppc64
|
||||||
BuildRequires: valgrind-devel
|
BuildRequires: valgrind-devel
|
||||||
%endif
|
%endif
|
||||||
@ -74,11 +85,15 @@ BuildRequires: pkgconfig
|
|||||||
%ifarch s390 s390x
|
%ifarch s390 s390x
|
||||||
PreReq: grep
|
PreReq: grep
|
||||||
%endif
|
%endif
|
||||||
|
# This lib only needed for ia64
|
||||||
|
%ifarch ia64
|
||||||
|
BuildRequires: libunwind-devel
|
||||||
|
%endif
|
||||||
# TODO:
|
# TODO:
|
||||||
# This won't work until the rpm package passes .config files to mono-find-requires
|
# This won't work until the rpm package passes .config files to mono-find-requires
|
||||||
#%define __find_provides env MONO_PREFIX=%{buildroot}/usr /usr/lib/rpm/find-provides
|
#%define __find_provides env MONO_PREFIX=%{buildroot}/usr /usr/lib/rpm/find-provides
|
||||||
#%define __find_requires env MONO_PREFIX=%{buildroot}/usr /usr/lib/rpm/find-requires
|
#%define __find_requires env MONO_PREFIX=%{buildroot}/usr /usr/lib/rpm/find-requires
|
||||||
%if 0%{?fedora_version}
|
%if 0%{?fedora_version} || 0%{?rhel_version}
|
||||||
# Allows overrides of __find_provides in fedora distros... (already set to zero on newer suse distros)
|
# Allows overrides of __find_provides in fedora distros... (already set to zero on newer suse distros)
|
||||||
%define _use_internal_dependency_generator 0
|
%define _use_internal_dependency_generator 0
|
||||||
%endif
|
%endif
|
||||||
@ -161,6 +176,8 @@ Authors:
|
|||||||
%_prefix/lib/mono/2.0/System.Xml.dll
|
%_prefix/lib/mono/2.0/System.Xml.dll
|
||||||
%_prefix/lib/mono/gac/System.Xml.Core
|
%_prefix/lib/mono/gac/System.Xml.Core
|
||||||
%_prefix/lib/mono/2.1/System.Xml.Core.dll
|
%_prefix/lib/mono/2.1/System.Xml.Core.dll
|
||||||
|
%_prefix/lib/mono/gac/System.Xml.Linq
|
||||||
|
%_prefix/lib/mono/3.5/System.Xml.Linq.dll
|
||||||
%_prefix/lib/mono/gac/System
|
%_prefix/lib/mono/gac/System
|
||||||
%_prefix/lib/mono/1.0/System.dll
|
%_prefix/lib/mono/1.0/System.dll
|
||||||
%_prefix/lib/mono/2.0/System.dll
|
%_prefix/lib/mono/2.0/System.dll
|
||||||
@ -178,10 +195,12 @@ Authors:
|
|||||||
%dir %_prefix/lib/mono/1.0
|
%dir %_prefix/lib/mono/1.0
|
||||||
%dir %_prefix/lib/mono/2.0
|
%dir %_prefix/lib/mono/2.0
|
||||||
%dir %_prefix/lib/mono/2.1
|
%dir %_prefix/lib/mono/2.1
|
||||||
|
%dir %_prefix/lib/mono/3.5
|
||||||
%dir %_prefix/lib/mono/gac
|
%dir %_prefix/lib/mono/gac
|
||||||
%config %_sysconfdir/mono/config
|
%config %_sysconfdir/mono/config
|
||||||
%config %_sysconfdir/mono/1.0/machine.config
|
%config %_sysconfdir/mono/1.0/machine.config
|
||||||
%config %_sysconfdir/mono/2.0/machine.config
|
%config %_sysconfdir/mono/2.0/machine.config
|
||||||
|
%config %_sysconfdir/mono/2.0/settings.map
|
||||||
%_prefix/lib/mono/gac/Mono.C5
|
%_prefix/lib/mono/gac/Mono.C5
|
||||||
%_prefix/lib/mono/2.0/Mono.C5.dll
|
%_prefix/lib/mono/2.0/Mono.C5.dll
|
||||||
# ikvm helper
|
# ikvm helper
|
||||||
@ -226,8 +245,7 @@ if grep -q "machine = 9672" /proc/cpuinfo 2>/dev/null ; then
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%postun
|
%postun -p /sbin/ldconfig
|
||||||
/sbin/ldconfig
|
|
||||||
|
|
||||||
%package -n mono-jscript
|
%package -n mono-jscript
|
||||||
Summary: JScript .NET support for Mono
|
Summary: JScript .NET support for Mono
|
||||||
@ -564,6 +582,8 @@ Authors:
|
|||||||
%_prefix/lib/mono/gac/Mono.Http
|
%_prefix/lib/mono/gac/Mono.Http
|
||||||
%_prefix/lib/mono/1.0/Mono.Http.dll
|
%_prefix/lib/mono/1.0/Mono.Http.dll
|
||||||
%_prefix/lib/mono/2.0/Mono.Http.dll
|
%_prefix/lib/mono/2.0/Mono.Http.dll
|
||||||
|
%_prefix/lib/mono/gac/Mono.Web
|
||||||
|
%_prefix/lib/mono/2.0/Mono.Web.dll
|
||||||
%_prefix/lib/mono/gac/System.Runtime.Remoting
|
%_prefix/lib/mono/gac/System.Runtime.Remoting
|
||||||
%_prefix/lib/mono/1.0/System.Runtime.Remoting.dll
|
%_prefix/lib/mono/1.0/System.Runtime.Remoting.dll
|
||||||
%_prefix/lib/mono/2.0/System.Runtime.Remoting.dll
|
%_prefix/lib/mono/2.0/System.Runtime.Remoting.dll
|
||||||
@ -578,8 +598,10 @@ Authors:
|
|||||||
%_prefix/lib/mono/2.0/System.Web.Services.dll
|
%_prefix/lib/mono/2.0/System.Web.Services.dll
|
||||||
%_prefix/lib/mono/gac/System.Web.Extensions
|
%_prefix/lib/mono/gac/System.Web.Extensions
|
||||||
%_prefix/lib/mono/2.0/System.Web.Extensions.dll
|
%_prefix/lib/mono/2.0/System.Web.Extensions.dll
|
||||||
|
%_prefix/lib/mono/3.5/System.Web.Extensions.dll
|
||||||
%_prefix/lib/mono/gac/System.Web.Extensions.Design
|
%_prefix/lib/mono/gac/System.Web.Extensions.Design
|
||||||
%_prefix/lib/mono/2.0/System.Web.Extensions.Design.dll
|
%_prefix/lib/mono/2.0/System.Web.Extensions.Design.dll
|
||||||
|
%_prefix/lib/mono/3.5/System.Web.Extensions.Design.dll
|
||||||
# exes
|
# exes
|
||||||
%_prefix/lib/mono/1.0/disco.exe*
|
%_prefix/lib/mono/1.0/disco.exe*
|
||||||
%_prefix/lib/mono/1.0/soapsuds.exe*
|
%_prefix/lib/mono/1.0/soapsuds.exe*
|
||||||
@ -748,12 +770,16 @@ Authors:
|
|||||||
%_prefix/lib/mono/2.0/nunit-console.exe*
|
%_prefix/lib/mono/2.0/nunit-console.exe*
|
||||||
%_prefix/lib/mono/gac/nunit.util
|
%_prefix/lib/mono/gac/nunit.util
|
||||||
%_prefix/lib/mono/1.0/nunit.util.dll
|
%_prefix/lib/mono/1.0/nunit.util.dll
|
||||||
|
%_prefix/lib/mono/2.0/nunit.util.dll
|
||||||
%_prefix/lib/mono/gac/nunit.core
|
%_prefix/lib/mono/gac/nunit.core
|
||||||
%_prefix/lib/mono/1.0/nunit.core.dll
|
%_prefix/lib/mono/1.0/nunit.core.dll
|
||||||
|
%_prefix/lib/mono/2.0/nunit.core.dll
|
||||||
%_prefix/lib/mono/gac/nunit.framework
|
%_prefix/lib/mono/gac/nunit.framework
|
||||||
%_prefix/lib/mono/1.0/nunit.framework.dll
|
%_prefix/lib/mono/1.0/nunit.framework.dll
|
||||||
|
%_prefix/lib/mono/2.0/nunit.framework.dll
|
||||||
%_prefix/lib/mono/gac/nunit.mocks
|
%_prefix/lib/mono/gac/nunit.mocks
|
||||||
%_prefix/lib/mono/1.0/nunit.mocks.dll
|
%_prefix/lib/mono/1.0/nunit.mocks.dll
|
||||||
|
%_prefix/lib/mono/2.0/nunit.mocks.dll
|
||||||
%_libdir/pkgconfig/mono-nunit.pc
|
%_libdir/pkgconfig/mono-nunit.pc
|
||||||
|
|
||||||
%package -n mono-devel
|
%package -n mono-devel
|
||||||
@ -779,11 +805,9 @@ Authors:
|
|||||||
Paolo Molaro <lupus@ximian.com>
|
Paolo Molaro <lupus@ximian.com>
|
||||||
Dietmar Maurer <dietmar@ximian.com>
|
Dietmar Maurer <dietmar@ximian.com>
|
||||||
|
|
||||||
%post -n mono-devel
|
%post -n mono-devel -p /sbin/ldconfig
|
||||||
/sbin/ldconfig
|
|
||||||
|
|
||||||
%postun -n mono-devel
|
%postun -n mono-devel -p /sbin/ldconfig
|
||||||
/sbin/ldconfig
|
|
||||||
|
|
||||||
%files -n mono-devel
|
%files -n mono-devel
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
@ -806,6 +830,8 @@ Authors:
|
|||||||
%_prefix/lib/mono/1.0/ilasm.exe*
|
%_prefix/lib/mono/1.0/ilasm.exe*
|
||||||
%_prefix/lib/mono/2.0/ilasm.exe*
|
%_prefix/lib/mono/2.0/ilasm.exe*
|
||||||
%_prefix/lib/mono/1.0/installvst.exe*
|
%_prefix/lib/mono/1.0/installvst.exe*
|
||||||
|
%_prefix/lib/mono/1.0/installutil.exe*
|
||||||
|
%_prefix/lib/mono/2.0/installutil.exe*
|
||||||
%_prefix/lib/mono/1.0/mkbundle.exe*
|
%_prefix/lib/mono/1.0/mkbundle.exe*
|
||||||
%_prefix/lib/mono/2.0/mkbundle.exe*
|
%_prefix/lib/mono/2.0/mkbundle.exe*
|
||||||
%_prefix/lib/mono/1.0/monop.exe*
|
%_prefix/lib/mono/1.0/monop.exe*
|
||||||
@ -963,8 +989,6 @@ Authors:
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n mono-%{version}
|
%setup -q -n mono-%{version}
|
||||||
%patch0 -p1
|
|
||||||
%patch1 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# These are only needed if there are patches to the runtime
|
# These are only needed if there are patches to the runtime
|
||||||
@ -1053,12 +1077,40 @@ rm -f $RPM_BUILD_ROOT/usr/lib/mono/1.0/transform.exe
|
|||||||
rm -rf ${RPM_BUILD_ROOT}
|
rm -rf ${RPM_BUILD_ROOT}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Feb 15 2008 dmueller@suse.de
|
* Tue Mar 25 2008 wberrier@suse.de
|
||||||
|
- Filelist changes for System.Xml.Linq and Mono.Web
|
||||||
|
- Call ldconfig directly instead of invoking a shell
|
||||||
|
- Update to 1.9
|
||||||
|
-More than 80 bugs closed/fixed in the runtime
|
||||||
|
-Reflection bug fix
|
||||||
|
-C# compiler defaults to 3.0
|
||||||
|
-Silverlight support enabled by default
|
||||||
|
-Generics code sharing
|
||||||
|
-AOT support for ARM
|
||||||
|
-Verifier improvements
|
||||||
|
-Updated Core Linq api
|
||||||
|
-Now includes System.Xml.Linq
|
||||||
|
-mcs/gmcs parser code base has been unified
|
||||||
|
-ASP.Net:
|
||||||
|
-Batch Compilation
|
||||||
|
-Mapping configuration
|
||||||
|
-Winforms:
|
||||||
|
-more support for browser events
|
||||||
|
-Several fixes to RichTextBox
|
||||||
|
-Major improvements to PropertyGridControl
|
||||||
|
-Over 100 fixed bugs
|
||||||
|
-System.Design implementation
|
||||||
|
-DLR support
|
||||||
|
-Mono.Posix:
|
||||||
|
-Stdlib.signal() has been deprecated. Replaced with:
|
||||||
|
-Mono.Unix.Native.Stdlib.SetSignalAction
|
||||||
|
-Mono.Unix.UnixSignal
|
||||||
|
* Thu Feb 14 2008 dmueller@suse.de
|
||||||
- only require valgrind for archs that provide it
|
- only require valgrind for archs that provide it
|
||||||
* Wed Jan 23 2008 wberrier@suse.de
|
* Wed Jan 23 2008 wberrier@suse.de
|
||||||
- mono-93665_find_requires_ignore_missing.patch: warn on missing
|
- mono-93665_find_requires_ignore_missing.patch: warn on missing
|
||||||
files found in .config files instead of generating invalid deps.
|
files found in .config files instead of generating invalid deps.
|
||||||
* Thu Jan 17 2008 wberrier@suse.de
|
* Wed Jan 16 2008 wberrier@suse.de
|
||||||
- libgdiplus -> libgdiplus0 rename
|
- libgdiplus -> libgdiplus0 rename
|
||||||
- add libgluezilla0 to recommends
|
- add libgluezilla0 to recommends
|
||||||
* Mon Jan 14 2008 wberrier@suse.de
|
* Mon Jan 14 2008 wberrier@suse.de
|
||||||
@ -1082,10 +1134,10 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
LDAP SDK (version 2.1.8)
|
LDAP SDK (version 2.1.8)
|
||||||
* Tue Oct 23 2007 wberrier@suse.de
|
* Tue Oct 23 2007 wberrier@suse.de
|
||||||
- mono-boo_ia64_fix.patch: fix boo build on ia64.
|
- mono-boo_ia64_fix.patch: fix boo build on ia64.
|
||||||
* Thu Sep 20 2007 wberrier@suse.de
|
* Wed Sep 19 2007 wberrier@suse.de
|
||||||
- BigInteger Security fix: bnc #310044
|
- BigInteger Security fix: bnc #310044
|
||||||
-MaintenanceTracker-13335
|
-MaintenanceTracker-13335
|
||||||
* Fri Aug 31 2007 wberrier@suse.de
|
* Thu Aug 30 2007 wberrier@suse.de
|
||||||
- Regressions found in 1.2.5:
|
- Regressions found in 1.2.5:
|
||||||
-Bug #82428: crypto buffer length fix
|
-Bug #82428: crypto buffer length fix
|
||||||
-Bug #82481: StatusStrip focus regression fix
|
-Bug #82481: StatusStrip focus regression fix
|
||||||
@ -1125,20 +1177,20 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
must use 32bit libraries)
|
must use 32bit libraries)
|
||||||
* Mon Jul 30 2007 ro@suse.de
|
* Mon Jul 30 2007 ro@suse.de
|
||||||
- try to use 64bit libs on ppc64 as well in find-requires
|
- try to use 64bit libs on ppc64 as well in find-requires
|
||||||
* Wed Jul 11 2007 wberrier@novell.com
|
* Tue Jul 10 2007 wberrier@novell.com
|
||||||
- Build against valgrind for 10.3 and above
|
- Build against valgrind for 10.3 and above
|
||||||
* Fri Jul 06 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
|
||||||
- removed requires on specific release in mono-complete for
|
- removed requires on specific release in mono-complete for
|
||||||
mono-basic (not a subpackage of mono-core anymore)
|
mono-basic (not a subpackage of mono-core anymore)
|
||||||
* Sat Jun 16 2007 wberrier@novell.com
|
* Fri Jun 15 2007 wberrier@novell.com
|
||||||
- mono-config_rpm_requires.patch: revert back to using package
|
- mono-config_rpm_requires.patch: revert back to using package
|
||||||
requirements for the .config dep scanning. This is because
|
requirements for the .config dep scanning. This is because
|
||||||
noarch packages can be built on either 32 or 64 bit machines,
|
noarch packages can be built on either 32 or 64 bit machines,
|
||||||
and then otherwise will depend on a 32 or 64 bit library, which
|
and then otherwise will depend on a 32 or 64 bit library, which
|
||||||
is wrong.
|
is wrong.
|
||||||
* Wed Jun 06 2007 wberrier@novell.com
|
* Tue Jun 05 2007 wberrier@novell.com
|
||||||
- Fix relevant rpmlint errors/warnings:
|
- Fix relevant rpmlint errors/warnings:
|
||||||
-also 'provides' for each 'obsoletes'
|
-also 'provides' for each 'obsoletes'
|
||||||
-run ldconfig in post/un for mono-core and mono-devel
|
-run ldconfig in post/un for mono-core and mono-devel
|
||||||
@ -1181,9 +1233,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
-Many of the new 2.0 socket methods are now available
|
-Many of the new 2.0 socket methods are now available
|
||||||
* Fri Apr 13 2007 wberrier@novell.com
|
* Fri Apr 13 2007 wberrier@novell.com
|
||||||
- add %%debug_package so debug packages get created
|
- add %%debug_package so debug packages get created
|
||||||
* Thu Apr 05 2007 wberrier@novell.com
|
* Wed Apr 04 2007 wberrier@novell.com
|
||||||
- Adapt for build service
|
- Adapt for build service
|
||||||
* Tue Mar 06 2007 wberrier@suse.de
|
* Mon Mar 05 2007 wberrier@suse.de
|
||||||
- atomic fixes from Michael Matz for for s390 and s390x
|
- atomic fixes from Michael Matz for for s390 and s390x
|
||||||
( bnc #237611 and bxc #80892 )
|
( bnc #237611 and bxc #80892 )
|
||||||
* Wed Feb 28 2007 wberrier@suse.de
|
* Wed Feb 28 2007 wberrier@suse.de
|
||||||
@ -1231,7 +1283,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- Patch mono-rpm_deps_error_handling_r70445.patch to error out
|
- Patch mono-rpm_deps_error_handling_r70445.patch to error out
|
||||||
when running the find scripts
|
when running the find scripts
|
||||||
- Fixes bnc #227362
|
- Fixes bnc #227362
|
||||||
* Sat Dec 02 2006 wberrier@suse.de
|
* Fri Dec 01 2006 wberrier@suse.de
|
||||||
- Update to 1.2.2 (Fate #301111)
|
- Update to 1.2.2 (Fate #301111)
|
||||||
-Serious bug fix in compiler (anonymous methods)
|
-Serious bug fix in compiler (anonymous methods)
|
||||||
-Additional 2.0 APIs implemented for Windows.Forms
|
-Additional 2.0 APIs implemented for Windows.Forms
|
||||||
@ -1253,12 +1305,12 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
-Serialization Callbacks
|
-Serialization Callbacks
|
||||||
-Machine-level settings now available in registry
|
-Machine-level settings now available in registry
|
||||||
-Winforms completion
|
-Winforms completion
|
||||||
* Fri Dec 01 2006 wberrier@suse.de
|
* Thu Nov 30 2006 wberrier@suse.de
|
||||||
- Thread safety fixes for rug/zmd (bnc #221277)
|
- Thread safety fixes for rug/zmd (bnc #221277)
|
||||||
- System.Web Source fix (bnc #225179)
|
- System.Web Source fix (bnc #225179)
|
||||||
* Tue Nov 14 2006 meissner@suse.de
|
* Tue Nov 14 2006 meissner@suse.de
|
||||||
- Disable executable stack option. #65536
|
- Disable executable stack option. #65536
|
||||||
* Sat Oct 21 2006 wberrier@suse.de
|
* Fri Oct 20 2006 wberrier@suse.de
|
||||||
- Remove glib2-devel from mono-nunit, not sure why it was ever there
|
- Remove glib2-devel from mono-nunit, not sure why it was ever there
|
||||||
(bnc #210224)
|
(bnc #210224)
|
||||||
- Updated to 1.1.18.1
|
- Updated to 1.1.18.1
|
||||||
@ -1269,7 +1321,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
-Lots of Winforms fixes and updates
|
-Lots of Winforms fixes and updates
|
||||||
-Merged source for mcs and gmcs
|
-Merged source for mcs and gmcs
|
||||||
-Performance tuning
|
-Performance tuning
|
||||||
* Thu Sep 28 2006 wberrier@suse.de
|
* Wed Sep 27 2006 wberrier@suse.de
|
||||||
- Security fix for bnc #205084 VUL-0
|
- Security fix for bnc #205084 VUL-0
|
||||||
- TempFileCollection.cs: Create files in a temporary subdirectory,
|
- TempFileCollection.cs: Create files in a temporary subdirectory,
|
||||||
for security reasons.
|
for security reasons.
|
||||||
@ -1356,7 +1408,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- major updates to System.Windows.Forms and System.Drawing
|
- major updates to System.Windows.Forms and System.Drawing
|
||||||
- inline optimization enabled by default
|
- inline optimization enabled by default
|
||||||
- Long standing debugging line numbers bug fixed
|
- Long standing debugging line numbers bug fixed
|
||||||
* Fri Jun 16 2006 wberrier@suse.de
|
* Thu Jun 15 2006 wberrier@suse.de
|
||||||
Changes from Neale Ferguson <neale@sinenomine.net> from trunk in order
|
Changes from Neale Ferguson <neale@sinenomine.net> from trunk in order
|
||||||
to fix bnc #179080 (zmd issue on s390x)
|
to fix bnc #179080 (zmd issue on s390x)
|
||||||
- * atomic.h: Fix atomic operations for s390x (not really broken
|
- * atomic.h: Fix atomic operations for s390x (not really broken
|
||||||
@ -1369,7 +1421,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- Revert change to mono-find-provides (59882) so that Mono apps will
|
- Revert change to mono-find-provides (59882) so that Mono apps will
|
||||||
not have to depend on being able to find dependent assemblies in
|
not have to depend on being able to find dependent assemblies in
|
||||||
the gac.
|
the gac.
|
||||||
* Thu May 11 2006 wberrier@suse.de
|
* Wed May 10 2006 wberrier@suse.de
|
||||||
-Add provides for mono-core for assemblies not in the gac, which
|
-Add provides for mono-core for assemblies not in the gac, which
|
||||||
other packages depend on.
|
other packages depend on.
|
||||||
-Update to 1.1.13.8 from stable branch
|
-Update to 1.1.13.8 from stable branch
|
||||||
@ -1415,7 +1467,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
-Flag VB as unsupported.
|
-Flag VB as unsupported.
|
||||||
* Mon Apr 24 2006 wberrier@suse.de
|
* Mon Apr 24 2006 wberrier@suse.de
|
||||||
- Bug fixes for Zenworks (78089, 78150, amd64 signal crash, and proxy fix in System.Net)
|
- Bug fixes for Zenworks (78089, 78150, amd64 signal crash, and proxy fix in System.Net)
|
||||||
* Tue Apr 11 2006 wberrier@suse.de
|
* Mon Apr 10 2006 wberrier@suse.de
|
||||||
- Branch update for iFolder issues. Also includes some semaphore
|
- Branch update for iFolder issues. Also includes some semaphore
|
||||||
updates, as well as SWF updates. (77931,01234,77931,01234,77991,
|
updates, as well as SWF updates. (77931,01234,77931,01234,77991,
|
||||||
77556,77811,77350,75609,78028,77971,78033,77242,76191,41943,77890,
|
77556,77811,77350,75609,78028,77971,78033,77242,76191,41943,77890,
|
||||||
@ -1495,7 +1547,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
special shell characters.
|
special shell characters.
|
||||||
* Wed Mar 01 2006 aj@suse.de
|
* Wed Mar 01 2006 aj@suse.de
|
||||||
- Remove echo in %%post.
|
- Remove echo in %%post.
|
||||||
* Wed Mar 01 2006 wberrier@suse.de
|
* Tue Feb 28 2006 wberrier@suse.de
|
||||||
- Update to 1.1.13.4
|
- Update to 1.1.13.4
|
||||||
-Fixes the following bugs: 77524 77581 75479 77637 77613 77446 77433 77398 77397 77315 75436 75479 77521 77536 77572 77468 77371 77273 77309 74932 77442.... too many to list here.
|
-Fixes the following bugs: 77524 77581 75479 77637 77613 77446 77433 77398 77397 77315 75436 75479 77521 77536 77572 77468 77371 77273 77309 74932 77442.... too many to list here.
|
||||||
* Sat Feb 18 2006 ro@suse.de
|
* Sat Feb 18 2006 ro@suse.de
|
||||||
@ -1506,7 +1558,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- warn if installing on s390/G5
|
- warn if installing on s390/G5
|
||||||
* Wed Jan 25 2006 mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Fri Jan 20 2006 wberrier@suse.de
|
* Thu Jan 19 2006 wberrier@suse.de
|
||||||
- Update to 1.1.13.2 (no crypto updates)
|
- Update to 1.1.13.2 (no crypto updates)
|
||||||
* Thu Jan 12 2006 wberrier@suse.de
|
* Thu Jan 12 2006 wberrier@suse.de
|
||||||
- Update to 1.1.13.1 (no crypto updates)
|
- Update to 1.1.13.1 (no crypto updates)
|
||||||
@ -1517,13 +1569,13 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
Added nunit-console to filelist
|
Added nunit-console to filelist
|
||||||
* Fri Dec 23 2005 wberrier@suse.de
|
* Fri Dec 23 2005 wberrier@suse.de
|
||||||
- Add some of Zoltan's ia64 fixes to fix the runtime (no crypto updates)
|
- Add some of Zoltan's ia64 fixes to fix the runtime (no crypto updates)
|
||||||
* Fri Dec 23 2005 wberrier@suse.de
|
|
||||||
- Update to 1.1.12.1 (ziplib fix, no crypto updates)
|
|
||||||
* Thu Dec 22 2005 wberrier@suse.de
|
* Thu Dec 22 2005 wberrier@suse.de
|
||||||
|
- Update to 1.1.12.1 (ziplib fix, no crypto updates)
|
||||||
|
* Wed Dec 21 2005 wberrier@suse.de
|
||||||
- Add patches fro Neale's s390 checkins (No crypto updates)
|
- Add patches fro Neale's s390 checkins (No crypto updates)
|
||||||
* Wed Dec 21 2005 wberrier@suse.de
|
* Wed Dec 21 2005 wberrier@suse.de
|
||||||
- Fix mono-cairo.pc for gtk-sharp2 build on x86_64
|
- Fix mono-cairo.pc for gtk-sharp2 build on x86_64
|
||||||
* Tue Dec 20 2005 wberrier@suse.de
|
* Mon Dec 19 2005 wberrier@suse.de
|
||||||
- Update to 1.1.12, monoburg warning patch
|
- Update to 1.1.12, monoburg warning patch
|
||||||
* Fri Dec 16 2005 ro@suse.de
|
* Fri Dec 16 2005 ro@suse.de
|
||||||
- add an explicit cast on ppc for InterlockedCompareExchangePointer
|
- add an explicit cast on ppc for InterlockedCompareExchangePointer
|
||||||
@ -1533,39 +1585,39 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- Added "Obsoletes: mono" to mono-core.
|
- Added "Obsoletes: mono" to mono-core.
|
||||||
* Fri Nov 11 2005 wberrier@suse.de
|
* Fri Nov 11 2005 wberrier@suse.de
|
||||||
- Fix build (supportw.c)
|
- Fix build (supportw.c)
|
||||||
* Fri Nov 11 2005 wberrier@suse.de
|
* Thu Nov 10 2005 wberrier@suse.de
|
||||||
- Update to 1.1.10. Add profiler-aot, mozroots
|
- Update to 1.1.10. Add profiler-aot, mozroots
|
||||||
* Thu Oct 20 2005 ro@suse.de
|
* Thu Oct 20 2005 ro@suse.de
|
||||||
- try to fix req/prov scripts
|
- try to fix req/prov scripts
|
||||||
- remove AC_DISABLE_FAST_INSTALL to fix installed binaries
|
- remove AC_DISABLE_FAST_INSTALL to fix installed binaries
|
||||||
- do not build as root
|
- do not build as root
|
||||||
* Thu Oct 13 2005 ro@suse.de
|
* Wed Oct 12 2005 ro@suse.de
|
||||||
- take fix for gacutil problem from SVN
|
- take fix for gacutil problem from SVN
|
||||||
- remove workaround hack from specfile
|
- remove workaround hack from specfile
|
||||||
* Wed Oct 12 2005 ro@suse.de
|
* Wed Oct 12 2005 ro@suse.de
|
||||||
- fix some lib64 issues
|
- fix some lib64 issues
|
||||||
* Wed Oct 12 2005 wberrier@suse.de
|
* Tue Oct 11 2005 wberrier@suse.de
|
||||||
- Update to 1.1.9.2, restructure packages to match upstream
|
- Update to 1.1.9.2, restructure packages to match upstream
|
||||||
* Mon Sep 26 2005 ro@suse.de
|
* Mon Sep 26 2005 ro@suse.de
|
||||||
- fix build on x86_64
|
- fix build on x86_64
|
||||||
- move mono-nunit.pc to mono-nunit package
|
- move mono-nunit.pc to mono-nunit package
|
||||||
* Fri Sep 23 2005 wberrier@suse.de
|
* Thu Sep 22 2005 wberrier@suse.de
|
||||||
- Reenable 2.0 preview (bug #118530)
|
- Reenable 2.0 preview (bug #118530)
|
||||||
* Fri Sep 16 2005 wberrier@suse.de
|
* Fri Sep 16 2005 wberrier@suse.de
|
||||||
- Nasty work around hack for libtool in order to not include wrappers (#116245)
|
- Nasty work around hack for libtool in order to not include wrappers (#116245)
|
||||||
* Fri Sep 09 2005 ro@suse.de
|
* Thu Sep 08 2005 ro@suse.de
|
||||||
- fix build on 9.1+
|
- fix build on 9.1+
|
||||||
* Wed Aug 24 2005 wberrier@suse.de
|
* Tue Aug 23 2005 wberrier@suse.de
|
||||||
- Add the mono-nunit subpackage (needed for mono-tools)
|
- Add the mono-nunit subpackage (needed for mono-tools)
|
||||||
* Tue Aug 02 2005 ro@suse.de
|
* Mon Aug 01 2005 ro@suse.de
|
||||||
- update to 1.1.8.3
|
- update to 1.1.8.3
|
||||||
* Fri Jul 15 2005 wberrier@novell.com
|
* Thu Jul 14 2005 wberrier@novell.com
|
||||||
- Update %%file directives for SymbolWriter
|
- Update %%file directives for SymbolWriter
|
||||||
* Mon Jun 27 2005 ro@suse.de
|
* Sun Jun 26 2005 ro@suse.de
|
||||||
- use ldscript only for "libmono" but not for "mono"
|
- use ldscript only for "libmono" but not for "mono"
|
||||||
* Wed Jun 22 2005 ro@suse.de
|
* Wed Jun 22 2005 ro@suse.de
|
||||||
- fix more warnings on ppc
|
- fix more warnings on ppc
|
||||||
* Wed Jun 22 2005 ro@suse.de
|
* Tue Jun 21 2005 ro@suse.de
|
||||||
- update to 1.1.8.1
|
- update to 1.1.8.1
|
||||||
* Tue Jun 21 2005 ro@suse.de
|
* Tue Jun 21 2005 ro@suse.de
|
||||||
- revisit execstack : pass with "-Wl" as linker flag
|
- revisit execstack : pass with "-Wl" as linker flag
|
||||||
@ -1579,9 +1631,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
* Thu May 12 2005 uli@suse.de
|
* Thu May 12 2005 uli@suse.de
|
||||||
- update -> 1.1.7
|
- update -> 1.1.7
|
||||||
- disabled s390x (port is broken and unmaintained)
|
- disabled s390x (port is broken and unmaintained)
|
||||||
* Tue Mar 22 2005 mmj@suse.de
|
* Mon Mar 21 2005 mmj@suse.de
|
||||||
- Add dependency for mono-devel on glib2-devel [#74161]
|
- Add dependency for mono-devel on glib2-devel [#74161]
|
||||||
* Wed Mar 16 2005 gekker@suse.de
|
* Tue Mar 15 2005 gekker@suse.de
|
||||||
- Add mono-sys-web.patch and mono-leak-fix.patch for mono team
|
- Add mono-sys-web.patch and mono-leak-fix.patch for mono team
|
||||||
* Fri Mar 11 2005 gekker@suse.de
|
* Fri Mar 11 2005 gekker@suse.de
|
||||||
- Add mono-libgc-finalizer-fix.diff for the mono team
|
- Add mono-libgc-finalizer-fix.diff for the mono team
|
||||||
@ -1590,7 +1642,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- fixed a bunch of (harmless) warnings to appease autobuild
|
- fixed a bunch of (harmless) warnings to appease autobuild
|
||||||
* Thu Mar 10 2005 gekker@suse.de
|
* Thu Mar 10 2005 gekker@suse.de
|
||||||
- add mono-sqlite2-config.patch (71844).
|
- add mono-sqlite2-config.patch (71844).
|
||||||
* Tue Mar 08 2005 gekker@suse.de
|
* Mon Mar 07 2005 gekker@suse.de
|
||||||
- add mono-mini-threadfix.diff, to fix random crashes in mcs
|
- add mono-mini-threadfix.diff, to fix random crashes in mcs
|
||||||
* Tue Mar 01 2005 gekker@suse.de
|
* Tue Mar 01 2005 gekker@suse.de
|
||||||
- remove sqlite2-devel crack from requires for mono-data-sqlite
|
- remove sqlite2-devel crack from requires for mono-data-sqlite
|
||||||
@ -1607,9 +1659,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- Add requires to mono-data-sqlite for sqlite2 and sqlite2-devel
|
- Add requires to mono-data-sqlite for sqlite2 and sqlite2-devel
|
||||||
* Tue Feb 15 2005 gekker@suse.de
|
* Tue Feb 15 2005 gekker@suse.de
|
||||||
- add -z execstack to LDFLAGS (50536)
|
- add -z execstack to LDFLAGS (50536)
|
||||||
* Mon Feb 07 2005 ro@suse.de
|
* Sun Feb 06 2005 ro@suse.de
|
||||||
- fix mono with exec stack protection
|
- fix mono with exec stack protection
|
||||||
* Wed Feb 02 2005 ro@suse.de
|
* Tue Feb 01 2005 ro@suse.de
|
||||||
- fix mono-provides
|
- fix mono-provides
|
||||||
* Mon Jan 31 2005 gekker@suse.de
|
* Mon Jan 31 2005 gekker@suse.de
|
||||||
- fix a directory ownership problem
|
- fix a directory ownership problem
|
||||||
@ -1619,9 +1671,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- fix setup line in spec file
|
- fix setup line in spec file
|
||||||
* Mon Jan 31 2005 clahey@suse.de
|
* Mon Jan 31 2005 clahey@suse.de
|
||||||
- Split into separate packages.
|
- Split into separate packages.
|
||||||
* Thu Jan 13 2005 ro@suse.de
|
* Wed Jan 12 2005 ro@suse.de
|
||||||
- update to 1.1.3
|
- update to 1.1.3
|
||||||
* Mon Nov 29 2004 ro@suse.de
|
* Sun Nov 28 2004 ro@suse.de
|
||||||
- THREAD_LOCAL_ALLOC is not possible on ppc, don't force it
|
- THREAD_LOCAL_ALLOC is not possible on ppc, don't force it
|
||||||
- extended 64bit-warning patch some more
|
- extended 64bit-warning patch some more
|
||||||
- configure "with-jit=yes" as in sles9
|
- configure "with-jit=yes" as in sles9
|
||||||
@ -1629,18 +1681,18 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
- update to 1.1.2 devel branch
|
- update to 1.1.2 devel branch
|
||||||
- added hacks to use libexecdir (always /usr/lib/mono)
|
- added hacks to use libexecdir (always /usr/lib/mono)
|
||||||
(but mcs still doesn't use it)
|
(but mcs still doesn't use it)
|
||||||
* Thu Sep 16 2004 ro@suse.de
|
* Wed Sep 15 2004 ro@suse.de
|
||||||
- updated to 1.0.1 bugfix release
|
- updated to 1.0.1 bugfix release
|
||||||
* Fri Jul 02 2004 ro@suse.de
|
* Fri Jul 02 2004 ro@suse.de
|
||||||
- updated 64bit-warning patch (from clahey)
|
- updated 64bit-warning patch (from clahey)
|
||||||
* Fri Jul 02 2004 ro@suse.de
|
* Fri Jul 02 2004 ro@suse.de
|
||||||
- update to 1.0 version
|
- update to 1.0 version
|
||||||
* Tue Jun 29 2004 mls@suse.de
|
* Mon Jun 28 2004 mls@suse.de
|
||||||
- use find-requires and find-provides from rpm
|
- use find-requires and find-provides from rpm
|
||||||
* Tue Jun 22 2004 clahey@suse.de
|
* Mon Jun 21 2004 clahey@suse.de
|
||||||
- Updated to 0.96.
|
- Updated to 0.96.
|
||||||
- Added find-requires.mono and find-provides.mono.
|
- Added find-requires.mono and find-provides.mono.
|
||||||
* Thu Jun 10 2004 clahey@suse.de
|
* Wed Jun 09 2004 clahey@suse.de
|
||||||
- Don't include wine stuff.
|
- Don't include wine stuff.
|
||||||
* Wed May 26 2004 clahey@suse.de
|
* Wed May 26 2004 clahey@suse.de
|
||||||
- Require icu and libiuc26.
|
- Require icu and libiuc26.
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
--- mono-1.2.6/mono/metadata/security.c.orig 2008-01-14 14:13:02.000000000 -0700
|
|
||||||
+++ mono-1.2.6/mono/metadata/security.c 2008-01-14 14:13:16.000000000 -0700
|
|
||||||
@@ -11,6 +11,7 @@
|
|
||||||
#include <config.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
+#include <mono/metadata/assembly.h>
|
|
||||||
#include <mono/metadata/appdomain.h>
|
|
||||||
#include <mono/metadata/image.h>
|
|
||||||
#include <mono/metadata/exception.h>
|
|
Loading…
Reference in New Issue
Block a user