Browse Source

Use 3.2.8 insetead of 3.4.0

INADA Naoki 11 years ago
parent
commit
a85a3a2370
1 changed files with 6 additions and 6 deletions
  1. 6 6
      toolset/setup/linux/installer.py

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

@@ -167,12 +167,12 @@ class Installer:
     #
     #
     # Mono
     # Mono
     #
     #
-    self.__download("http://download.mono-project.com/sources/mono/mono-3.4.0.tar.bz2", "mono-3.4.0.tar.bz2")
-    self.__run_command("tar xf mono-3.4.0.tar.bz2")
-    self.__run_command("./configure.sh --prefix=/usr/local", cwd="mono-3.4.0")
-    self.__run_command("make get-monolite-latest", cwd="mono-3.4.0")
-    self.__run_command("make EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/basic.exe", cwd="mono-3.4.0")
-    self.__run_command("sudo make install", cwd="mono-3.4.0")
+    self.__download("http://download.mono-project.com/sources/mono/mono-3.2.8.tar.bz2", "mono-3.2.8.tar.bz2")
+    self.__run_command("tar xf mono-3.2.8.tar.bz2")
+    self.__run_command("./configure --disable-nls --without-profile2 --prefix=/usr/local", cwd="mono-3.2.8")
+    self.__run_command("make get-monolite-latest", cwd="mono-3.2.8")
+    self.__run_command("make -j4 EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/basic.exe", cwd="mono-3.2.8")
+    self.__run_command("sudo make install", cwd="mono-3.2.8")
 
 
     self.__run_command("mozroots --import --sync", retry=True)
     self.__run_command("mozroots --import --sync", retry=True)