Update how_to_build_linux.md

Use disable jbig, this isn't used often - or even supported by default with libtiff on some linux distributions.
resolves #851.

[ci skip]
This commit is contained in:
Campbell Barton 2016-11-05 15:39:52 +11:00 committed by GitHub
parent 84ad0f7c37
commit 5033516fbc

View file

@ -110,17 +110,11 @@ Features from the modified libtiff and needed currently, so this isn't a simple
```
$ cd opentoonz/thirdparty/tiff-4.0.3
$ ./configure --with-pic
$ ./configure --with-pic --disable-jbig
$ make
$ cd -
```
If you receive linking errors mentioning `jbg_` functions while building OpenToonz itself,
try appending `--disable-jbig` to the `./configure` command above and make clean build.
(see https://github.com/opentoonz/opentoonz/issues/851).
This workaround means you won't be able to load images using this compression method
(see https://github.com/opentoonz/opentoonz/issues/901) for updates on this issue.
### Building OpenToonz
```