Created
April 14, 2017 18:41
-
-
Save zv1n/f0de8e951198d232b77321172898b34c to your computer and use it in GitHub Desktop.
Follow these steps to build a Qt 4.8.6 that is compatible with Surround SCM 2015.02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tar xf qt-everywhere-opensource-src-4.8.6.tar.gz | |
| cd qt-everywhere-opensource-src-4.8.6/ | |
| # Grab the patch-set. Fixups for deprecation and some missing exports. | |
| curl https://gist.githubusercontent.com/zv1n/5e1f19bcf5bd5d502d5737ce2a03ba05/raw/4de311e35214d1dfa0dd31262b28231b6745163b/qt_surroundscm_exports.patch > qt_486_scm.patch | |
| patch -p1 < qt_486_scm.patch | |
| # Disable phonon - it fails to build due to QTKit being remove from Frameworks in macOS 10.12. | |
| ./configure -no-phonon -no-phonon-backend -release | |
| make -j9 | |
| sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment