freebsd-ports/lang/mono/files/patch-mcs_tools_mkbundle_mkbundle.cs
Tom McLaughlin f9b909a0d4 - Update to 1.2.2.1
- amd64 now enabled (and reportedly works quite well)
- Remove annoying semdel stuff because mono releases its semaphoresa now

Thanks to everyone on the BSD# mailing list for providing feedback as to the
stability of this release on multiple archs and version lines.

Helped by:      Many people on the BSD# mailing list
Projecy by:     BSD# (http://www.mono-project.com/Mono:FreeBSD)
2007-02-04 21:58:46 +00:00

11 lines
637 B
C#

--- mcs/tools/mkbundle/mkbundle.cs.orig Wed Jul 5 17:57:12 2006
+++ mcs/tools/mkbundle/mkbundle.cs Sat Sep 9 11:46:36 2006
@@ -354,7 +354,7 @@
smonolib = "`pkg-config --variable=libdir mono`/libmono.a ";
else
smonolib = "-Wl,-Bstatic -lmono -Wl,-Bdynamic ";
- cmd = String.Format ("{4} -o {2} -Wall `pkg-config --cflags mono` {0} {3} " +
+ cmd = String.Format ("{4} -o {2} -pthread -Wall `pkg-config --cflags mono` {0} {3} " +
"`pkg-config --libs-only-L mono` " + smonolib +
"`pkg-config --libs-only-l mono | sed -e \"s/\\-lmono //\"` {1}",
temp_c, temp_o, output, zlib, cc);