Hi,
I am compiling qt-4.7.4 version with embedded linux opengl es2.
Below is my configuration steps.
$./configure -prefix /home/qt-everywhere-opensource-src-4.7.4/ -embedded arm -little-endian -depths all -v -xplatform linux-g++ -host-little-endian -opengl es2
Which edition of Qt do you want to use ?

Type 'c' if you want to use the Commercial Edition.
Type 'o' if you want to use the Open Source Edition.

o


This is the Qt Open Source Edition.

You are licensed to use this software under the terms of
the Lesser GNU General Public License (LGPL) versions 2.1.

Type 'L' to view the Lesser GNU General Public License version 2.1.
Type 'yes' to accept this license offer.
Type 'no' to decline this license offer.

Do you accept the terms of the license? yes

Creating qmake. Please wait...
make: Nothing to be done for `first'.
The OpenGL ES 2.0 functionality test failed!
You might need to modify the include and library search paths by editing
QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in
/home/qt-everywhere-opensource-src-4.7.4/qtbase/mkspecs/linux-g++.

After that, I went to $vim qtbase/mkspecs/linux-g++.
from I wnt to $vim qtbase/mkspecs/common/linux.conf after that I changed below configuration which is in RED color.
#
# qmake configuration for common linux
#

QMAKE_CFLAGS_THREAD += -D_REENTRANT
QMAKE_CXXFLAGS_THREAD += $$QMAKE_CFLAGS_THREAD

QMAKE_INCDIR =
QMAKE_LIBDIR =
QMAKE_INCDIR_X11 =
QMAKE_LIBDIR_X11 =
QMAKE_INCDIR_QT = $$[QT_INSTALL_HEADERS]
QMAKE_LIBDIR_QT = $$[QT_INSTALL_LIBS]
QMAKE_INCDIR_OPENGL = /home/SDKPackage_OGLES2/Builds/OGLES2/LinuxARMV7/Lib
QMAKE_LIBDIR_OPENGL = /home/SDKPackage_OGLES2/Builds/OGLES2/Include
QMAKE_INCDIR_OPENGL_ES1 = $$QMAKE_INCDIR_OPENGL
QMAKE_LIBDIR_OPENGL_ES1 = $$QMAKE_LIBDIR_OPENGL
QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL
QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL
QMAKE_INCDIR_EGL =
QMAKE_LIBDIR_EGL =
QMAKE_INCDIR_OPENVG =
QMAKE_LIBDIR_OPENVG =

After all these changes also I am getting the error.
The OpenGL ES 2.0 functionality test failed!
You might need to modify the include and library search paths by editing
QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in
/home/qt-everywhere-opensource-src-4.7.4/qtbase/mkspecs/linux-g++.


Please help me anybody.

thanks in advanced