forked from mono/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2010-03-02 Rolf Bjarne Kvinge <[email protected]>
* Makefile.am: * mono/Makefile.am: Only build some subdirs when configured for moonlight. * configure.in: If configured --with-moonlight=yes, define MOONLIGHT and use that variable instead of INSTALL_2_1. * runtime/Makefile.am: If configured for moonlight, only build net_2_1_raw. svn path=/trunk/mono/; revision=152880
- Loading branch information
Showing
7 changed files
with
49 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
2010-03-02 Rolf Bjarne Kvinge <[email protected]> | ||
|
||
* Makefile.am: | ||
* mono/Makefile.am: Only build some subdirs when configured for | ||
moonlight. | ||
|
||
* configure.in: If configured --with-moonlight=yes, define MOONLIGHT and | ||
use that variable instead of INSTALL_2_1. | ||
|
||
* runtime/Makefile.am: If configured for moonlight, only build | ||
net_2_1_raw. | ||
|
||
2010-03-02 Mark Probst <[email protected]> | ||
|
||
* tools/sgen-grep-binprot.c: Tool for searching through the binary | ||
|
@@ -5383,5 +5395,3 @@ Wed Jul 11 00:36:36 CEST 2001 Paolo Molaro <[email protected]> | |
2001-05-30 Miguel de Icaza <[email protected]> | ||
|
||
* NEWS: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
if CROSS_COMPILING | ||
SUBDIRS = utils io-layer cil metadata arch interpreter mini dis | ||
SUBDIRS = utils io-layer cil metadata arch $(interpreter_dir) mini dis | ||
else | ||
SUBDIRS = utils io-layer cil metadata \ | ||
arch interpreter mini dis monograph tests benchmark profiler | ||
if MOONLIGHT | ||
SUBDIRS = utils io-layer metadata arch $(interpreter_dir) mini | ||
else | ||
SUBDIRS = utils io-layer cil metadata arch $(interpreter_dir) mini dis monograph tests benchmark profiler | ||
endif | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2010-03-02 Rolf Bjarne Kvinge <[email protected]> | ||
|
||
* Makefile.am: Renamed INSTALL_2_1 to MOONLIGHT. | ||
|
||
2010-03-01 Zoltan Varga <[email protected]> | ||
|
||
* dtest.cs: Add a test for CreateBoxedValue. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters