Changes between Version 7 and Version 8 of BuildingQtOnOSX


Ignore:
Timestamp:
Dec 10, 2009 1:59:02 PM (14 years ago)
Author:
piet.webkit@yahoo.com
Comment:

Require qt4-mac-dev (v4.6) instead of qt4-mac (v4.5.3). See https://bugs.webkit.org/show_bug.cgi?id=32216.

Legend:

Unmodified
Added
Removed
Modified
  • BuildingQtOnOSX

    v7 v8  
    44 * [BuildingQtOnWindows Building the Qt Port on Windows]
    55
    6 These instructions assume you are building on an OSX system with Mac Ports installed having the qt4-mac (4.5.2) port installed.
     6These instructions assume you are building on an OSX system with Mac Ports installed having the qt4-mac-devel (4.6) port installed.
    77
    88== Checkout the Code ==
     
    2121This works around the problem with Qt headers being reference directly from /usr/include regardless of where the QTDIR is (Fixes "''../../../WebKit/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h:26:17: error: QChar: No such file or directory''" errors):
    2222{{{
    23 export QTDIR=/opt/local/libexec/qt4-mac # mac ports Qt
     23export QTDIR=/opt/local/libexec/qt4-mac-devel # mac ports Qt
    2424cd /usr/include
    2525for q in $QTDIR/include/*; do if [ ! -e "`basename $q`" ]; then sudo ln -s "$q"; fi ; done # create a symlink
     
    3131export WEBKITSRCDIR=qtwebkit # change this to 'WebKit' to build WebKit SVN Trunk
    3232export WEBKITOUTPUTDIR=`pwd`/${WEBKITSRCDIR}-build
    33 ${WEBKITSRCDIR}/WebKitTools/Scripts/build-webkit --qt --qmake=qmake-4.5 --makeargs="-j2" -spec macx-g++ --no-video --debug
     33${WEBKITSRCDIR}/WebKitTools/Scripts/build-webkit --qt --qmake=qmake-4.5 --makeargs="-j2" -spec macx-g++ --no-video --debug # change 'qmake-4.5' to '/opt/local/libexec/qt4-mac-devel/bin/qmake' if installed from Mac Ports
    3434}}}
    3535