[Webkit-unassigned] [Bug 102057] Cannot compile QtWebKit 2.3 on Mac

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Nov 23 01:25:26 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=102057





--- Comment #5 from Bobber <bobber.cheng at intercallapac.com>  2012-11-23 01:27:30 PST ---
Hi Allan,

Your change is good, but there is new compiling error for Source/WebCore/plugins/mac/PluginPackageMac.cpp. Please make following change to compile it:
WTF::RetainPtr<CFStringRef> homeDir = adoptCF(homeDirectoryPath().createCFString());
to
WTF::RetainPtr<CFStringRef> homeDir(homeDirectoryPath().createCFString());


WTF::RetainPtr<CFStringRef> path(AdoptCF, m_path.createCFString());
to
WTF::RetainPtr<CFStringRef> path(m_path.createCFString());

Thanks,
Bobber

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list