[tasque] [build] Switch to .NET 4.0 profile
- From: Antonius Riha <antoniusri src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tasque] [build] Switch to .NET 4.0 profile
- Date: Wed, 29 Aug 2012 18:16:30 +0000 (UTC)
commit ffbc674718db4ff0729b7b824475e702cd355d4b
Author: Antonius Riha <antoniusriha gmail com>
Date: Wed Aug 22 12:27:17 2012 +0200
[build] Switch to .NET 4.0 profile
Some dependencies are compiled against 4.0. 4.0 is currently also the
default runtime of mono. Therefore it makes sense to switch to 4.0. and
use dmcs rather than gmcs.
Makefile.include | 2 +-
RtmNet/Makefile.am | 2 +-
configure.ac | 6 +++---
src/Makefile.am | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/Makefile.include b/Makefile.include
index f3dbe4e..10c886a 100644
--- a/Makefile.include
+++ b/Makefile.include
@@ -23,7 +23,7 @@ LINK_EXE = \
## Build
CSC_FLAGS = -debug
-CSC = $(GMCS) $(CSC_FLAGS) -target:exe
+CSC = $(DMCS) $(CSC_FLAGS) -target:exe
CSC_LIB = $(CSC) -target:library
## Runtime
diff --git a/RtmNet/Makefile.am b/RtmNet/Makefile.am
index 48c374d..2fc4200 100644
--- a/RtmNet/Makefile.am
+++ b/RtmNet/Makefile.am
@@ -1,4 +1,4 @@
-CSC = $(GMCS)
+CSC = $(DMCS)
TARGET = RtmNet.dll
diff --git a/configure.ac b/configure.ac
index eeeb26e..f2dcc04 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,9 +16,9 @@ PKG_PROG_PKG_CONFIG
AC_PROG_INSTALL
-AC_PATH_PROG(GMCS, gmcs, no)
-if test "x$GMCS" = "xno"; then
- AC_MSG_ERROR([gmcs Not found])
+AC_PATH_PROG(DMCS, dmcs, no)
+if test "x$DMCS" = "xno"; then
+ AC_MSG_ERROR([dmcs Not found])
fi
#
diff --git a/src/Makefile.am b/src/Makefile.am
index d77e628..b5569e1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,6 +1,6 @@
SUBDIRS = . Backends
-CSC = $(GMCS)
+CSC = $(DMCS)
TARGET = Tasque.exe
WRAPPER = tasque
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]