diff options
author | jblum <jblum@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-03-19 20:23:48 +0000 |
---|---|---|
committer | jblum <jblum@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-03-19 20:23:48 +0000 |
commit | 5407ac629e56300936cfbf0b5877aab607ddfef5 (patch) | |
tree | 03a863cf28203990c7be58adacd4b638de07367a /config | |
parent | 086dab5820832e4967c513ff17a1975eabef8e22 (diff) |
wxpython 2.8 version check
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10653 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'config')
-rw-r--r-- | config/grc_gr_wxgui.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/grc_gr_wxgui.m4 b/config/grc_gr_wxgui.m4 index 30c9b438b1..c443f7c6c2 100644 --- a/config/grc_gr_wxgui.m4 +++ b/config/grc_gr_wxgui.m4 @@ -29,8 +29,8 @@ AC_DEFUN([GRC_GR_WXGUI],[ dnl yes : if the --enable code passed muster and all dependencies are met dnl no : otherwise if test $passed = yes; then - PYTHON_CHECK_MODULE([wx],[Python wxWidgets wrappers],[],[passed=no]) - PYTHON_CHECK_MODULE([numpy],[Numeric Python extensions],[],[passed=no]) + PYTHON_CHECK_MODULE([wx],[Python wxWidgets wrappers >= 2.8],[],[passed=no],[wx.version().split()[[0]] >= "2.8"]) + PYTHON_CHECK_MODULE([numpy],[Numeric Python extensions],[],[passed=no]) fi AC_CONFIG_FILES([ \ @@ -38,7 +38,7 @@ AC_DEFUN([GRC_GR_WXGUI],[ gr-wxgui/gr-wxgui.pc \ gr-wxgui/src/Makefile \ gr-wxgui/src/python/Makefile \ - gr-wxgui/src/python/plotter/Makefile \ + gr-wxgui/src/python/plotter/Makefile \ ]) GRC_BUILD_CONDITIONAL(gr-wxgui) |