-
Bug
-
Resolution: Done
-
P2: Important
-
4.7.1
-
None
-
465d2c6356bdfd70bd28c6ec53191e73682b06c1 bb8f085, bb8f085611f4cb91b7bde7220d407948edcc572c, a55c13c52822f337cc4ad708881fd54d3a1bbb1d
The bearer management plugin unnecessarily links against QtGui. The problem is that src\plugins\bearer\symbian\symbian.pri includes the following line:
QT += network
This is wrong because the QT variable by default contains 'core' and 'gui' so the correct line would be:
QT = core network
I verified using elftran -dump i that no symbols are imported from QtGui (at least on S^3) so we should remove this unneeded dependency.