diff --git a/config.py b/config.py index 8621558a..ba8f27e4 100644 --- a/config.py +++ b/config.py @@ -287,10 +287,11 @@ class Config: 'gtk-bundle-2.22.1-win64-GtkRadiant.zip', 'jpeg-9-GtkRadiant.zip', 'libxml2-2.9.1-GtkRadiant.zip', + 'gtkglext-1.2.0-3-win32.zip', ]: if ( not os.path.exists( lib_archive ) ): print( 'downloading %s' % lib_archive ) - archive_web_request = urllib2.urlopen( 'https://www.dropbox.com/sh/y5rydj22e5ozpik/He0ghuwrgW/GtkRadiant-dependencies/%s' % lib_archive ) + archive_web_request = urllib2.urlopen( 'http://gtkradiant.s3-website-us-east-1.amazonaws.com/%s' % lib_archive ) archive_File = open( lib_archive, 'wb' ) while True: data = archive_web_request.read( 1048576 ) # read 1mb at a time