diff options
author | Philip Balister | 2011-10-23 22:13:03 -0400 |
---|---|---|
committer | Philip Balister | 2011-10-23 22:13:03 -0400 |
commit | acd378df821766371f6ea8673e0eabee6cbf3223 (patch) | |
tree | 343a4f00d95f376aabfbff21e0f3412f36298357 /config | |
parent | 722dab931587258ae2963a937d003b2f6b3b4105 (diff) | |
download | gnuradio-acd378df821766371f6ea8673e0eabee6cbf3223.tar.gz gnuradio-acd378df821766371f6ea8673e0eabee6cbf3223.tar.bz2 gnuradio-acd378df821766371f6ea8673e0eabee6cbf3223.zip |
Remove checks for OpenGL from configure.
Signed-off-by: Philip Balister <philip@opensdr.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/grc_gr_qtgui.m4 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/config/grc_gr_qtgui.m4 b/config/grc_gr_qtgui.m4 index 6da61df2b..d9e0fcbe9 100644 --- a/config/grc_gr_qtgui.m4 +++ b/config/grc_gr_qtgui.m4 @@ -51,8 +51,6 @@ AC_DEFUN([GRC_GR_QTGUI],[ [passed=no; AC_MSG_RESULT([gr-qtgui requires libQtCore >= 4.4.])]) PKG_CHECK_MODULES(QTGUI, QtGui >= 4.4, [], [passed=no; AC_MSG_RESULT([gr-qtgui requires libQtGui >= 4..])]) - PKG_CHECK_MODULES(QTOPENGL, QtOpenGL >= 4.4, [], - [passed=no; AC_MSG_RESULT([gr-qtgui requires libQtOpenGL >- 4.4.])]) dnl Fetch QWT variables GR_QWT([], [passed=no]) @@ -60,7 +58,7 @@ AC_DEFUN([GRC_GR_QTGUI],[ dnl Export the include dirs and libraries (note: QTOPENGL_LIBS includes links dnl to QtCore and QtGui libraries) QT_INCLUDES="$QWT_CFLAGS $QTCORE_CFLAGS $QTGUI_CFLAGS" - QT_LIBS="$QWT_LIBS $QTOPENGL_LIBS" + QT_LIBS="$QWT_LIBS" dnl Build an includes variable specifically for running qmake by extracting dnl all includes from the QWT, without the -I; |