mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
The Servo Browser Engine
On at least some homebrew systems you will encounter the following error after a new install when running servo's configure: servo/src/pixman/configure: line 13682: PKG_PROG_PKG_CONFIG: command not found servo/src/pixman/configure: line 13756: syntax error near unexpected token `GTK,' servo/src/pixman/configure: line 13756: ` PKG_CHECK_MODULES(GTK, gtk+-2.0 pixman-1)' This appears to be related to mxcl/homebrew#5117 and mxcl/homebrew#3209. Add a note to the README.md about how to resolve this issue with some manual configuration. |
||
---|---|---|
mk | ||
src | ||
.gitignore | ||
.gitmodules | ||
configure | ||
Info.plist | ||
Makefile.in | ||
README.md |
The Servo Parallel Browser Project
Servo is a prototype web browser engine written in the Rust language. It is currently developed on OS X and Linux.
Prerequisites
On OS X (homebrew):
brew install https://raw.github.com/Homebrew/homebrew-versions/master/autoconf213.rb
brew install automake libtool
brew install pkg-config
Note, there is an issue on homebrew which requires the following manual configuration as well:
sudo sh -c 'echo /usr/local/share/aclocal >> /usr/share/aclocal/dirlist'
On OS X (MacPorts):
sudo port install autoconf213
On Debian-based Linuxes:
sudo apt-get install autoconf2.13 freeglut3-dev libtool
Servo builds its own copy of Rust, so there is no need to provide a Rust compiler.
Building
git clone git://github.com/mozilla/servo.git
cd servo
mkdir -p build && cd build
../configure
make && make check
./servo ../src/test/about-mozilla.html