diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-04 15:50:39 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-04 15:50:39 -0600 |
commit | c4c160a4519f20d50e7189ef92aac99b83c4cc6a (patch) | |
tree | 601e4d3adbe6f8d9ced25a21465fadc4b32627dc | |
parent | faef2e51d0c7b74334a11400b205daf382805780 (diff) |
libcms2: mac has issue with long long
Change-Id: Ibd1ec8d540597e611609dafdffb39266a2ec064d
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index e325f4b84081..877a72faf6a6 100644 --- a/configure.ac +++ b/configure.ac @@ -7043,6 +7043,9 @@ else AC_MSG_RESULT([internal]) SYSTEM_LCMS2=NO LCMS2_CFLAGS="-I${OUTDIR}/inc/lcms2" + if test $_os = Darwin; then + LCMS2_CFLAGS="$LCMS2_CFLAGS -Wno-long-long" + fi LCMS2_LIBS="-L${OUTDIR}/lib -llcms2" LCMS2_TARBALL="861ef15fa0bc018f9ddc932c4ad8b6dd-lcms2-2.4.tar.gz" BUILD_TYPE="$BUILD_TYPE LCMS2" |