Commit d52e45f4 authored by Craig's avatar Craig

Added missing Qt libs and plugins (fixes web widgets not working on Ubuntu 14.04)

parent b1c2d010
...@@ -199,6 +199,7 @@ if $BUNDLE_QT; then ...@@ -199,6 +199,7 @@ if $BUNDLE_QT; then
notifyProgress "Copying and stripping Qt plugins" notifyProgress "Copying and stripping Qt plugins"
mkdir -p $QT_PLUGINS_DEST_PATH mkdir -p $QT_PLUGINS_DEST_PATH
copyQtPlugin audio copyQtPlugin audio
copyQtPlugin bearer
copyQtPlugin generic copyQtPlugin generic
copyQtPlugin iconengines copyQtPlugin iconengines
copyQtPlugin imageformats copyQtPlugin imageformats
...@@ -232,6 +233,7 @@ if $BUNDLE_QT; then ...@@ -232,6 +233,7 @@ if $BUNDLE_QT; then
copyQtLibrary libQt5WebChannel copyQtLibrary libQt5WebChannel
copyQtLibrary libQt5WebKit copyQtLibrary libQt5WebKit
copyQtLibrary libQt5WebKitWidgets copyQtLibrary libQt5WebKitWidgets
copyQtLibrary libQt5WebSockets
copyQtLibrary libQt5Widgets copyQtLibrary libQt5Widgets
copyQtLibrary libQt5XcbQpa copyQtLibrary libQt5XcbQpa
copyQtLibrary libQt5Xml copyQtLibrary libQt5Xml
...@@ -353,9 +355,11 @@ echo -n ", onboard" >> "$CONTROL_FILE" ...@@ -353,9 +355,11 @@ echo -n ", onboard" >> "$CONTROL_FILE"
if $BUNDLE_QT; then if $BUNDLE_QT; then
# Listing some dependencies manually; ideally we should use dpkg -p recursively # Listing some dependencies manually; ideally we should use dpkg -p recursively
# to get the dependencies of the bundled shared libs & plugins. Or use static libs. # to get the dependencies of the bundled shared libs & plugins. Or use static libs.
echo -n ", libxcb-render-util0" >> "$CONTROL_FILE" echo -n ", libxcb1" >> "$CONTROL_FILE"
echo -n ", libxcb-icccm4" >> "$CONTROL_FILE" echo -n ", libxcb-icccm4" >> "$CONTROL_FILE"
echo -n ", libxcb-xkb1" >> "$CONTROL_FILE" echo -n ", libxcb-xkb1" >> "$CONTROL_FILE"
echo -n ", libxcb-image0" >> "$CONTROL_FILE"
echo -n ", libxcb-render-util0" >> "$CONTROL_FILE"
else else
echo -n ", libqt5multimedia5-plugins" >> "$CONTROL_FILE" echo -n ", libqt5multimedia5-plugins" >> "$CONTROL_FILE"
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment