Change "OS X" to "macOS"

This commit is contained in:
atouchet 2018-03-26 23:00:20 -07:00
parent 949a2ed552
commit 73a619359c
3 changed files with 8 additions and 8 deletions

View file

@ -4,7 +4,7 @@
Servo is a prototype web browser engine written in the Servo is a prototype web browser engine written in the
[Rust](https://github.com/rust-lang/rust) language. It is currently developed on [Rust](https://github.com/rust-lang/rust) language. It is currently developed on
64-bit OS X, 64-bit Linux, 64-bit Windows, and Android. 64-bit macOS, 64-bit Linux, 64-bit Windows, and Android.
Servo welcomes contribution from everyone. See Servo welcomes contribution from everyone. See
[`CONTRIBUTING.md`](CONTRIBUTING.md) and [`HACKING_QUICKSTART.md`](docs/HACKING_QUICKSTART.md) [`CONTRIBUTING.md`](CONTRIBUTING.md) and [`HACKING_QUICKSTART.md`](docs/HACKING_QUICKSTART.md)
@ -41,7 +41,7 @@ https://github.com/rust-lang-nursery/rustup.rs/#other-installation-methods)
### Other dependencies ### Other dependencies
Please select your operating system: Please select your operating system:
* [OS X](#os-x) * [macOS](#macos)
* [Debian-based Linuxes](#on-debian-based-linuxes) * [Debian-based Linuxes](#on-debian-based-linuxes)
* [Fedora](#on-fedora) * [Fedora](#on-fedora)
* [Arch Linux](#on-arch-linux) * [Arch Linux](#on-arch-linux)
@ -50,19 +50,19 @@ Please select your operating system:
* [Microsoft Windows](#on-windows-msvc) * [Microsoft Windows](#on-windows-msvc)
* [Android](#cross-compilation-for-android) * [Android](#cross-compilation-for-android)
#### OS X #### macOS
#### On OS X (homebrew) #### On macOS (homebrew)
``` sh ``` sh
brew install automake pkg-config python cmake yasm brew install automake pkg-config python cmake yasm
pip install virtualenv pip install virtualenv
``` ```
#### On OS X (MacPorts) #### On macOS (MacPorts)
``` sh ``` sh
sudo port install python27 py27-virtualenv cmake yasm sudo port install python27 py27-virtualenv cmake yasm
``` ```
#### On OS X >= 10.11 (El Capitan), you also have to install OpenSSL #### On macOS >= 10.11 (El Capitan), you also have to install OpenSSL
``` sh ``` sh
brew install openssl brew install openssl

View file

@ -153,7 +153,7 @@ A typical command might be:
… to avoid using too many threads and make things easier to understand. … to avoid using too many threads and make things easier to understand.
On OSX, you can add some Cocoa-specific debug options: On macOS, you can add some Cocoa-specific debug options:
``` shell ``` shell
./mach run -d -- /tmp/a.html -- -NSShowAllViews YES ./mach run -d -- /tmp/a.html -- -NSShowAllViews YES

View file

@ -13,7 +13,7 @@ Shell scripts should be written against bash, starting with this shebang:
#!/usr/bin/env bash #!/usr/bin/env bash
``` ```
Note that the version of bash available on OS X by default is quite old, so be Note that the version of bash available on macOS by default is quite old, so be
careful when using new features. careful when using new features.
Scripts should enable a few options at the top for robustness: Scripts should enable a few options at the top for robustness: