Turn on highlight in README

This commit is contained in:
Sasha Koss 2013-04-04 23:36:18 +07:00
parent b9f82b8d05
commit a2feaeafb5

View file

@ -7,33 +7,43 @@ language. It is currently developed on 64bit OS X and 64bit Linux.
On OS X (homebrew): On OS X (homebrew):
brew install https://raw.github.com/Homebrew/homebrew-versions/master/autoconf213.rb ``` sh
brew install automake libtool brew install https://raw.github.com/Homebrew/homebrew-versions/master/autoconf213.rb
brew install pkg-config brew install automake libtool
brew install pkg-config
```
Note, there is an [issue][] on homebrew which requires the following manual Note, there is an [issue][] on homebrew which requires the following manual
configuration as well: configuration as well:
sudo sh -c 'echo /usr/local/share/aclocal >> /usr/share/aclocal/dirlist' ``` sh
sudo sh -c 'echo /usr/local/share/aclocal >> /usr/share/aclocal/dirlist'
```
On OS X (MacPorts): On OS X (MacPorts):
sudo port install autoconf213 ``` sh
sudo port install autoconf213
```
On Debian-based Linuxes: On Debian-based Linuxes:
sudo apt-get install autoconf2.13 freeglut3-dev libtool ``` sh
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 Servo builds its own copy of Rust, so there is no need to provide a Rust
compiler. compiler.
## Building ## Building
git clone git://github.com/mozilla/servo.git ``` sh
cd servo git clone git://github.com/mozilla/servo.git
mkdir -p build && cd build cd servo
../configure mkdir -p build && cd build
make && make check ../configure
./servo ../src/test/about-mozilla.html make && make check
./servo ../src/test/about-mozilla.html
```
[issue]: https://github.com/mxcl/homebrew/issues/5117 [issue]: https://github.com/mxcl/homebrew/issues/5117