From d258537df444e56f38b249597452cb9ab231798d Mon Sep 17 00:00:00 2001 From: Gildas Bazin Date: Sat, 26 May 2007 21:53:17 +0000 Subject: [PATCH] * configure.ac: allow compilation of wxwidget module with wxwidgets 2.8.x --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 472e102811..fcf0a16671 100644 --- a/configure.ac +++ b/configure.ac @@ -4896,9 +4896,9 @@ then AC_PATH_PROG(WX_CONFIG, ${WXWIDGETS_NAME}, no, ${WXWIDGETS_PATH}) if test "${WX_CONFIG}" != "no" -a "${CXX}" != "" then - if expr 2.6.0 \> `${WX_CONFIG} --version` >/dev/null || expr 2.7.0 \<= `${WX_CONFIG} --version` >/dev/null + if expr 2.6.0 \> `${WX_CONFIG} --version` >/dev/null then - AC_MSG_ERROR([You need wxWidgets of the 2.6 branch. Please upgrade/downgrade and try again. Better yet, you can configure with --disable-wxwidgets.]) + AC_MSG_ERROR([You need wxWidgets version 2.6.0 or upwards. Please upgrade and try again.]) fi AC_LANG_PUSH(C++) # Turn this error: -- GitLab