summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYong Bakos <ybakos@humanoriented.com>2016-04-14 17:48:12 -0500
committerBryce Harrington <bryce@bryceharrington.org>2016-04-15 09:36:09 -0700
commit36f2bd164692719d831e582608f41f4ca95f4cc1 (patch)
tree5bec9f0676987659fa65cf8052e8cc725aac116e
parent452f1d97764ba226fca3a60dce3f57363523eead (diff)
wl_install_deps: Add missing dependencies
Building on Ubuntu 15.10 x64 fails due to missing packages: libtool, libxml2-dev, libpng-dev, libglib2.0-dev, libgcrypt20-dev, x11proto-scrnsaver-dev, libxfont-dev, and libedit-dev. After these changes, wl_build succeeds on Ubuntu 15.10 x64. Signed-off-by: Yong Bakos <ybakos@humanoriented.com>
-rwxr-xr-xwl_install_deps9
1 files changed, 8 insertions, 1 deletions
diff --git a/wl_install_deps b/wl_install_deps
index 2c852d8..ea4b69b 100755
--- a/wl_install_deps
+++ b/wl_install_deps
@@ -3,7 +3,7 @@
. $HOME/.config/wayland-build-tools/wl_defines.sh
# generic build dependencies for ubuntu
-sudo apt-get -y install autoconf automake bison debhelper dpkg-dev flex
+sudo apt-get -y install autoconf automake bison debhelper dpkg-dev flex libtool
sudo apt-get -y install pkg-config quilt python-libxml2
# wayland/weston specific stuff
@@ -20,6 +20,13 @@ sudo apt-get -y install libudev-dev
sudo apt-get -y install libgudev-1.0-dev
sudo apt-get -y install llvm-dev
sudo apt-get -y install python-mako
+sudo apt-get -y install libxml2-dev
+sudo apt-get -y install libpng-dev
+sudo apt-get -y install libglib2.0-dev
+sudo apt-get -y install libgcrypt20-dev
+sudo apt-get -y install x11proto-scrnsaver-dev
+sudo apt-get -y install libxfont-dev
+sudo apt-get -y install libedit-dev
# xwayland specific stuff
if [ ${INCLUDE_XWAYLAND} ]; then