diff options
author | Dane Springmeyer <dane@mapbox.com> | 2014-11-03 10:32:27 -0500 |
---|---|---|
committer | Dane Springmeyer <dane@mapbox.com> | 2014-11-03 10:32:27 -0500 |
commit | d74a98899ffd80e6300ad1c4185151f472fd8d0e (patch) | |
tree | 66e190ea287c6e2f4806b3917d7ee513aca54ae9 /configure | |
parent | 490a4bb17f96777b7514e296d215be4de674344e (diff) | |
parent | f0b8fa2839ec0a89ee4b3ae3018288ba31e4c77e (diff) | |
download | qtlocation-mapboxgl-d74a98899ffd80e6300ad1c4185151f472fd8d0e.tar.gz |
merge with master
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 26 |
1 files changed, 18 insertions, 8 deletions
@@ -29,16 +29,18 @@ case ${MASON_PLATFORM} in LIBUV_VERSION=0.11.29 ZLIB_VERSION=system BOOST_VERSION=system + NUNICODE_VERSION=1.4 ;; *) - GLFW_VERSION=a21f2377 - SQLITE_VERSION=system - LIBPNG_VERSION=1.6.13 - LIBCURL_VERSION=system - LIBUV_VERSION=0.10.28 - ZLIB_VERSION=system - BOOST_VERSION=system - ;; + GLFW_VERSION=a21f2377 + SQLITE_VERSION=system + LIBPNG_VERSION=1.6.13 + LIBCURL_VERSION=system + LIBUV_VERSION=0.10.28 + ZLIB_VERSION=system + BOOST_VERSION=system + NUNICODE_VERSION=1.4 + ;; esac function abort { >&2 echo -e "\033[1m\033[31m$1\033[0m"; exit 1; } @@ -117,6 +119,14 @@ if [ ! -z ${ZLIB_VERSION} ]; then CONFIG+=" 'zlib_ldflags': $(quote_flags $(mason ldflags zlib ${ZLIB_VERSION})),"$LN fi +if [ ! -z ${NUNICODE_VERSION} ]; then + mason install nunicode ${NUNICODE_VERSION} + CONFIG+=" 'nu_static_libs': $(quote_flags $(mason static_libs nunicode ${NUNICODE_VERSION})),"$LN + CONFIG+=" 'nu_cflags': $(quote_flags $(mason cflags nunicode ${NUNICODE_VERSION})),"$LN + CONFIG+=" 'nu_ldflags': $(quote_flags $(mason ldflags nunicode ${NUNICODE_VERSION})),"$LN +fi + + CONFIG+=" } } " |