Browse Source

Upgrade mono to 3.2.6

Pēteris Ņikiforovs 11 years ago
parent
commit
c5cbbc7630
2 changed files with 4 additions and 4 deletions
  1. 3 3
      aspnet/README.md
  2. 1 1
      toolset/setup/linux/installer.py

+ 3 - 3
aspnet/README.md

@@ -18,7 +18,7 @@
 **Platforms**
 **Platforms**
 
 
 * .NET Framework 4.5 (Windows)
 * .NET Framework 4.5 (Windows)
-* Mono 3.2.1 (Linux)
+* Mono 3.2.6 (Linux)
 
 
 **Web Servers**
 **Web Servers**
 
 
@@ -44,11 +44,11 @@
 
 
 ## Mono Installation
 ## Mono Installation
 
 
-    sudo apt-get install git-core build-essential autoconf automake libtool zlib1g-dev pkg-config
+    sudo apt-get install git-core build-essential autoconf automake libtool zlib1g-dev pkg-config gettext
 
 
     git clone git://github.com/mono/mono
     git clone git://github.com/mono/mono
     cd mono
     cd mono
-    git checkout mono-3.2.1
+    git checkout mono-3.2.6
     ./autogen.sh --prefix=/usr/local
     ./autogen.sh --prefix=/usr/local
     make get-monolite-latest
     make get-monolite-latest
     make EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/gmcs.exe
     make EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/gmcs.exe

+ 1 - 1
toolset/setup/linux/installer.py

@@ -169,7 +169,7 @@ class Installer:
     # Mono
     # Mono
     #
     #
     self.__run_command("git clone git://github.com/mono/mono", retry=True)
     self.__run_command("git clone git://github.com/mono/mono", retry=True)
-    self.__run_command("git checkout mono-3.2.3", cwd="mono")
+    self.__run_command("git checkout mono-3.2.6", cwd="mono")
     self.__run_command("./autogen.sh --prefix=/usr/local", cwd="mono")
     self.__run_command("./autogen.sh --prefix=/usr/local", cwd="mono")
     self.__run_command("make get-monolite-latest", cwd="mono")
     self.__run_command("make get-monolite-latest", cwd="mono")
     self.__run_command("make EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/gmcs.exe", cwd="mono")
     self.__run_command("make EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/gmcs.exe", cwd="mono")