Commit Graph

3 Commits

Author SHA1 Message Date
alexey.lysiuk 5e06b38a4f * update jpeg-turbo to 2.0.0 2018-08-05 09:37:04 +03:00
alexey.lysiuk a8b6a7d129 * rebuild jpeg-turbo 1.5.3 with xcode 9.4 and sdk 10.9 2018-07-15 16:39:24 +03:00
alexey.lysiuk 3e57d31672 + libjpeg-turbo 1.5.3
https://libjpeg-turbo.org/
https://sourceforge.net/projects/libjpeg-turbo/files/1.5.3/libjpeg-turbo-1.5.3.tar.gz

# nasm
curl -LO https://www.nasm.us/pub/nasm/releasebuilds/2.13.03/nasm-2.13.03.tar.xz
tar -xf nasm-2.13.03.tar.xz

cd nasm-2.13.03
./configure && make install

cd ..

# libjpeg-turbo
curl -LO https://sourceforge.net/projects/libjpeg-turbo/files/1.5.3/libjpeg-turbo-1.5.3.tar.gz
tar -xf libjpeg-turbo-1.5.3.tar.gz

cd libjpeg-turbo-1.5.3
./configure --disable-shared && make install
2018-06-23 13:31:54 +03:00