diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-05-31 10:33:55 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-05-31 10:33:55 +0200 |
commit | 2df6ca0d6f6220e4a24746526e6918572b6399f0 (patch) | |
tree | 4b790d5753633ed1f8c04cf5b10df3f57e99f3f3 /web | |
parent | 200fb4d6aac73e5db8facf46b4b4354b7520bf5f (diff) | |
download | hakyll-2df6ca0d6f6220e4a24746526e6918572b6399f0.tar.gz |
Update FAQ: we don't depend on pcre no more!
Diffstat (limited to 'web')
-rw-r--r-- | web/tutorials/faq.markdown | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/web/tutorials/faq.markdown b/web/tutorials/faq.markdown index eed32a2..5a874d7 100644 --- a/web/tutorials/faq.markdown +++ b/web/tutorials/faq.markdown @@ -66,20 +66,3 @@ This means that when you upload your site, it will usually transfer all files -- this can generate more traffic than necessary, since it is possible that some files were not actually modified. If you use `rsync`, you can counter this using the `--checksum` option. - -## Problem with regex-pcre dependency on Mac OS - -Hakyll requires [regex-pcre], which might fail to build on Mac OS. To solve -this problem, make sure the [pcre] C library is installed (via homebrew or -macports). Then install [regex-pcre] using: - - cabal install --extra-include-dirs=/usr/local/include regex-pcre - -or - - cabal install --extra-include-dirs=/opt/local/include regex-pcre - -...and proceed to install Hakyll the regular way. - -[regex-pcre]: http://hackage.haskell.org/package/regex-pcre -[pcre]: http://www.pcre.org/ |