diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2009-06-23 11:46:02 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2009-06-23 11:46:02 +0000 |
commit | 9b5ea55ce4ef770baad9f0ed5b488133ac3f8512 (patch) | |
tree | 5e2e94a6f3bb44b59a2e62da47b87e485df63437 /lang/mono-basic/files | |
parent | Fix the crash with c-ares-1.6.0. (diff) |
Add lang/mono-basic 2.4, VisualBasic.NET support for Mono.
PR: ports/135928
Submitted by: Romain Tartiere
Diffstat (limited to 'lang/mono-basic/files')
-rw-r--r-- | lang/mono-basic/files/patch-configure | 14 | ||||
-rw-r--r-- | lang/mono-basic/files/patch-vbruntime_Test_Makefile | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/lang/mono-basic/files/patch-configure b/lang/mono-basic/files/patch-configure new file mode 100644 index 000000000000..251903b53f83 --- /dev/null +++ b/lang/mono-basic/files/patch-configure @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- configure.orig ++++ configure +@@ -19,7 +19,7 @@ + echo "prefix=$prefix" > build/config.make + echo "exec_prefix=\${prefix}" >> build/config.make + echo "mono_libdir=\${exec_prefix}/lib" >> build/config.make +-echo "man_dir=\${exec_prefix}/share/man" >> build/config.make ++echo "man_dir=\${exec_prefix}/man" >> build/config.make + echo "man1_dir=\${man_dir}/man1" >> build/config.make + echo "MCS_FLAGS=-debug+" >> build/config.make + echo "RUNTIME=mono" >> build/config.make diff --git a/lang/mono-basic/files/patch-vbruntime_Test_Makefile b/lang/mono-basic/files/patch-vbruntime_Test_Makefile new file mode 100644 index 000000000000..388551a5b67e --- /dev/null +++ b/lang/mono-basic/files/patch-vbruntime_Test_Makefile @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- vbruntime/Test/Makefile.orig ++++ vbruntime/Test/Makefile +@@ -62,7 +62,7 @@ + MONO_PATH=$(MONO_VB_PATH) mono ../../tools/extract-source/extract-source.exe -s:2005VB_test_CS.csproj -d:2005VB_test_CS.dll.sources.win -m:w + + test-first: +- cd ../Microsoft.VisualBasic && make && cp ../../class/lib/vbnc/Microsoft.VisualBasic.dll* ../Test/bin ++ cd ../Microsoft.VisualBasic && ${MAKE} && cp ../../class/lib/vbnc/Microsoft.VisualBasic.dll* ../Test/bin + + test-cs: test-first 2005VB_test_CS.dll.sources + $(CSCOMPILER) "-out:bin/2005VB_test_CS.dll" @2005VB_test_CS.dll.rsp @2005VB_test_CS.dll.sources -lib:bin $(CSDEFINES) |