mirror of
https://github.com/servo/servo.git
synced 2025-06-09 17:13:24 +00:00
Require running autogen.sh
This commit is contained in:
parent
210434a9b8
commit
b052dae230
5 changed files with 22 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -10,3 +10,4 @@ servo-test
|
||||||
Makefile
|
Makefile
|
||||||
Servo.app
|
Servo.app
|
||||||
build
|
build
|
||||||
|
configure
|
15
README.md
15
README.md
|
@ -1,11 +1,24 @@
|
||||||
## The Servo Parallel Browser Project
|
## The Servo Parallel Browser Project
|
||||||
|
|
||||||
It builds on Linux and OS X and requires the newest rustc you can find
|
I currently build on OS X and Linux.
|
||||||
|
|
||||||
|
### Prerequisites
|
||||||
|
|
||||||
|
On OS X:
|
||||||
|
|
||||||
|
brew install sdl cairo
|
||||||
|
|
||||||
|
On Debian-based Linuxes:
|
||||||
|
|
||||||
|
sudo apt-get install sdl cairo
|
||||||
|
|
||||||
|
### Building
|
||||||
|
|
||||||
git clone git://github.com/mozilla/servo.git
|
git clone git://github.com/mozilla/servo.git
|
||||||
cd servo
|
cd servo
|
||||||
git submodule init
|
git submodule init
|
||||||
git submodule update
|
git submodule update
|
||||||
|
./autogen.sh
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
../configure
|
../configure
|
||||||
make check && make
|
make check && make
|
||||||
|
|
5
autogen.sh
Executable file
5
autogen.sh
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
(cd src/mozjs/js/src && autoconf)
|
||||||
|
|
||||||
|
cp -f configure.in configure
|
|
@ -1 +1 @@
|
||||||
Subproject commit a971b9dd53975db0225bb900c216f2a1f4cd1de9
|
Subproject commit e8ffa4638b185dc2a7303fadcd253599684f0028
|
Loading…
Add table
Add a link
Reference in a new issue