summaryrefslogtreecommitdiff
path: root/cerbero
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-04-29 01:10:15 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-06 16:03:09 +0200
commitf624a90b19c91bd4eef7ae019aca0208af5df670 (patch)
treef223cbbfe6ad2bba62d1e826e70ce2c64c4b7f9e /cerbero
parent8a4e1ae066fe40fc34b417e0635106dce5441db5 (diff)
toolchain: update to mingw-w64 2.0.8 and gcc 4.7.2
Diffstat (limited to 'cerbero')
-rw-r--r--cerbero/bootstrap/windows.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/cerbero/bootstrap/windows.py b/cerbero/bootstrap/windows.py
index 97a0538..9ccfa8e 100644
--- a/cerbero/bootstrap/windows.py
+++ b/cerbero/bootstrap/windows.py
@@ -36,9 +36,6 @@ MINGW_TARBALL_TPL = "mingw-%s-%s-%s.tar.xz"
MINGWGET_DEPS = ['msys-wget']
GNOME_FTP = 'http://ftp.gnome.org/pub/gnome/binaries/win32/'
WINDOWS_BIN_DEPS = ['intltool/0.40/intltool_0.40.4-1_win32.zip']
-PTHREADS_URL = \
- 'http://downloads.sourceforge.net/project/mingw-w64/External%20binary%20'\
- 'packages%20%28Win64%20hosted%29/pthreads/pthreads-20100604.zip'
class WindowsBootstraper(BootstraperBase):
@@ -73,7 +70,6 @@ class WindowsBootstraper(BootstraperBase):
# After mingw is beeing installed
self.install_bin_deps()
self.install_python_sdk()
- self.install_pthreads()
def check_dirs(self):
if not os.path.exists(self.prefix):
@@ -100,17 +96,6 @@ class WindowsBootstraper(BootstraperBase):
except Exception:
pass
- def install_pthreads(self):
- pthreadszip = os.path.join(self.prefix, 'pthreads.zip')
- shell.download(PTHREADS_URL, pthreadszip)
- temp = fix_winpath(os.path.abspath(tempfile.mkdtemp()))
- # real pthreads stuff is in a zip file inside the previous zip file
- # under mingwxx/pthreads-xx.zip
- shell.unpack(pthreadszip, temp)
- shell.unpack(os.path.join(temp, 'pthreads-20100604',
- 'ming%s' % self.version, 'pthreads-%s.zip' % self.version),
- self.prefix)
-
def install_python_sdk(self):
m.action(_("Installing Python headers"))
temp = tempfile.mkdtemp()