From bd310d860554876f043e0537cde5ea1e7c1108b4 Mon Sep 17 00:00:00 2001 From: Ranjan Anantharaman Date: Mon, 27 Jun 2016 20:01:17 -0400 Subject: [PATCH 1/2] Update README with install note --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e203cb7..51db740 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,5 @@ Some of the functions implemented by this wrapper may be documented in [Base.Gra There is an extensive set of [examples](samples/Samples.md). On install, libraries will be compiled from source if not present. [Diagnostics from BinDeps](https://github.com/JuliaLang/BinDeps.jl#diagnostics) may help avoid a lengthy compilation. + +**Note** : If you already have Cairo installed on your system, `Pkg.test("Cairo")` might fail. Uninstall your system's Cairo, or unlink it from your path (On Mac OSX, the command to do that with Homebrew is `brew unlink cairo`). That way, `Pkg.build("Cairo")` would download the binaries to your `deps/usr`, and `Pkg.build("Cairo")` and `Pkg.test("Cairo")` would work again. From ec3f16b65351ca93b7ade41aff37c7f60e70ca57 Mon Sep 17 00:00:00 2001 From: Ranjan Anantharaman Date: Tue, 28 Jun 2016 16:33:58 -0400 Subject: [PATCH 2/2] Modify note to be specific to OSX --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 51db740..074d9ca 100644 --- a/README.md +++ b/README.md @@ -12,4 +12,4 @@ There is an extensive set of [examples](samples/Samples.md). On install, libraries will be compiled from source if not present. [Diagnostics from BinDeps](https://github.com/JuliaLang/BinDeps.jl#diagnostics) may help avoid a lengthy compilation. -**Note** : If you already have Cairo installed on your system, `Pkg.test("Cairo")` might fail. Uninstall your system's Cairo, or unlink it from your path (On Mac OSX, the command to do that with Homebrew is `brew unlink cairo`). That way, `Pkg.build("Cairo")` would download the binaries to your `deps/usr`, and `Pkg.build("Cairo")` and `Pkg.test("Cairo")` would work again. +**Note** : If you're on Mac OSX and you already have Cairo installed on your system, `Pkg.test("Cairo")` might fail. Uninstall your system's Cairo, or unlink it from your path (The command to do that with Homebrew is `brew unlink cairo`). That way, `Pkg.build("Cairo")` would download the binaries to your `deps/usr`, and `Pkg.build("Cairo")` and `Pkg.test("Cairo")` would work again.