diff options
author | Tom Rondeau | 2011-04-14 16:48:52 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-04-14 16:48:52 -0400 |
commit | 8963e2faec46cb22f2107fe6a2e775c894566bd2 (patch) | |
tree | 0f5a4259605c77cab3b29f3a1454f927a13544ba /config/grc_gr_qtgui.m4 | |
parent | e762abc703e3224b54466685bf51b3fa90ee8edc (diff) | |
download | gnuradio-8963e2faec46cb22f2107fe6a2e775c894566bd2.tar.gz gnuradio-8963e2faec46cb22f2107fe6a2e775c894566bd2.tar.bz2 gnuradio-8963e2faec46cb22f2107fe6a2e775c894566bd2.zip |
gr-qtgui: updating required Qt library to v4.4 instead of v4.2. This has been a requirement for a while (FormLayout introduced in 4.4) but nevery required by configure.
Diffstat (limited to 'config/grc_gr_qtgui.m4')
-rw-r--r-- | config/grc_gr_qtgui.m4 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config/grc_gr_qtgui.m4 b/config/grc_gr_qtgui.m4 index a4592fa41..ddb7c7ca9 100644 --- a/config/grc_gr_qtgui.m4 +++ b/config/grc_gr_qtgui.m4 @@ -47,12 +47,12 @@ AC_DEFUN([GRC_GR_QTGUI],[ if test $passed = yes; then dnl Check for package qt or qt-mt, set QT_CFLAGS and QT_LIBS - PKG_CHECK_MODULES(QTCORE, QtCore >= 4.2, [], - [passed=no; AC_MSG_RESULT([gr-qtgui requires libQtCore >= 4.2.])]) - PKG_CHECK_MODULES(QTGUI, QtGui >= 4.2, [], - [passed=no; AC_MSG_RESULT([gr-qtgui requires libQtGui >= 4.2.])]) - PKG_CHECK_MODULES(QTOPENGL, QtOpenGL >= 4.2, [], - [passed=no; AC_MSG_RESULT([gr-qtgui requires libQtOpenGL >- 4.2.])]) + PKG_CHECK_MODULES(QTCORE, QtCore >= 4.4, [], + [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]) |