<div dir="ltr">Thanks Phil,<div><br></div><div style>I get the following error when changing configure.py as you suggested:</div><div style><br></div><div style><div>cfgtest_QtWebKit.cpp: In function ‘int main(int, char**)’:</div>

<div>cfgtest_QtWebKit.cpp:5:30: error: cannot allocate an object of abstract type ‘QWebHistoryInterface’</div><div>qwebhistoryinterface.h:29:22: note:   because the following virtual functions are pure within ‘QWebHistoryInterface’:</div>

<div>qwebhistoryinterface.h:38:18: note: <span class="" style="white-space:pre">        </span>virtual bool QWebHistoryInterface::historyContains(const QString&) const</div><div>qwebhistoryinterface.h:39:18: note: <span class="" style="white-space:pre">   </span>virtual void QWebHistoryInterface::addHistoryEntry(const QString&)</div>

<div><br></div><div style>But I did manage to get the check to pass when using check_module("QtWebKit", "qwebelement.h", "new QWebElement()")</div></div></div><div class="gmail_extra"><br><br>

<div class="gmail_quote">On 6 March 2013 08:40, Phil Thompson <span dir="ltr"><<a href="mailto:phil@riverbankcomputing.com" target="_blank">phil@riverbankcomputing.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

On Wed, 6 Mar 2013 01:25:18 +0000, Chris Roebuck <<a href="mailto:chris@cjroebuck.com">chris@cjroebuck.com</a>><br>
wrote:<br>
<div class="im">> Here's my result:<br>
><br>
> objdump -T libQt5WebKit.so | grep QWebPage | grep QObject<br>
><br>
> 00000000004a2530 g    DF .text 0000000000000935  Base<br>
><br>
_ZN15QWebPageAdapter26dynamicPropertyChangeEventEP7QObjectP27QDynamicPropertyChangeEvent<br>
> 00000000004a3770 g    DF .text 000000000000002a  Base<br>
>  _ZN15QWebPageAdapter17setSystemTrayIconEP7QObject<br>
><br>
> Interestingly, if I do the same for libQt5WebKitWidgets.so I get what<br>
you<br>
> reported:<br>
><br>
> objdump -T libQt5WebKitWidgets.so | grep QWebPage | grep QObject<br>
><br>
> 0000000000000000      DF *UND* 0000000000000000<br>
>  _ZN15QWebPageAdapter17setSystemTrayIconEP7QObject<br>
> 0000000000000000      DF *UND* 0000000000000000<br>
><br>
_ZN15QWebPageAdapter26dynamicPropertyChangeEventEP7QObjectP27QDynamicPropertyChangeEvent<br>
> 0000000000027570 g    DF .text 00000000000000a4  Base<br>
>  _ZN8QWebPageC1EP7QObject<br>
> 0000000000027570 g    DF .text 00000000000000a4  Base<br>
>  _ZN8QWebPageC2EP7QObject<br>
<br>
</div>Try changing the line in configure.py from...<br>
<br>
check_module("QtWebKit", "qwebpage.h", "new QWebPage()")<br>
<br>
...to...<br>
<br>
check_module("QtWebKit", "qwebhistoryinterface.h", "new<br>
QWebHistoryInterface()")<br>
<span class="HOEnZb"><font color="#888888"><br>
Phil<br>
</font></span></blockquote></div><br></div>