Hi Blender devs, the install_deps.sh script does not install the libqt4-opengl-dev package under Ubuntu. This package contains the QtOpenGL/QGLWidget file, which is required for building the OpenImageIO library.
The package has existed in the official Ubuntu repos since Lucid, and was even backported to Hardy (cf. http://packages.ubuntu.com/search?keywords=libqt4-opengl-dev). Regards, Daniel Obvious patch below: -------------8<------------------ diff --git a/blender/build_files/build_environment/install_deps.sh b/blender/build_files/build_environment/install_deps.sh index 97bd94f..0a7b21f 100755 --- a/blender/build_files/build_environment/install_deps.sh +++ b/blender/build_files/build_environment/install_deps.sh @@ -1311,7 +1311,7 @@ install_DEB() { libfreetype6-dev libx11-dev libxi-dev wget libsqlite3-dev libbz2-dev \ libncurses5-dev libssl-dev liblzma-dev libreadline-dev $OPENJPEG_DEV \ libopenexr-dev libopenal-dev libglew-dev yasm $THEORA_DEV $VORBIS_DEV \ - libsdl1.2-dev libfftw3-dev patch bzip2" + libsdl1.2-dev libfftw3-dev patch bzip2 libqt4-opengl-dev" OPENJPEG_USE=true VORBIS_USE=true -- typed with http://neo-layout.org _______________________________________________ Bf-committers mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-committers
