Browse Source

Adds mono-fastcgi-server

msmith-techempower 9 years ago
parent
commit
ef82fbb42e
1 changed files with 2 additions and 10 deletions
  1. 2 10
      toolset/setup/linux/languages/mono.sh

+ 2 - 10
toolset/setup/linux/languages/mono.sh

@@ -5,22 +5,14 @@ RETCODE=$(fw_exists $IROOT/mono.installed)
   # Load environment variables
   source $IROOT/mono.installed
   return 0; }
-
-# what do we want? latest mono
-# how do we want it? already compiled from packages but without sudo apt-get
-# See https://github.com/TechEmpower/FrameworkBenchmarks/pull/1287
-
+  
 # Add source for prepackaged binaries
 sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
 echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
 sudo apt-get update
-
-# Ideally we would install specific version of Mono, ie, mono-complete=4.2.2.30-0xamarin1 but it seems that too doesn't stick around for too long ;(
-# So we are back to square one with "unsable" Mono, although Mono is much more stable than it was at version 3
-sudo apt-get install -y mono-complete
+sudo apt-get install -y mono-complete mono-fastcgi-server
 
 # Mono installs to PATH (/usr/bin/mono) :( so no env vars
-
 echo "# Mono installed to PATH /usr/bin " > $IROOT/mono.installed
 
 source $IROOT/mono.installed