Compile mono from source on OSX
The following is how I compiled mono latest from source:
- Install MacPorts from http://macports.org
- Install gettext
sudo port install gettext
- Locate your current mono environment. It is usually at:
/Library/Framework/Mono.framework/Versions/Current
- Download the mono source from GitHub master branch
git clone https://github.com/mono/mono.git
- Run autogen with your OSX version prefix
./autogen.sh --prefix=/Library/Framework/Mono.framework/Versions/Current
- Run make
sudo make
- Optionally, you can run the tests
sudo make check
- Run make install
sudo make install