diff options
-rw-r--r-- | cerbero/bootstrap/build_tools.py | 2 | ||||
-rw-r--r-- | cerbero/bootstrap/windows.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cerbero/bootstrap/build_tools.py b/cerbero/bootstrap/build_tools.py index ee589e5b..9df684d4 100644 --- a/cerbero/bootstrap/build_tools.py +++ b/cerbero/bootstrap/build_tools.py @@ -30,7 +30,7 @@ class BuildTools (BootstrapperBase): 'orc-tool', 'gettext-m4', 'gettext-tools'] PLAT_BUILD_TOOLS = { Platform.DARWIN: ['intltool', 'yasm', 'bison', 'flex'], - Platform.WINDOWS: ['intltool', 'yasm', 'bison', 'flex'], + Platform.WINDOWS: ['intltool', 'yasm'], Platform.LINUX: ['intltool-m4'], } diff --git a/cerbero/bootstrap/windows.py b/cerbero/bootstrap/windows.py index 1ee2860a..0295646b 100644 --- a/cerbero/bootstrap/windows.py +++ b/cerbero/bootstrap/windows.py @@ -33,7 +33,7 @@ MINGW_DOWNLOAD_SOURCE = 'http://gstreamer.freedesktop.org/data/cerbero/toolchain MINGW_TARBALL_TPL = "mingw-%s-gcc-%s-%s-%s.tar.xz" # Extra dependencies -MINGWGET_DEPS = ['msys-wget'] +MINGWGET_DEPS = ['msys-wget', 'msys-flex', 'msys-bison', 'msys-perl'] GNOME_FTP = 'http://ftp.gnome.org/pub/gnome/binaries/win32/' WINDOWS_BIN_DEPS = ['intltool/0.40/intltool_0.40.4-1_win32.zip'] |