From e6c063032aa7aba00cb9fb51da154adebcd3ef64 Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Tue, 9 Sep 2014 16:28:28 -0600 Subject: [PATCH 1/2] Add glfw3 as a dep to the README. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 46e5014e36e..18e249539cd 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Servo welcomes contribution from everyone. See On OS X (homebrew): ``` sh -brew install automake pkg-config python +brew install automake pkg-config python glfw3 pip install virtualenv ``` @@ -28,7 +28,7 @@ On Debian-based Linuxes: sudo apt-get install curl freeglut3-dev \ libfreetype6-dev libgl1-mesa-dri libglib2.0-dev xorg-dev \ msttcorefonts gperf g++ cmake python-virtualenv \ - libssl-dev + libssl-dev libglfw3-dev ``` On Fedora: @@ -37,7 +37,7 @@ On Fedora: sudo yum install curl freeglut-devel libtool gcc-c++ libXi-devel \ freetype-devel mesa-libGL-devel glib2-devel libX11-devel libXrandr-devel gperf \ fontconfig-devel cabextract ttmkfdir python python-virtualenv expat-devel \ - rpm-build openssl-devel + rpm-build openssl-devel glfw-devel pushd . cd /tmp wget http://corefonts.sourceforge.net/msttcorefonts-2.5-1.spec From 1c37e54065fc075edf1c507f5af15538f5049c60 Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Tue, 9 Sep 2014 16:40:47 -0600 Subject: [PATCH 2/2] Add note about installing glfw3 from source. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 18e249539cd..135b8b93ede 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,10 @@ Servo welcomes contribution from everyone. See ## Prerequisites +Note, on systems without glfw3 packages, you can compile from source. An +example can be found in [the TravisCI install +script](etc/ci/travis.install.sh). + On OS X (homebrew): ``` sh