Hi,

I am trying to get OpenVg configured and working with the reference implementation of Khronos group.
I'm following instructions from http://doc.qt.nokia.com/4.6/openvg.html .

I have configured the following to point to folders where I have my reference impl of OpenVg.
* QMAKE_INCDIR_OPENVG
* QMAKE_LIBDIR_OPENVG
* QMAKE_LIBS_OPENVG

* QMAKE_INCDIR_EGL
* QMAKE_LIBDIR_EGL
* QMAKE_LIBS_EGL

After configuring as mentioned in the above link, I'm trying to make the openVg module.
Everything compiles well, but I get a linker error that looks like this-
Qt\2009.05\qt\src\openvg/qpixmapdata_vg.cpp:77: undefined reference to `_imp___ZNK11QEglContext9isCurrentEv'
Qt\2009.05\qt\src\openvg/qpixmapdata_vg.cpp:85: undefined reference to `_imp___ZN11QEglContext11makeCurrentEPv'
Qt\2009.05\qt\src\openvg/qpixmapdata_vg.cpp:89: undefined reference to `_imp___ZN11QEglContext15lazyDoneCurrentEv'
.
.
.

QEglContext I understand comes from the gui module which is included. What am I doing wrong?

Thanks,
Karthik