Skip to content

Instantly share code, notes, and snippets.

diff --git a/MonkeyWrench/ProcessHelperLinux.cs b/MonkeyWrench/ProcessHelperLinux.cs
index 9707d0f..380e533 100755
--- a/MonkeyWrench/ProcessHelperLinux.cs
+++ b/MonkeyWrench/ProcessHelperLinux.cs
@@ -50,6 +50,18 @@ namespace MonkeyWrench
/// <param name="pids"></param>
internal static void KillImpl (IEnumerable<int> pids)
{
+ using (Process quit = new Process ()) {
+ quit.StartInfo.FileName = "kill";
diff --git a/Makefile.am b/Makefile.am
index 1a75a56..0017405 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,10 +24,11 @@ EXTRA_DIST= nls.m4 po.m4 progtest.m4 mono-uninstalled.pc.in build-mingw32.sh LIC
DISTCHECK_CONFIGURE_FLAGS = EXTERNAL_MCS=false EXTERNAL_RUNTIME=false
# Distribute the 'mcs' tree too
+GIT_DIR ?= $(srcdir)/.git
dist-hook:
# gdb /private/tmp/monobuild/build/BUILD/mono-2.8/mono/mini/mono 39911
GNU gdb 6.3.50-20050815 (Apple version gdb-967) (Tue Jul 14 02:15:14 UTC 2009)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "powerpc-apple-darwin"...Reading symbols for shared libraries ..... done
/private/var/root/39911: No such file or directory.
make[6]: Entering directory `/usr/src/packages/BUILD/mono-basic-2.8/vbnc/cecil'
mkdir -p ../../class/lib/vbnc/
gmcs -keyfile:../../vbnc/cecil/mono.snk -d:CECIL -debug /noconfig -target:library -out:../../class/lib/vbnc/Mono.Cecil.VB.dll @Mono.Cecil.VB.dll.sources
**
ERROR:class.c:1725:mono_class_layout_fields: assertion failed: (class->image->dynamic || field->offset > 0)
Stacktrace:
at (wrapper managed-to-native) System.Reflection.MonoMethodInfo.get_method_info (intptr,System.Reflection.MonoMethodInfo&) <0x00004>
at (wrapper managed-to-native) System.Reflection.MonoMethodInfo.get_method_info (intptr,System.Reflection.MonoMethodInfo&) <0x00004>
at System.Reflection.MonoMethodInfo.GetMethodInfo (intptr) <0x00037>
diff --git a/src/Mono.WebServer.XSP/xsp-2.pc.in b/src/Mono.WebServer.XSP/xsp-2.pc.in
index ad08fd2..50663df 100644
--- a/src/Mono.WebServer.XSP/xsp-2.pc.in
+++ b/src/Mono.WebServer.XSP/xsp-2.pc.in
@@ -6,4 +6,4 @@ Executable=${assemblies_dir}/xsp2.exe
Name: xsp2
Description: Mono.WebServer2.dll - ASP.NET hosting support classes for .NET 2.0
Version: @VERSION@
-Libs: -r:${assemblies_dir}/Mono.WebServer2.dll
+Libs: -r:${assemblies_dir}/Mono.WebServer2.dll -r:${assemblies_dir}/xsp2.exe
--- configure.ac 2009-08-18 16:47:44.000000000 -0600
+++ configure.ac 2009-08-19 15:54:20.000000000 -0600
@@ -11,6 +11,8 @@
AC_MSG_ERROR([You need to install pkg-config])
fi
+m4_include([expansions.m4])
+
SHAMROCK_EXPAND_LIBDIR
SHAMROCK_EXPAND_BINDIR
--- lib/TagLib/TagLib/src/TagLib/IFD/Entries/Rational.cs 2010-08-09 05:57:02.000000000 -0600
+++ lib/TagLib/TagLib/src/TagLib/IFD/Entries/Rational.cs 2010-09-01 11:48:07.000000000 -0600
@@ -62,8 +62,8 @@
/// </param>
public Rational (uint numerator, uint denominator)
{
- Numerator = numerator;
- Denominator = denominator;
+ this.numerator = numerator;
+ this.denominator = denominator;
--- src/Clients/MainApp/FSpot.Loaders/GdkImageLoader.cs 2010-08-08 06:39:53.000000000 -0600
+++ src/Clients/MainApp/FSpot.Loaders/GdkImageLoader.cs 2010-09-01 12:37:15.000000000 -0600
@@ -112,7 +112,7 @@
public new bool Close ()
{
lock (sync_handle) {
- return base.Close (true);
+ return PixbufLoaderExtensions.Close (this, true);
}
}
# desktop-file-validate /usr/share/applications/smuxi-frontend-gnome.desktop
/usr/share/applications/smuxi-frontend-gnome.desktop: warning: key "Encoding" in group "Desktop Entry" is deprecated
/usr/share/applications/smuxi-frontend-gnome.desktop: warning: value "smuxi-frontend-gnome.svg" for key "Icon" in group "Desktop Entry" is an icon name with an extension, but there should be no extension as described in the Icon Theme Specification if the value is not an absolute path
--- src/Frontend-GNOME/smuxi-frontend-gnome.desktop 2010-09-02 13:03:53.000000000 -0600
+++ src/Frontend-GNOME/smuxi-frontend-gnome.desktop 2010-09-21 12:06:06.000000000 -0600
@@ -1,6 +1,5 @@
[Desktop Entry]
Version=1.0
-Encoding=UTF-8
Name=Smuxi IRC Client
Name[da]=Smuxi - IRC-klient
Name[de]=Smuxi - Chat Client
@@ -17,4 +16,4 @@