preconfig.sh: don't require ICU on OSX

This isn't needed for the full build, only QtWebKit which has it's own ways of finding the system ICU.

https://github.com/ariya/phantomjs/issues/10448
2.0
Mike McQuaid 2014-08-05 09:22:19 +01:00 committed by Ariya Hidayat
parent f532b73cb2
commit 0a8b13403f
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,7 @@ QT_CFG+=' -qpa phantom' # Default to our custom QPA platform
if [[ $OSTYPE != darwin* ]]; then
QT_CFG+=' -fontconfig' # Fontconfig for better font matching
QT_CFG+=' -icu' # ICU for QtWebKit (which provides the OSX headers) but not QtBase
fi
QT_CFG+=' -release' # Build only for release (no debugging support)
@ -39,7 +40,6 @@ QT_CFG+=' -no-sm'
QT_CFG+=' -no-xinerama'
QT_CFG+=' -no-xkb'
QT_CFG+=' -no-xcb'
QT_CFG+=' -icu'
QT_CFG+=' -no-pkg-config'
QT_CFG+=' -no-kms'
QT_CFG+=' -no-linuxfb'