Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorC.J. Adams-Collier <cjac@colliertech.org>2010-03-29 19:21:45 +0400
committerC.J. Adams-Collier <cjac@colliertech.org>2010-03-29 19:21:45 +0400
commit2b168d847fb93073bd332b8a7b2f87567d60ab4b (patch)
tree089824358c11f828c30bbe31ca96e6c08e2deb0c
parente7c6d1236d60db2485d40f618c3f723b6ee488d8 (diff)
using MCS from configure.ac in all Makefile.am files which hard-coded mcs
svn path=/trunk/mono-addins/; revision=154380
-rw-r--r--Mono.Addins.CecilReflector/Makefile.am2
-rw-r--r--Samples/TextEditor/TextEditor/Makefile.am2
-rw-r--r--Test/CommandExtension/Makefile.am2
-rw-r--r--Test/FileContentExtension/Makefile.am2
-rw-r--r--Test/FileExtender/Makefile.am2
-rw-r--r--Test/HelloWorldExtension/Makefile.am2
-rw-r--r--Test/UnitTests/Makefile.am2
-rw-r--r--configure.ac2
8 files changed, 8 insertions, 8 deletions
diff --git a/Mono.Addins.CecilReflector/Makefile.am b/Mono.Addins.CecilReflector/Makefile.am
index a6a3cd5..e46c1ba 100644
--- a/Mono.Addins.CecilReflector/Makefile.am
+++ b/Mono.Addins.CecilReflector/Makefile.am
@@ -1,6 +1,6 @@
KEY_FILE=$(top_srcdir)/mono-addins.snk
-ASSEMBLY_COMPILER_COMMAND = mcs
+ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -keyfile:$(KEY_FILE) -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
ASSEMBLY = ../bin/Mono.Addins.CecilReflector.dll
ASSEMBLY_NAME=Mono.Addins.CecilReflector
diff --git a/Samples/TextEditor/TextEditor/Makefile.am b/Samples/TextEditor/TextEditor/Makefile.am
index 036bfa7..0c9213a 100644
--- a/Samples/TextEditor/TextEditor/Makefile.am
+++ b/Samples/TextEditor/TextEditor/Makefile.am
@@ -1,5 +1,5 @@
-ASSEMBLY_COMPILER_COMMAND = mcs
+ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
ASSEMBLY = ../bin/TextEditor.exe
COMPILE_TARGET = exe
diff --git a/Test/CommandExtension/Makefile.am b/Test/CommandExtension/Makefile.am
index a310fb2..badccb6 100644
--- a/Test/CommandExtension/Makefile.am
+++ b/Test/CommandExtension/Makefile.am
@@ -1,4 +1,4 @@
-ASSEMBLY_COMPILER_COMMAND = mcs
+ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
ASSEMBLY = ../lib/CommandExtension.dll
COMPILE_TARGET = library
diff --git a/Test/FileContentExtension/Makefile.am b/Test/FileContentExtension/Makefile.am
index e05e486..167a343 100644
--- a/Test/FileContentExtension/Makefile.am
+++ b/Test/FileContentExtension/Makefile.am
@@ -1,4 +1,4 @@
-ASSEMBLY_COMPILER_COMMAND = mcs
+ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
ASSEMBLY = ../lib/FileContentExtension.dll
COMPILE_TARGET = library
diff --git a/Test/FileExtender/Makefile.am b/Test/FileExtender/Makefile.am
index 7222007..e26fedc 100644
--- a/Test/FileExtender/Makefile.am
+++ b/Test/FileExtender/Makefile.am
@@ -1,4 +1,4 @@
-ASSEMBLY_COMPILER_COMMAND = mcs
+ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
ASSEMBLY = ../lib/extras/FileExtender.dll
COMPILE_TARGET = library
diff --git a/Test/HelloWorldExtension/Makefile.am b/Test/HelloWorldExtension/Makefile.am
index ca7f4f7..79f8bfc 100644
--- a/Test/HelloWorldExtension/Makefile.am
+++ b/Test/HelloWorldExtension/Makefile.am
@@ -1,4 +1,4 @@
-ASSEMBLY_COMPILER_COMMAND = mcs
+ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
ASSEMBLY = ../lib/HelloWorldExtension.dll
COMPILE_TARGET = library
diff --git a/Test/UnitTests/Makefile.am b/Test/UnitTests/Makefile.am
index 0bf650d..44f25a5 100644
--- a/Test/UnitTests/Makefile.am
+++ b/Test/UnitTests/Makefile.am
@@ -1,4 +1,4 @@
-ASSEMBLY_COMPILER_COMMAND = mcs
+ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
ASSEMBLY = ./bin/Debug/UnitTests.dll
COMPILE_TARGET = library
diff --git a/configure.ac b/configure.ac
index cbcc6ca..9f285cf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,7 +18,7 @@ AC_SUBST(POLICY_VERSIONS)
AC_PROG_INSTALL
-AC_PATH_PROG(MCS, mcs, no)
+AC_PATH_PROG(MCS, gmcs, no)
if test "x$MCS" = "xno"; then
AC_MSG_ERROR([mcs Not found])
fi