diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2016-01-20 14:47:15 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2016-01-22 16:00:51 +0100 |
commit | 9cfe64a12200dd8ec4d7cc522482383acde9f5ec (patch) | |
tree | 0310002e421411d614d3e08e20c239543d2fa7fa /configure | |
parent | b22073a5b2d9be67edb44a975a79084655e8eef4 (diff) | |
download | qtlocation-mapboxgl-9cfe64a12200dd8ec4d7cc522482383acde9f5ec.tar.gz |
[build] replace jpeg library with libjpeg-turbo
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ function print_flags { if [ "$(type -t print_${NAME}_flags)" = 'function' ]; then print_${NAME}_flags else - local VERSION=`echo "${NAME}_VERSION" | tr "[:lower:]" "[:upper:]"` + local VERSION=`echo "${NAME}_VERSION" | tr "[:lower:]-" "[:upper:]_"` if [ ! -z ${!VERSION:-} ] ; then mason install ${NAME} ${!VERSION} for FLAGS in "$@" ; do @@ -94,7 +94,7 @@ print_flags openssl static_libs cflags ldflags print_flags libcurl static_libs cflags ldflags print_flags glfw static_libs cflags ldflags print_flags libpng static_libs cflags ldflags -print_flags jpeg static_libs cflags ldflags +print_flags libjpeg-turbo static_libs cflags ldflags print_flags sqlite static_libs cflags ldflags print_flags libuv static_libs cflags ldflags print_flags zlib static_libs cflags ldflags |